Merge branch 'collectd-5.4'
[collectd.git] / contrib / redhat / collectd.spec
1 #
2 # q: What is this ?
3 # a: A specfile for building RPM packages of current collectd releases, for
4 #    RHEL/CentOS versions 5, 6 and 7. By default all the plugins which are
5 #    buildable based on the libraries available in the distribution + the
6 #    EPEL repository, will be built. Plugins depending on external libs will
7 #    be packaged in separate RPMs.
8 #
9 # q: And how can I do that ?
10 # a: By following these instructions, using mock:
11 #
12 # - install and configure mock (https://fedoraproject.org/wiki/Projects/Mock)
13 #
14 # - enable the EPEL repository (http://dl.fedoraproject.org/pub/epel/) in the
15 #   configuration files for your target systems (/etc/mock/*.cfg).
16 #
17 # - copy this file in your ~/rpmbuild/SPECS/ directory
18 #
19 # - fetch the desired collectd release file from https://collectd.org/files/
20 #   and save it in your ~/rpmbuild/SOURCES/ directory
21 #
22 # - build the SRPM first:
23 #   mock -r centos-6-x86_64 --buildsrpm --spec ~/rpmbuild/SPECS/collectd.spec \
24 #     --sources ~/rpmbuild/SOURCES/
25 #
26 # - then build the RPMs:
27 #   mock -r centos-6-x86_64 --no-clean --rebuild \
28 #     /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
29 #
30 # - you can also optionally enable/disable plugins which are disabled/enabled
31 #   by default:
32 #   mock -r centos-6-x86_64 --no-clean --without=java --with=oracle --rebuild \
33 #     /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
34 #
35
36 %global _hardened_build 1
37
38 # plugins only buildable on RHEL6
39 # (NB: %{elN} macro is not available on RHEL < 6)
40 %{?el6:%global _has_libyajl 1}
41 %{?el6:%global _has_recent_libpcap 1}
42 %{?el6:%global _has_recent_sockios_h 1}
43 %{?el6:%global _has_recent_libganglia 1}
44 %{?el6:%global _has_working_libiptc 1}
45 %{?el6:%global _has_ip_vs_h 1}
46 %{?el6:%global _has_lvm2app_h 1}
47 %{?el6:%global _has_libmodbus 1}
48 %{?el6:%global _has_libudev 1}
49 %{?el6:%global _has_iproute 1}
50 %{?el6:%global _has_atasmart 1}
51 %{?el6:%global _has_hiredis 1}
52
53 %{?el7:%global _has_libyajl 1}
54 %{?el7:%global _has_recent_libpcap 1}
55 %{?el7:%global _has_recent_sockios_h 1}
56 %{?el7:%global _has_working_libiptc 1}
57 %{?el7:%global _has_ip_vs_h 1}
58 %{?el7:%global _has_lvm2app_h 1}
59 %{?el7:%global _has_libudev 1}
60 %{?el7:%global _has_recent_librrd 1}
61 %{?el7:%global _has_varnish4 1}
62 %{?el7:%global _has_broken_libmemcached 1}
63 %{?el7:%global _has_iproute 1}
64 %{?el7:%global _has_atasmart 1}
65 %{?el7:%global _has_hiredis 1}
66
67 # plugins enabled by default
68 %define with_aggregation 0%{!?_without_aggregation:1}
69 %define with_amqp 0%{!?_without_amqp:1}
70 %define with_apache 0%{!?_without_apache:1}
71 %define with_apcups 0%{!?_without_apcups:1}
72 %define with_ascent 0%{!?_without_ascent:1}
73 %define with_battery 0%{!?_without_battery:1}
74 %define with_bind 0%{!?_without_bind:1}
75 %define with_cgroups 0%{!?_without_cgroups:1}
76 %define with_conntrack 0%{!?_without_conntrack:1}
77 %define with_contextswitch 0%{!?_without_contextswitch:1}
78 %define with_cpu 0%{!?_without_cpu:1}
79 %define with_cpufreq 0%{!?_without_cpufreq:1}
80 %define with_csv 0%{!?_without_csv:1}
81 %define with_curl 0%{!?_without_curl:1}
82 %define with_curl_json 0%{!?_without_curl_json:0%{?_has_libyajl}}
83 %define with_curl_xml 0%{!?_without_curl_xml:1}
84 %define with_dbi 0%{!?_without_dbi:1}
85 %define with_df 0%{!?_without_df:1}
86 %define with_disk 0%{!?_without_disk:1}
87 %define with_dns 0%{!?_without_dns:0%{?_has_recent_libpcap}}
88 %define with_drbd 0%{!?_without_drbd:1}
89 %define with_email 0%{!?_without_email:1}
90 %define with_entropy 0%{!?_without_entropy:1}
91 %define with_ethstat 0%{!?_without_ethstat:0%{?_has_recent_sockios_h}}
92 %define with_exec 0%{!?_without_exec:1}
93 %define with_filecount 0%{!?_without_filecount:1}
94 %define with_fscache 0%{!?_without_fscache:1}
95 %define with_gmond 0%{!?_without_gmond:0%{?_has_recent_libganglia}}
96 %define with_hddtemp 0%{!?_without_hddtemp:1}
97 %define with_interface 0%{!?_without_interface:1}
98 %define with_ipmi 0%{!?_without_ipmi:1}
99 %define with_iptables 0%{!?_without_iptables:0%{?_has_working_libiptc}}
100 %define with_ipvs 0%{!?_without_ipvs:0%{?_has_ip_vs_h}}
101 %define with_irq 0%{!?_without_irq:1}
102 %define with_java 0%{!?_without_java:1}
103 %define with_virt 0%{!?_without_virt:1}
104 %define with_load 0%{!?_without_load:1}
105 %define with_logfile 0%{!?_without_logfile:1}
106 %define with_log_logstash 0%{!?_without_log_logstash:0%{?_has_libyajl}}
107 %define with_lvm 0%{!?_without_lvm:0%{?_has_lvm2app_h}}
108 %define with_madwifi 0%{!?_without_madwifi:1}
109 %define with_mbmon 0%{!?_without_mbmon:1}
110 %define with_md 0%{!?_without_md:1}
111 %define with_memcachec 0%{!?_without_memcachec:0%{!?_has_broken_libmemcached:1}}
112 %define with_memcached 0%{!?_without_memcached:1}
113 %define with_memory 0%{!?_without_memory:1}
114 %define with_multimeter 0%{!?_without_multimeter:1}
115 %define with_modbus 0%{!?_without_modbus:0%{?_has_libmodbus}}
116 %define with_mysql 0%{!?_without_mysql:1}
117 %define with_netlink 0%{!?_without_netlink:0%{?_has_iproute}}
118 %define with_network 0%{!?_without_network:1}
119 %define with_nfs 0%{!?_without_nfs:1}
120 %define with_nginx 0%{!?_without_nginx:1}
121 %define with_notify_desktop 0%{!?_without_notify_desktop:1}
122 %define with_notify_email 0%{!?_without_notify_email:1}
123 %define with_ntpd 0%{!?_without_ntpd:1}
124 %define with_numa 0%{!?_without_numa:1}
125 %define with_nut 0%{!?_without_nut:1}
126 %define with_olsrd 0%{!?_without_olsrd:1}
127 %define with_openldap 0%{!?_without_openldap:1}
128 %define with_openvpn 0%{!?_without_openvpn:1}
129 %define with_perl 0%{!?_without_perl:1}
130 %define with_pinba 0%{!?_without_pinba:1}
131 %define with_ping 0%{!?_without_ping:1}
132 %define with_postgresql 0%{!?_without_postgresql:1}
133 %define with_powerdns 0%{!?_without_powerdns:1}
134 %define with_processes 0%{!?_without_processes:1}
135 %define with_protocols 0%{!?_without_protocols:1}
136 %define with_python 0%{!?_without_python:1}
137 %define with_redis 0%{!?_without_redis:0%{?_has_hiredis}}
138 %define with_rrdcached 0%{!?_without_rrdcached:0%{?_has_recent_librrd}}
139 %define with_rrdtool 0%{!?_without_rrdtool:1}
140 %define with_sensors 0%{!?_without_sensors:1}
141 %define with_serial 0%{!?_without_serial:1}
142 %define with_smart 0%{!?_without_smart:0%{?_has_atasmart}}
143 %define with_snmp 0%{!?_without_snmp:1}
144 %define with_statsd 0%{!?_without_statsd:1}
145 %define with_swap 0%{!?_without_swap:1}
146 %define with_syslog 0%{!?_without_syslog:1}
147 %define with_table 0%{!?_without_table:1}
148 %define with_tail 0%{!?_without_tail:1}
149 %define with_tail_csv 0%{!?_without_tail_csv:1}
150 %define with_tcpconns 0%{!?_without_tcpconns:1}
151 %define with_teamspeak2 0%{!?_without_teamspeak2:1}
152 %define with_ted 0%{!?_without_ted:1}
153 %define with_thermal 0%{!?_without_thermal:1}
154 %define with_threshold 0%{!?_without_threshold:1}
155 %define with_unixsock 0%{!?_without_unixsock:1}
156 %define with_uptime 0%{!?_without_uptime:1}
157 %define with_users 0%{!?_without_users:1}
158 %define with_uuid 0%{!?_without_uuid:1}
159 %define with_varnish 0%{!?_without_varnish:0%{!?_has_varnish4:1}}
160 %define with_vmem 0%{!?_without_vmem:1}
161 %define with_vserver 0%{!?_without_vserver:1}
162 %define with_wireless 0%{!?_without_wireless:1}
163 %define with_write_graphite 0%{!?_without_write_graphite:1}
164 %define with_write_http 0%{!?_without_write_http:1}
165 %define with_write_redis 0%{!?_without_write_redis:0%{?_has_hiredis}}
166 %define with_write_riemann 0%{!?_without_write_riemann:1}
167 %define with_write_tsdb 0%{!?_without_write_tsdb:1}
168 %define with_zfs_arc 0%{!?_without_zfs_arc:1}
169 %define with_zookeeper 0%{!?_without_zookeeper:1}
170
171 # Plugins not built by default because of dependencies on libraries not
172 # available in RHEL or EPEL:
173
174 # plugin apple_sensors disabled, requires a Mac
175 %define with_apple_sensors 0%{!?_without_apple_sensors:0}
176 # plugin aquaero disabled, requires a libaquaero5
177 %define with_aquaero 0%{!?_without_aquaero:0}
178 # plugin barometer disabled, requires a libi2c
179 %define with_barometer 0%{!?_without_barometer:0}
180 # plugin lpar disabled, requires AIX
181 %define with_lpar 0%{!?_without_lpar:0}
182 # plugin mic disabled, requires Mic
183 %define with_mic 0%{!?_without_mic:0}
184 # plugin netapp disabled, requires libnetapp
185 %define with_netapp 0%{!?_without_netapp:0}
186 # plugin onewire disabled, requires libowfs
187 %define with_onewire 0%{!?_without_onewire:0}
188 # plugin oracle disabled, requires Oracle
189 %define with_oracle 0%{!?_without_oracle:0}
190 # plugin oracle disabled, requires BSD
191 %define with_pf 0%{!?_without_pf:0}
192 # plugin routeros disabled, requires librouteros
193 %define with_routeros 0%{!?_without_routeros:0}
194 # plugin sigrok disabled, requires libsigrok
195 %define with_sigrok 0%{!?_without_sigrok:0}
196 # plugin tape disabled, requires libkstat
197 %define with_tape 0%{!?_without_tape:0}
198 # plugin tokyotyrant disabled, requires tcrdb.h
199 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
200 # plugin write_kafka disabled, requires librdkafka
201 %define with_write_kafka 0%{!?_without_write_kafka:0}
202 # plugin write_mongodb disabled, requires libmongoc
203 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
204 # plugin xmms disabled, requires xmms
205 %define with_xmms 0%{!?_without_xmms:0}
206
207 Summary:        Statistics collection daemon for filling RRD files
208 Name:           collectd
209 Version:        5.4.0
210 Release:        1%{?dist}
211 URL:            http://collectd.org
212 Source:         http://collectd.org/files/%{name}-%{version}.tar.bz2
213 License:        GPLv2
214 Group:          System Environment/Daemons
215 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
216 BuildRequires:  libgcrypt-devel, kernel-headers, libtool-ltdl-devel
217 Vendor:         collectd development team <collectd@verplant.org>
218
219 Requires(post):         chkconfig
220 Requires(preun):        chkconfig, initscripts
221 Requires(postun):       initscripts
222
223 %description
224 collectd is a small daemon which collects system information periodically and
225 provides mechanisms to monitor and store the values in a variety of ways. It
226 is written in C for performance. Since the daemon doesn't need to start up
227 every time it wants to update the values it's very fast and easy on the
228 system. Also, the statistics are very fine grained since the files are updated
229 every 10 seconds by default.
230
231 %if %{with_amqp}
232 %package amqp
233 Summary:        AMQP plugin for collectd
234 Group:          System Environment/Daemons
235 Requires:       %{name}%{?_isa} = %{version}-%{release}
236 BuildRequires:  librabbitmq-devel
237 %description amqp
238 The AMQP plugin transmits or receives values collected by collectd via the
239 Advanced Message Queuing Protocol (AMQP).
240 %endif
241
242 %if %{with_apache}
243 %package apache
244 Summary:        Apache plugin for collectd
245 Group:          System Environment/Daemons
246 Requires:       %{name}%{?_isa} = %{version}-%{release}
247 BuildRequires:  curl-devel
248 %description apache
249 This plugin collects data provided by Apache's `mod_status'.
250 %endif
251
252 %if %{with_aquaero}
253 %package aquaero
254 Summary:        aquaero plugin for collectd
255 Group:          System Environment/Daemons
256 Requires:       %{name}%{?_isa} = %{version}-%{release}
257 %description aquaero
258 Various sensors in the Aquaero 5 watercooling board made by Aquacomputer.
259 %endif
260
261 %if %{with_ascent}
262 %package ascent
263 Summary:        Ascent plugin for collectd
264 Group:          System Environment/Daemons
265 Requires:       %{name}%{?_isa} = %{version}-%{release}
266 BuildRequires:  libxml2-devel, curl-devel
267 %description ascent
268 The Ascent plugin reads and parses the statistics page of Ascent, a free and
269 open-source server software for the game World of Warcraft by Blizzard
270 Entertainment.
271 %endif
272
273 %if %{with_barometer}
274 %package barometer
275 Summary:       barometer plugin for collectd
276 Group:         System Environment/Daemons
277 Requires:      %{name}%{?_isa} = %{version}-%{release}
278 %description barometer
279 Collects pressure and temperature from digital barometers.
280 %endif
281
282 %if %{with_bind}
283 %package bind
284 Summary:        Bind plugin for collectd
285 Group:          System Environment/Daemons
286 Requires:       %{name}%{?_isa} = %{version}-%{release}
287 BuildRequires:  libxml2-devel, curl-devel
288 %description bind
289 The BIND plugin retrieves this information that's encoded in XML and provided
290 via HTTP and submits the values to collectd.
291 %endif
292
293 %if %{with_curl}
294 %package curl
295 Summary:        Curl plugin for collectd
296 Group:          System Environment/Daemons
297 Requires:       %{name}%{?_isa} = %{version}-%{release}
298 BuildRequires:  curl-devel
299 %description curl
300 The cURL plugin uses libcurl to read files and then parses them according to
301 the configuration.
302 %endif
303
304 %if %{with_curl_json}
305 %package curl_json
306 Summary:        Curl_json plugin for collectd
307 Group:          System Environment/Daemons
308 Requires:       %{name}%{?_isa} = %{version}-%{release}
309 BuildRequires:  curl-devel, yajl-devel
310 %description curl_json
311 The cURL-JSON plugin queries JavaScript Object Notation (JSON) data using the
312 cURL library and parses it according to the user's configuration.
313 %endif
314
315 %if %{with_curl_xml}
316 %package curl_xml
317 Summary:        Curl_xml plugin for collectd
318 Group:          System Environment/Daemons
319 Requires:       %{name}%{?_isa} = %{version}-%{release}
320 BuildRequires:  curl-devel, libxml2-devel
321 %description curl_xml
322 The cURL-XML plugin reads files using libcurl and parses it as Extensible
323 Markup Language (XML).
324 %endif
325
326 %if %{with_dbi}
327 %package dbi
328 Summary:        DBI plugin for collectd
329 Group:          System Environment/Daemons
330 Requires:       %{name}%{?_isa} = %{version}-%{release}
331 BuildRequires:  libdbi-devel
332 %description dbi
333 The DBI plugin uses libdbi, a database abstraction library, to execute SQL
334 statements on a database and read back the result.
335 %endif
336
337 %if %{with_disk}
338 %package disk
339 Summary:        disk plugin for collectd
340 Group:          System Environment/Daemons
341 Requires:       %{name}%{?_isa} = %{version}-%{release}
342 %{?_has_libudev:BuildRequires:  libudev-devel}
343 %description disk
344 The "disk" plugin collects information about the usage of physical disks and
345 logical disks (partitions).
346 %endif
347
348 %if %{with_dns}
349 %package dns
350 Summary:        DNS plugin for collectd
351 Group:          System Environment/Daemons
352 Requires:       %{name}%{?_isa} = %{version}-%{release}, libpcap >= 1.0
353 BuildRequires:  libpcap-devel >= 1.0
354 %description dns
355 The DNS plugin has a similar functionality to dnstop: It uses libpcap to get a
356 copy of all traffic from/to port UDP/53 (that's the DNS port), interprets the
357 packets and collects statistics of your DNS traffic.
358 %endif
359
360 %if %{with_email}
361 %package email
362 Summary:        Email plugin for collectd
363 Group:          System Environment/Daemons
364 Requires:       %{name}%{?_isa} = %{version}-%{release}, spamassassin
365 %description email
366 This plugin collects data provided by spamassassin.
367 %endif
368
369 %if %{with_gmond}
370 %package gmond
371 Summary:        Gmond plugin for collectd
372 Group:          System Environment/Daemons
373 Requires:       %{name}%{?_isa} = %{version}-%{release}
374 BuildRequires:  ganglia-devel
375 %description gmond
376 The gmond plugin subscribes to a Multicast group to receive data from gmond,
377 the client daemon of the Ganglia project.
378 %endif
379
380 %if %{with_hddtemp}
381 %package hddtemp
382 Summary:        Hddtemp plugin for collectd
383 Group:          System Environment/Daemons
384 Requires:       %{name}%{?_isa} = %{version}-%{release}, hddtemp
385 %description hddtemp
386 The HDDTemp plugin collects the temperature of hard disks. The temperatures are
387 provided via SMART and queried by the external hddtemp daemon.
388 %endif
389
390 %if %{with_ipmi}
391 %package ipmi
392 Summary:        IPMI plugin for collectd
393 Group:          System Environment/Daemons
394 Requires:       %{name}%{?_isa} = %{version}-%{release}
395 BuildRequires:  OpenIPMI-devel
396 %description ipmi
397 The IPMI plugin uses the OpenIPMI library to read hardware sensors from servers
398 using the Intelligent Platform Management Interface (IPMI).
399 %endif
400
401 %if %{with_iptables}
402 %package iptables
403 Summary:        IPtables plugin for collectd
404 Group:          System Environment/Daemons
405 Requires:       %{name}%{?_isa} = %{version}-%{release}
406 BuildRequires:  iptables-devel
407 %description iptables
408 The IPtables plugin can gather statistics from your ip_tables based packet
409 filter (aka. firewall) for both the IPv4 and the IPv6 protocol. It can collect
410 the byte- and packet-counters of selected rules and submit them to collectd.
411 %endif
412
413 %if %{with_java}
414 %package java
415 Summary:        Java plugin for collectd
416 Group:          System Environment/Daemons
417 Requires:       %{name}%{?_isa} = %{version}-%{release}
418 BuildRequires:  java-devel, jpackage-utils
419 Requires:       java, jpackage-utils
420 %description java
421 This plugin for collectd allows plugins to be written in Java and executed
422 in an embedded JVM.
423 %endif
424
425 %if %{with_log_logstash}
426 %package log_logstash
427 Summary:       log_logstash plugin for collectd
428 Group:         System Environment/Daemons
429 Requires:      %{name}%{?_isa} = %{version}-%{release}
430 BuildRequires: yajl-devel
431 %description log_logstash
432 This plugin logs in logstash JSON format
433 %endif
434
435 %if %{with_lvm}
436 %package lvm
437 Summary:        LVM plugin for collectd
438 Group:          System Environment/Daemons
439 Requires:       %{name}%{?_isa} = %{version}-%{release}
440 BuildRequires:  lvm2-devel
441 %description lvm
442 This plugin collects size of “Logical Volumes” (LV) and “Volume Groups” (VG)
443 of Linux' “Logical Volume Manager” (LVM).
444 %endif
445
446 %if %{with_memcachec}
447 %package memcachec
448 Summary:        Memcachec plugin for collectd
449 Group:          System Environment/Daemons
450 Requires:       %{name}%{?_isa} = %{version}-%{release}
451 BuildRequires:  libmemcached-devel
452 %description memcachec
453 The Memcachec plugin uses libmemcached to read statistics from a Memcached
454 instance. Note that another plugin, named `memcached', exists and does a
455 similar job, without requiring the installation of libmemcached.
456 %endif
457
458 %if %{with_mic}
459 %package mic
460 Summary:        mic plugin for collectd
461 Group:          System Environment/Daemons
462 Requires:       %{name}%{?_isa} = %{version}-%{release}
463 %description mic
464 The mic plugin collects CPU usage, memory usage, temperatures and power
465 consumption from Intel Many Integrated Core (MIC) CPUs.
466 %endif
467
468 %if %{with_modbus}
469 %package modbus
470 Summary:       modbus plugin for collectd
471 Group:         System Environment/Daemons
472 Requires:      %{name}%{?_isa} = %{version}-%{release}
473 BuildRequires:  libmodbus-devel
474 %description modbus
475 The modbus plugin collects values from Modbus/TCP enabled devices
476 %endif
477
478 %if %{with_mysql}
479 %package mysql
480 Summary:        MySQL plugin for collectd
481 Group:          System Environment/Daemons
482 Requires:       %{name}%{?_isa} = %{version}-%{release}
483 BuildRequires:  mysql-devel
484 %description mysql
485 MySQL querying plugin. This plugin provides data of issued commands, called
486 handlers and database traffic.
487 %endif
488
489 %if %{with_netlink}
490 %package netlink
491 Summary:        netlink plugin for collectd
492 Group:          System Environment/Daemons
493 Requires:       %{name}%{?_isa} = %{version}-%{release}
494 BuildRequires:  libmnl-devel, iproute-devel
495 %description netlink
496 The netlink plugin collects detailed network interface and routing statistics.
497 %endif
498
499 %if %{with_nginx}
500 %package nginx
501 Summary:        Nginx plugin for collectd
502 Group:          System Environment/Daemons
503 Requires:       %{name}%{?_isa} = %{version}-%{release}
504 BuildRequires:  curl-devel
505 %description nginx
506 This plugin gets data provided by nginx.
507 %endif
508
509 %if %{with_notify_desktop}
510 %package notify_desktop
511 Summary:        Notify_desktop plugin for collectd
512 Group:          System Environment/Daemons
513 Requires:       %{name}%{?_isa} = %{version}-%{release}
514 BuildRequires:  libnotify-devel, gtk2-devel
515 %description notify_desktop
516 The Notify Desktop plugin uses libnotify to display notifications to the user
517 via the desktop notification specification, i. e. on an X display.
518 %endif
519
520 %if %{with_notify_email}
521 %package notify_email
522 Summary:        Notify_email plugin for collectd
523 Group:          System Environment/Daemons
524 Requires:       %{name}%{?_isa} = %{version}-%{release}
525 BuildRequires:  libesmtp-devel
526 %description notify_email
527 The Notify Email plugin uses libESMTP to send notifications to a configured
528 email address.
529 %endif
530
531 %if %{with_nut}
532 %package nut
533 Summary:        Nut plugin for collectd
534 Group:          System Environment/Daemons
535 Requires:       %{name}%{?_isa} = %{version}-%{release}
536 BuildRequires:  nut-devel
537 %description nut
538 This plugin for collectd provides Network UPS Tools support.
539 %endif
540
541 %if %{with_openldap}
542 %package openldap
543 Summary:       Openldap plugin for collectd
544 Group:         System Environment/Daemons
545 Requires:      %{name}%{?_isa} = %{version}-%{release}
546 BuildRequires: openldap-devel
547 %description openldap
548 This plugin reads monitoring information from OpenLDAP's cn=Monitor subtree.
549 %endif
550
551 %if %{with_perl}
552 %package perl
553 Summary:        Perl plugin for collectd
554 Group:          System Environment/Daemons
555 Requires:       %{name}%{?_isa} = %{version}-%{release}
556 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
557 %if 0%{?rhel} >= 6
558 BuildRequires:  perl-ExtUtils-Embed
559 %else
560 BuildRequires:  perl
561 %endif
562 %description perl
563 The Perl plugin embeds a Perl interpreter into collectd and exposes the
564 application programming interface (API) to Perl-scripts.
565 %endif
566
567 %if %{with_pinba}
568 %package pinba
569 Summary:        Pinba plugin for collectd
570 Group:          System Environment/Daemons
571 Requires:       %{name}%{?_isa} = %{version}-%{release}
572 BuildRequires:  protobuf-c-devel
573 %description pinba
574 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
575 extension for PHP.
576 %endif
577
578 %if %{with_ping}
579 %package ping
580 Summary:        Ping plugin for collectd
581 Group:          System Environment/Daemons
582 Requires:       %{name}%{?_isa} = %{version}-%{release}
583 BuildRequires:  liboping-devel
584 %description ping
585 The Ping plugin measures network latency using ICMP “echo requests”, usually
586 known as “ping”.
587 %endif
588
589 %if %{with_postgresql}
590 %package postgresql
591 Summary:        PostgreSQL plugin for collectd
592 Group:          System Environment/Daemons
593 Requires:       %{name}%{?_isa} = %{version}-%{release}
594 BuildRequires:  postgresql-devel
595 %description postgresql
596 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
597 database.
598 %endif
599
600 %if %{with_python}
601 %package python
602 Summary:        Python plugin for collectd
603 Group:          System Environment/Daemons
604 Requires:       %{name}%{?_isa} = %{version}-%{release}
605 %if 0%{?rhel} >= 6
606 BuildRequires: python-devel
607 %else
608 BuildRequires: python26-devel
609 %endif
610 %description python
611 The Python plugin embeds a Python interpreter into collectd and exposes the
612 application programming interface (API) to Python-scripts.
613 %endif
614
615 %if %{with_redis}
616 %package redis
617 Summary:        Redis plugin for collectd
618 Group:          System Environment/Daemons
619 Requires:       %{name}%{?_isa} = %{version}-%{release}
620 BuildRequires:  hiredis-devel
621 %description redis
622 The Redis plugin connects to one or more instances of Redis, a key-value store,
623 and collects usage information using the hiredis library.
624 %endif
625
626 %if %{with_rrdcached}
627 %package rrdcached
628 Summary:        RRDCached plugin for collectd
629 Group:          System Environment/Daemons
630 Requires:       %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
631 BuildRequires:  rrdtool-devel
632 %description rrdcached
633 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
634 submits updates for RRD files to that daemon.
635 %endif
636
637 %if %{with_rrdtool}
638 %package rrdtool
639 Summary:        RRDtool plugin for collectd
640 Group:          System Environment/Daemons
641 Requires:       %{name}%{?_isa} = %{version}-%{release}
642 BuildRequires:  rrdtool-devel
643 %description rrdtool
644 The RRDtool plugin writes values to RRD-files using librrd.
645 %endif
646
647 %if %{with_sensors}
648 %package sensors
649 Summary:        Sensors plugin for collectd
650 Group:          System Environment/Daemons
651 Requires:       %{name}%{?_isa} = %{version}-%{release}
652 BuildRequires:  lm_sensors-devel
653 %description sensors
654 This plugin for collectd provides querying of sensors supported by lm_sensors.
655 %endif
656
657 %if %{with_sigrok}
658 %package sigrok
659 Summary:        sigrok plugin for collectd
660 Group:          System Environment/Daemons
661 Requires:       %{name}%{?_isa} = %{version}-%{release}
662 %description sigrok
663 Uses libsigrok as a backend, allowing any sigrok-supported device to have its
664 measurements fed to collectd. This includes multimeters, sound level meters,
665 thermometers, and much more.
666 %endif
667
668 %if %{with_smart}
669 %package smart
670 Summary:       SMART plugin for collectd
671 Group:         System Environment/Daemons
672 Requires:      %{name}%{?_isa} = %{version}-%{release}
673 BuildRequires: libatasmart-devel
674 %description smart
675 Collect SMART statistics, notably load cycle count, temperature and bad
676 sectors.
677 %endif
678
679 %if %{with_snmp}
680 %package snmp
681 Summary:        SNMP plugin for collectd
682 Group:          System Environment/Daemons
683 Requires:       %{name}%{?_isa} = %{version}-%{release}
684 BuildRequires:  net-snmp-devel
685 %description snmp
686 This plugin for collectd allows querying of network equipment using SNMP.
687 %endif
688
689 %if %{with_varnish}
690 %package varnish
691 Summary:        Varnish plugin for collectd
692 Group:          System Environment/Daemons
693 Requires:       %{name}%{?_isa} = %{version}-%{release}
694 BuildRequires:  varnish-libs-devel
695 %description varnish
696 The Varnish plugin collects information about Varnish, an HTTP accelerator.
697 %endif
698
699 %if %{with_virt}
700 %package virt
701 Summary:        Virt plugin for collectd
702 Group:          System Environment/Daemons
703 Requires:       %{name}%{?_isa} = %{version}-%{release}
704 BuildRequires:  libvirt-devel
705 %description virt
706 This plugin collects information from virtualized guests.
707 %endif
708
709 %if %{with_write_http}
710 %package write_http
711 Summary:        Write-HTTP plugin for collectd
712 Group:          System Environment/Daemons
713 Requires:       %{name}%{?_isa} = %{version}-%{release}
714 BuildRequires:  curl-devel
715 %description write_http
716 The Write-HTTP plugin sends the values collected by collectd to a web-server
717 using HTTP POST requests.
718 %endif
719
720 %if %{with_write_kafka}
721 %package write_kafka
722 Summary:       Write-kafka plugin for collectd
723 Group:         System Environment/Daemons
724 Requires:      %{name}%{?_isa} = %{version}-%{release}
725 BuildRequires: rdkafka-devel
726 %description write_kafka
727 The write_kafka plugin sends values to kafka, a distributed messaging system.
728 %endif
729
730 %if %{with_write_redis}
731 %package write_redis
732 Summary:        Write-Redis plugin for collectd
733 Group:          System Environment/Daemons
734 Requires:       %{name}%{?_isa} = %{version}-%{release}
735 BuildRequires:  hiredis-devel
736 %description write_redis
737 The Write Redis plugin stores values in Redis, a “data structures server”.
738 %endif
739
740 %if %{with_write_riemann}
741 %package write_riemann
742 Summary:        riemann plugin for collectd
743 Group:          System Environment/Daemons
744 Requires:       %{name}%{?_isa} = %{version}-%{release}
745 BuildRequires:  protobuf-c-devel
746 %description write_riemann
747 The riemann plugin submits values to Riemann, an event stream processor.
748 %endif
749
750 %package collection3
751 Summary:        Web-based viewer for collectd
752 Group:          System Environment/Daemons
753 Requires:       %{name}%{?_isa} = %{version}-%{release}
754 Requires: httpd
755 %description collection3
756 collection3 is a graphing front-end for the RRD files created by and filled
757 with collectd. It is written in Perl and should be run as an CGI-script.
758 Graphs are generated on-the-fly, so no cron job or similar is necessary.
759
760 %package php-collection
761 Summary:        collect php webfrontent
762 Group:          System Environment/Daemons
763 Requires:       collectd = %{version}-%{release}
764 Requires:       httpd
765 Requires:       php
766 Requires:       php-rrdtool
767 %description php-collection
768 PHP graphing frontend for RRD files created by and filled with collectd.
769
770 %package contrib
771 Summary:        Contrib files for collectd
772 Group:          System Environment/Daemons
773 Requires:       %{name}%{?_isa} = %{version}-%{release}
774 %description contrib
775 All the files found under contrib/ in the source tree are bundled in this
776 package.
777
778 %package -n libcollectdclient
779 Summary:        Collectd client library
780 Group:          System Environment/Daemons
781 %description -n libcollectdclient
782 Collectd client library
783
784 %package -n libcollectdclient-devel
785 Summary:        Development files for libcollectdclient
786 Group:          System Environment/Daemons
787 Requires:       pkgconfig
788 Requires:       libcollectdclient%{?_isa} = %{version}-%{release}
789 %description -n libcollectdclient-devel
790 Development files for libcollectdclient
791
792
793 %prep
794 %setup -q
795
796 %build
797 %if %{with_aggregation}
798 %define _with_aggregation --enable-aggregation
799 %else
800 %define _with_aggregation --disable-aggregation
801 %endif
802
803 %if %{with_amqp}
804 %define _with_amqp --enable-amqp
805 %else
806 %define _with_amqp --disable-amqp
807 %endif
808
809 %if %{with_apache}
810 %define _with_apache --enable-apache
811 %else
812 %define _with_apache --disable-apache
813 %endif
814
815 %if %{with_apcups}
816 %define _with_apcups --enable-apcups
817 %else
818 %define _with_apcups --disable-apcups
819 %endif
820
821 %if %{with_apple_sensors}
822 %define _with_apple_sensors --enable-apple_sensors
823 %else
824 %define _with_apple_sensors --disable-apple_sensors
825 %endif
826
827 %if %{with_aquaero}
828 %define _with_aquaero --enable-aquaero
829 %else
830 %define _with_aquaero --disable-aquaero
831 %endif
832
833 %if %{with_ascent}
834 %define _with_ascent --enable-ascent
835 %else
836 %define _with_ascent --disable-ascent
837 %endif
838
839 %if %{with_barometer}
840 %define _with_barometer --enable-barometer
841 %else
842 %define _with_barometer --disable-barometer
843 %endif
844
845 %if %{with_battery}
846 %define _with_battery --enable-battery
847 %else
848 %define _with_battery --disable-battery
849 %endif
850
851 %if %{with_bind}
852 %define _with_bind --enable-bind
853 %else
854 %define _with_bind --disable-bind
855 %endif
856
857 %if %{with_cgroups}
858 %define _with_cgroups --enable-cgroups
859 %else
860 %define _with_cgroups --disable-cgroups
861 %endif
862
863 %if %{with_conntrack}
864 %define _with_conntrack --enable-conntrack
865 %else
866 %define _with_conntrack --disable-conntrack
867 %endif
868
869 %if %{with_contextswitch}
870 %define _with_contextswitch --enable-contextswitch
871 %else
872 %define _with_contextswitch --disable-contextswitch
873 %endif
874
875 %if %{with_cpu}
876 %define _with_cpu --enable-cpu
877 %else
878 %define _with_cpu --disable-cpu
879 %endif
880
881 %if %{with_cpufreq}
882 %define _with_cpufreq --enable-cpufreq
883 %else
884 %define _with_cpufreq --disable-cpufreq
885 %endif
886
887 %if %{with_csv}
888 %define _with_csv --enable-csv
889 %else
890 %define _with_csv --disable-csv
891 %endif
892
893 %if %{with_curl}
894 %define _with_curl --enable-curl
895 %else
896 %define _with_curl --disable-curl
897 %endif
898
899 %if %{with_curl_json}
900 %define _with_curl_json --enable-curl_json
901 %else
902 %define _with_curl_json --disable-curl_json
903 %endif
904
905 %if %{with_curl_xml}
906 %define _with_curl_xml --enable-curl_xml
907 %else
908 %define _with_curl_xml --disable-curl_xml
909 %endif
910
911 %if %{with_dbi}
912 %define _with_dbi --enable-dbi
913 %else
914 %define _with_dbi --disable-dbi --without-libdbi
915 %endif
916
917 %if %{with_df}
918 %define _with_df --enable-df
919 %else
920 %define _with_df --disable-df
921 %endif
922
923 %if %{with_disk}
924 %define _with_disk --enable-disk
925 %else
926 %define _with_disk --disable-disk
927 %endif
928
929 %if %{with_dns}
930 %define _with_dns --enable-dns
931 %else
932 %define _with_dns --disable-dns
933 %endif
934
935 %if %{with_drbd}
936 %define _with_drbd --enable-drbd
937 %else
938 %define _with_drbd --disable-drbd
939 %endif
940
941 %if %{with_email}
942 %define _with_email --enable-email
943 %else
944 %define _with_email --disable-email
945 %endif
946
947 %if %{with_entropy}
948 %define _with_entropy --enable-entropy
949 %else
950 %define _with_entropy --disable-entropy
951 %endif
952
953 %if %{with_ethstat}
954 %define _with_ethstat --enable-ethstat
955 %else
956 %define _with_ethstat --disable-ethstat
957 %endif
958
959 %if %{with_exec}
960 %define _with_exec --enable-exec
961 %else
962 %define _with_exec --disable-exec
963 %endif
964
965 %if %{with_filecount}
966 %define _with_filecount --enable-filecount
967 %else
968 %define _with_filecount --disable-filecount
969 %endif
970
971 %if %{with_fscache}
972 %define _with_fscache --enable-fscache
973 %else
974 %define _with_fscache --disable-fscache
975 %endif
976
977 %if %{with_gmond}
978 %define _with_gmond --enable-gmond
979 %else
980 %define _with_gmond --disable-gmond
981 %endif
982
983 %if %{with_hddtemp}
984 %define _with_hddtemp --enable-hddtemp
985 %else
986 %define _with_hddtemp --disable-hddtemp
987 %endif
988
989 %if %{with_interface}
990 %define _with_interface --enable-interface
991 %else
992 %define _with_interface --disable-interface
993 %endif
994
995 %if %{with_ipmi}
996 %define _with_ipmi --enable-ipmi
997 %else
998 %define _with_ipmi --disable-ipmi
999 %endif
1000
1001 %if %{with_iptables}
1002 %define _with_iptables --enable-iptables
1003 %else
1004 %define _with_iptables --disable-iptables
1005 %endif
1006
1007 %if %{with_ipvs}
1008 %define _with_ipvs --enable-ipvs
1009 %else
1010 %define _with_ipvs --disable-ipvs
1011 %endif
1012
1013 %if %{with_irq}
1014 %define _with_irq --enable-irq
1015 %else
1016 %define _with_irq --disable-irq
1017 %endif
1018
1019 %if %{with_java}
1020 %define _with_java --enable-java --with-java=%{java_home}/
1021 %else
1022 %define _with_java --disable-java
1023 %endif
1024
1025 %if %{with_virt}
1026 %define _with_virt --enable-virt
1027 %else
1028 %define _with_virt --disable-virt
1029 %endif
1030
1031 %if %{with_load}
1032 %define _with_load --enable-load
1033 %else
1034 %define _with_load --disable-load
1035 %endif
1036
1037 %if %{with_logfile}
1038 %define _with_logfile --enable-logfile
1039 %else
1040 %define _with_logfile --disable-logfile
1041 %endif
1042
1043 %if %{with_log_logstash}
1044 %define _with_log_logstash --enable-log_logstash
1045 %else
1046 %define _with_log_logstash --disable-log_logstash
1047 %endif
1048
1049 %if %{with_lpar}
1050 %define _with_lpar --enable-lpar
1051 %else
1052 %define _with_lpar --disable-lpar
1053 %endif
1054
1055 %if %{with_lvm}
1056 %define _with_lvm --enable-lvm
1057 %else
1058 %define _with_lvm --disable-lvm
1059 %endif
1060
1061 %if %{with_madwifi}
1062 %define _with_madwifi --enable-madwifi
1063 %else
1064 %define _with_madwifi --disable-madwifi
1065 %endif
1066
1067 %if %{with_mbmon}
1068 %define _with_mbmon --enable-mbmon
1069 %else
1070 %define _with_mbmon --disable-mbmon
1071 %endif
1072
1073 %if %{with_md}
1074 %define _with_md --enable-md
1075 %else
1076 %define _with_md --disable-md
1077 %endif
1078
1079 %if %{with_memcachec}
1080 %define _with_memcachec --enable-memcachec
1081 %else
1082 %define _with_memcachec --disable-memcachec
1083 %endif
1084
1085 %if %{with_memcached}
1086 %define _with_memcached --enable-memcached
1087 %else
1088 %define _with_memcached --disable-memcached
1089 %endif
1090
1091 %if %{with_memory}
1092 %define _with_memory --enable-memory
1093 %else
1094 %define _with_memory --disable-memory
1095 %endif
1096
1097 %if %{with_mic}
1098 %define _with_mic --enable-mic
1099 %else
1100 %define _with_mic --disable-mic
1101 %endif
1102
1103 %if %{with_modbus}
1104 %define _with_modbus --enable-modbus
1105 %else
1106 %define _with_modbus --disable-modbus
1107 %endif
1108
1109 %if %{with_multimeter}
1110 %define _with_multimeter --enable-multimeter
1111 %else
1112 %define _with_multimeter --disable-multimeter
1113 %endif
1114
1115 %if %{with_mysql}
1116 %define _with_mysql --enable-mysql
1117 %else
1118 %define _with_mysql --disable-mysql
1119 %endif
1120
1121 %if %{with_netapp}
1122 %define _with_netapp --enable-netapp
1123 %else
1124 %define _with_netapp --disable-netapp
1125 %endif
1126
1127 %if %{with_netlink}
1128 %define _with_netlink --enable-netlink
1129 %else
1130 %define _with_netlink --disable-netlink
1131 %endif
1132
1133 %if %{with_network}
1134 %define _with_network --enable-network
1135 %else
1136 %define _with_network --disable-network
1137 %endif
1138
1139 %if %{with_nfs}
1140 %define _with_nfs --enable-nfs
1141 %else
1142 %define _with_nfs --disable-nfs
1143 %endif
1144
1145 %if %{with_nginx}
1146 %define _with_nginx --enable-nginx
1147 %else
1148 %define _with_nginx --disable-nginx
1149 %endif
1150
1151 %if %{with_notify_desktop}
1152 %define _with_notify_desktop --enable-notify_desktop
1153 %else
1154 %define _with_notify_desktop --disable-notify_desktop
1155 %endif
1156
1157 %if %{with_notify_email}
1158 %define _with_notify_email --enable-notify_email
1159 %else
1160 %define _with_notify_email --disable-notify_email --without-libesmpt
1161 %endif
1162
1163 %if %{with_ntpd}
1164 %define _with_ntpd --enable-ntpd
1165 %else
1166 %define _with_ntpd --disable-ntpd
1167 %endif
1168
1169 %if %{with_numa}
1170 %define _with_numa --enable-numa
1171 %else
1172 %define _with_numa --disable-numa
1173 %endif
1174
1175 %if %{with_nut}
1176 %define _with_nut --enable-nut
1177 %else
1178 %define _with_nut --disable-nut
1179 %endif
1180
1181 %if %{with_olsrd}
1182 %define _with_olsrd --enable-olsrd
1183 %else
1184 %define _with_olsrd --disable-olsrd
1185 %endif
1186
1187 %if %{with_onewire}
1188 %define _with_onewire --enable-onewire
1189 %else
1190 %define _with_onewire --disable-onewire
1191 %endif
1192
1193 %if %{with_openldap}
1194 %define _with_openldap --enable-openldap
1195 %else
1196 %define _with_openldap --disable-openldap
1197 %endif
1198
1199 %if %{with_openvpn}
1200 %define _with_openvpn --enable-openvpn
1201 %else
1202 %define _with_openvpn --disable-openvpn
1203 %endif
1204
1205 %if %{with_oracle}
1206 %define _with_oracle --enable-oracle
1207 %else
1208 %define _with_oracle --disable-oracle
1209 %endif
1210
1211 %if %{with_perl}
1212 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1213 %else
1214 %define _with_perl --disable-perl --without-libperl
1215 %endif
1216
1217 %if %{with_pf}
1218 %define _with_pf --enable-pf
1219 %else
1220 %define _with_pf --disable-pf
1221 %endif
1222
1223 %if %{with_pinba}
1224 %define _with_pinba --enable-pinba
1225 %else
1226 %define _with_pinba --disable-pinba
1227 %endif
1228
1229 %if %{with_ping}
1230 %define _with_ping --enable-ping
1231 %else
1232 %define _with_ping --disable-ping
1233 %endif
1234
1235 %if %{with_postgresql}
1236 %define _with_postgresql --enable-postgresql
1237 %else
1238 %define _with_postgresql --disable-postgresql
1239 %endif
1240
1241 %if %{with_powerdns}
1242 %define _with_powerdns --enable-powerdns
1243 %else
1244 %define _with_powerdns --disable-powerdns
1245 %endif
1246
1247 %if %{with_processes}
1248 %define _with_processes --enable-processes
1249 %else
1250 %define _with_processes --disable-processes
1251 %endif
1252
1253 %if %{with_protocols}
1254 %define _with_protocols --enable-protocols
1255 %else
1256 %define _with_protocols --disable-protocols
1257 %endif
1258
1259 %if %{with_python}
1260 %if 0%{?rhel} >= 6
1261 %define _with_python --enable-python
1262 %else
1263 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1264 %endif
1265 %else
1266 %define _with_python --disable-python
1267 %endif
1268
1269 %if %{with_redis}
1270 %define _with_redis --enable-redis
1271 %else
1272 %define _with_redis --disable-redis
1273 %endif
1274
1275 %if %{with_routeros}
1276 %define _with_routeros --enable-routeros
1277 %else
1278 %define _with_routeros --disable-routeros
1279 %endif
1280
1281 %if %{with_rrdcached}
1282 %define _with_rrdcached --enable-rrdcached
1283 %else
1284 %define _with_rrdcached --disable-rrdcached
1285 %endif
1286
1287 %if %{with_rrdtool}
1288 %define _with_rrdtool --enable-rrdtool
1289 %else
1290 %define _with_rrdtool --disable-rrdtool
1291 %endif
1292
1293 %if %{with_sensors}
1294 %define _with_sensors --enable-sensors
1295 %else
1296 %define _with_sensors --disable-sensors
1297 %endif
1298
1299 %if %{with_serial}
1300 %define _with_serial --enable-serial
1301 %else
1302 %define _with_serial --disable-serial
1303 %endif
1304
1305 %if %{with_sigrok}
1306 %define _with_sigrok --enable-sigrok
1307 %else
1308 %define _with_sigrok --disable-sigrok
1309 %endif
1310
1311 %if %{with_smart}
1312 %define _with_smart --enable-smart
1313 %else
1314 %define _with_smart --disable-smart
1315 %endif
1316
1317 %if %{with_snmp}
1318 %define _with_snmp --enable-snmp
1319 %else
1320 %define _with_snmp --disable-snmp
1321 %endif
1322
1323 %if %{with_statsd}
1324 %define _with_statsd --enable-statsd
1325 %else
1326 %define _with_statsd --disable-statsd
1327 %endif
1328
1329 %if %{with_swap}
1330 %define _with_swap --enable-swap
1331 %else
1332 %define _with_swap --disable-swap
1333 %endif
1334
1335 %if %{with_syslog}
1336 %define _with_syslog --enable-syslog
1337 %else
1338 %define _with_syslog --disable-syslog
1339 %endif
1340
1341 %if %{with_table}
1342 %define _with_table --enable-table
1343 %else
1344 %define _with_table --disable-table
1345 %endif
1346
1347 %if %{with_tail}
1348 %define _with_tail --enable-tail
1349 %else
1350 %define _with_tail --disable-tail
1351 %endif
1352
1353 %if %{with_tail_csv}
1354 %define _with_tail_csv --enable-tail_csv
1355 %else
1356 %define _with_tail_csv --disable-tail_csv
1357 %endif
1358
1359 %if %{with_tape}
1360 %define _with_tape --enable-tape
1361 %else
1362 %define _with_tape --disable-tape
1363 %endif
1364
1365 %if %{with_tcpconns}
1366 %define _with_tcpconns --enable-tcpconns
1367 %else
1368 %define _with_tcpconns --disable-tcpconns
1369 %endif
1370
1371 %if %{with_teamspeak2}
1372 %define _with_teamspeak2 --enable-teamspeak2
1373 %else
1374 %define _with_teamspeak2 --disable-teamspeak2
1375 %endif
1376
1377 %if %{with_ted}
1378 %define _with_ted --enable-ted
1379 %else
1380 %define _with_ted --disable-ted
1381 %endif
1382
1383 %if %{with_thermal}
1384 %define _with_thermal --enable-thermal
1385 %else
1386 %define _with_thermal --disable-thermal
1387 %endif
1388
1389 %if %{with_threshold}
1390 %define _with_threshold --enable-threshold
1391 %else
1392 %define _with_threshold --disable-threshold
1393 %endif
1394
1395 %if %{with_tokyotyrant}
1396 %define _with_tokyotyrant --enable-tokyotyrant
1397 %else
1398 %define _with_tokyotyrant --disable-tokyotyrant
1399 %endif
1400
1401 %if %{with_unixsock}
1402 %define _with_unixsock --enable-unixsock
1403 %else
1404 %define _with_unixsock --disable-unixsock
1405 %endif
1406
1407 %if %{with_uptime}
1408 %define _with_uptime --enable-uptime
1409 %else
1410 %define _with_uptime --disable-uptime
1411 %endif
1412
1413 %if %{with_users}
1414 %define _with_users --enable-users
1415 %else
1416 %define _with_users --disable-users
1417 %endif
1418
1419 %if %{with_uuid}
1420 %define _with_uuid --enable-uuid
1421 %else
1422 %define _with_uuid --disable-uuid
1423 %endif
1424
1425 %if %{with_varnish}
1426 %define _with_varnish --enable-varnish
1427 %else
1428 %define _with_varnish --disable-varnish
1429 %endif
1430
1431 %if %{with_vmem}
1432 %define _with_vmem --enable-vmem
1433 %else
1434 %define _with_vmem --disable-vmem
1435 %endif
1436
1437 %if %{with_vserver}
1438 %define _with_vserver --enable-vserver
1439 %else
1440 %define _with_vserver --disable-vserver
1441 %endif
1442
1443 %if %{with_wireless}
1444 %define _with_wireless --enable-wireless
1445 %else
1446 %define _with_wireless --disable-wireless
1447 %endif
1448
1449 %if %{with_write_graphite}
1450 %define _with_write_graphite --enable-write_graphite
1451 %else
1452 %define _with_write_graphite --disable-write_graphite
1453 %endif
1454
1455 %if %{with_write_http}
1456 %define _with_write_http --enable-write_http
1457 %else
1458 %define _with_write_http --disable-write_http
1459 %endif
1460
1461 %if %{with_write_kafka}
1462 %define _with_write_kafka --enable-write_kafka
1463 %else
1464 %define _with_write_kafka --disable-write_kafka
1465 %endif
1466
1467 %if %{with_write_mongodb}
1468 %define _with_write_mongodb --enable-write_mongodb
1469 %else
1470 %define _with_write_mongodb --disable-write_mongodb --without-libmongoc
1471 %endif
1472
1473 %if %{with_write_redis}
1474 %define _with_write_redis --enable-write_redis
1475 %else
1476 %define _with_write_redis --disable-write_redis
1477 %endif
1478
1479 %if %{with_write_riemann}
1480 %define _with_write_riemann --enable-write_riemann
1481 %else
1482 %define _with_write_riemann --disable-write_riemann
1483 %endif
1484
1485 %if %{with_write_tsdb}
1486 %define _with_write_tsdb --enable-write_tsdb
1487 %else
1488 %define _with_write_tsdb --disable-write_tsdb
1489 %endif
1490
1491 %if %{with_xmms}
1492 %define _with_xmms --enable-xmms
1493 %else
1494 %define _with_xmms --disable-xmms
1495 %endif
1496
1497 %if %{with_zfs_arc}
1498 %define _with_zfs_arc --enable-zfs_arc
1499 %else
1500 %define _with_zfs_arc --disable-zfs_arc
1501 %endif
1502
1503 %if %{with_zookeeper}
1504 %define _with_zookeeper --enable-zookeeper
1505 %else
1506 %define _with_zookeeper --disable-zookeeper
1507 %endif
1508
1509 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1510         --disable-static \
1511         --without-included-ltdl \
1512         --enable-all-plugins=yes \
1513         --enable-match_empty_counter \
1514         --enable-match_hashed \
1515         --enable-match_regex \
1516         --enable-match_timediff \
1517         --enable-match_value \
1518         --enable-target_notification \
1519         --enable-target_replace \
1520         --enable-target_scale \
1521         --enable-target_set \
1522         --enable-target_v5upgrade \
1523         %{?_with_aggregation} \
1524         %{?_with_amqp} \
1525         %{?_with_apache} \
1526         %{?_with_apcups} \
1527         %{?_with_apple_sensors} \
1528         %{?_with_aquaero} \
1529         %{?_with_ascent} \
1530         %{?_with_barometer} \
1531         %{?_with_battery} \
1532         %{?_with_bind} \
1533         %{?_with_cgroups} \
1534         %{?_with_conntrack} \
1535         %{?_with_contextswitch} \
1536         %{?_with_cpu} \
1537         %{?_with_cpufreq} \
1538         %{?_with_csv} \
1539         %{?_with_curl} \
1540         %{?_with_curl_json} \
1541         %{?_with_curl_xml} \
1542         %{?_with_dbi} \
1543         %{?_with_df} \
1544         %{?_with_disk} \
1545         %{?_with_dns} \
1546         %{?_with_drbd} \
1547         %{?_with_email} \
1548         %{?_with_entropy} \
1549         %{?_with_ethstat} \
1550         %{?_with_exec} \
1551         %{?_with_filecount} \
1552         %{?_with_fscache} \
1553         %{?_with_gmond} \
1554         %{?_with_hddtemp} \
1555         %{?_with_interface} \
1556         %{?_with_ipmi} \
1557         %{?_with_iptables} \
1558         %{?_with_ipvs} \
1559         %{?_with_java} \
1560         %{?_with_virt} \
1561         %{?_with_log_logstash} \
1562         %{?_with_lpar} \
1563         %{?_with_lvm} \
1564         %{?_with_memcachec} \
1565         %{?_with_mic} \
1566         %{?_with_modbus} \
1567         %{?_with_multimeter} \
1568         %{?_with_mysql} \
1569         %{?_with_netapp} \
1570         %{?_with_netlink} \
1571         %{?_with_nginx} \
1572         %{?_with_notify_desktop} \
1573         %{?_with_notify_email} \
1574         %{?_with_nut} \
1575         %{?_with_onewire} \
1576         %{?_with_openldap} \
1577         %{?_with_oracle} \
1578         %{?_with_perl} \
1579         %{?_with_pf} \
1580         %{?_with_pinba} \
1581         %{?_with_ping} \
1582         %{?_with_postgresql} \
1583         %{?_with_python} \
1584         %{?_with_redis} \
1585         %{?_with_routeros} \
1586         %{?_with_rrdcached} \
1587         %{?_with_rrdtool} \
1588         %{?_with_sensors} \
1589         %{?_with_sigrok} \
1590         %{?_with_smart} \
1591         %{?_with_snmp} \
1592         %{?_with_tape} \
1593         %{?_with_tokyotyrant} \
1594         %{?_with_varnish} \
1595         %{?_with_write_http} \
1596         %{?_with_write_kafka} \
1597         %{?_with_write_mongodb} \
1598         %{?_with_write_redis} \
1599         %{?_with_xmms} \
1600         %{?_with_zfs_arc} \
1601         %{?_with_zookeeper} \
1602         %{?_with_irq} \
1603         %{?_with_load} \
1604         %{?_with_logfile} \
1605         %{?_with_madwifi} \
1606         %{?_with_mbmon} \
1607         %{?_with_md} \
1608         %{?_with_memcached} \
1609         %{?_with_memory} \
1610         %{?_with_network} \
1611         %{?_with_nfs} \
1612         %{?_with_ntpd} \
1613         %{?_with_numa} \
1614         %{?_with_olsrd} \
1615         %{?_with_openvpn} \
1616         %{?_with_powerdns} \
1617         %{?_with_processes} \
1618         %{?_with_protocols} \
1619         %{?_with_serial} \
1620         %{?_with_statsd} \
1621         %{?_with_swap} \
1622         %{?_with_syslog} \
1623         %{?_with_table} \
1624         %{?_with_tail} \
1625         %{?_with_tail_csv} \
1626         %{?_with_tcpconns} \
1627         %{?_with_teamspeak2} \
1628         %{?_with_ted} \
1629         %{?_with_thermal} \
1630         %{?_with_threshold} \
1631         %{?_with_unixsock} \
1632         %{?_with_uptime} \
1633         %{?_with_users} \
1634         %{?_with_uuid} \
1635         %{?_with_vmem} \
1636         %{?_with_vserver} \
1637         %{?_with_wireless}\
1638         %{?_with_write_graphite} \
1639         %{?_with_write_http} \
1640         %{?_with_write_riemann} \
1641         %{?_with_write_tsdb}
1642
1643
1644 %{__make} %{?_smp_mflags}
1645
1646
1647 %install
1648 rm -rf %{buildroot}
1649 %{__make} install DESTDIR=%{buildroot}
1650 %{__install} -Dp -m 0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1651 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1652 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1653 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1654
1655 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1656 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1657
1658 %{__cp} -a contrib/collection3 %{buildroot}%{_localstatedir}/www
1659 %{__cp} -a contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1660
1661 %{__cp} -a contrib/php-collection %{buildroot}%{_localstatedir}/www
1662 %{__cp} -a contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1663
1664 ### Clean up docs
1665 find contrib/ -type f -exec %{__chmod} a-x {} \;
1666 # *.la files shouldn't be distributed.
1667 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1668
1669 # Move the Perl examples to a separate directory.
1670 mkdir perl-examples
1671 find contrib -name '*.p[lm]' -exec mv {} perl-examples/ \;
1672
1673 # Remove Perl hidden .packlist files.
1674 find %{buildroot} -type f -name .packlist -delete
1675 # Remove Perl temporary file perllocal.pod
1676 find %{buildroot} -type f -name perllocal.pod -delete
1677
1678 %if ! %{with_java}
1679 rm -f %{buildroot}%{_datadir}/collectd/java/collectd-api.jar
1680 rm -f %{buildroot}%{_datadir}/collectd/java/generic-jmx.jar
1681 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1682 %endif
1683
1684 %if ! %{with_perl}
1685 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1686 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1687 rm -fr perl-examples/
1688 rm -fr %{buildroot}/usr/lib/perl5/
1689 %endif
1690
1691 %if ! %{with_postgresql}
1692 rm -f %{buildroot}%{_datadir}/collectd/postgresql_default.conf
1693 %endif
1694
1695 %if ! %{with_python}
1696 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1697 %endif
1698
1699 %if ! %{with_snmp}
1700 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1701 %endif
1702
1703
1704 %clean
1705 rm -rf %{buildroot}
1706
1707 %post
1708 /sbin/chkconfig --add collectd
1709
1710 %preun
1711 if [ $1 -eq 0 ]; then
1712         /sbin/service collectd stop &>/dev/null
1713         /sbin/chkconfig --del collectd
1714 fi
1715
1716 %postun
1717 if [ $1 -ge 1 ]; then
1718         /sbin/service collectd condrestart &>/dev/null || :
1719 fi
1720
1721 %post -n libcollectdclient -p /sbin/ldconfig
1722 %postun -n libcollectdclient -p /sbin/ldconfig
1723
1724
1725 %files
1726 %doc AUTHORS COPYING ChangeLog README
1727 %config(noreplace) %{_sysconfdir}/collectd.conf
1728 %{_initrddir}/collectd
1729 %{_sbindir}/collectd
1730 %{_bindir}/collectd-nagios
1731 %{_bindir}/collectd-tg
1732 %{_bindir}/collectdctl
1733 %{_sbindir}/collectdmon
1734 %{_datadir}/collectd/types.db
1735 %{_sharedstatedir}/collectd
1736 %{_mandir}/man1/collectd-nagios.1*
1737 %{_mandir}/man1/collectd.1*
1738 %{_mandir}/man1/collectdctl.1*
1739 %{_mandir}/man1/collectdmon.1*
1740 %{_mandir}/man1/collectd-tg.1*
1741 %{_mandir}/man5/collectd-email.5*
1742 %{_mandir}/man5/collectd-exec.5*
1743 %{_mandir}/man5/collectd-threshold.5*
1744 %{_mandir}/man5/collectd-unixsock.5*
1745 %{_mandir}/man5/collectd.conf.5*
1746 %{_mandir}/man5/types.db.5*
1747
1748 # all plugins bundled with the main collectd package
1749 %{_libdir}/%{name}/match_empty_counter.so
1750 %{_libdir}/%{name}/match_hashed.so
1751 %{_libdir}/%{name}/match_regex.so
1752 %{_libdir}/%{name}/match_timediff.so
1753 %{_libdir}/%{name}/match_value.so
1754 %{_libdir}/%{name}/target_notification.so
1755 %{_libdir}/%{name}/target_replace.so
1756 %{_libdir}/%{name}/target_scale.so
1757 %{_libdir}/%{name}/target_set.so
1758 %{_libdir}/%{name}/target_v5upgrade.so
1759
1760 %if %{with_aggregation}
1761 %{_libdir}/%{name}/aggregation.so
1762 %endif
1763 %if %{with_apcups}
1764 %{_libdir}/%{name}/apcups.so
1765 %endif
1766 %if %{with_battery}
1767 %{_libdir}/%{name}/battery.so
1768 %endif
1769 %if %{with_cgroups}
1770 %{_libdir}/%{name}/cgroups.so
1771 %endif
1772 %if %{with_conntrack}
1773 %{_libdir}/%{name}/conntrack.so
1774 %endif
1775 %if %{with_contextswitch}
1776 %{_libdir}/%{name}/contextswitch.so
1777 %endif
1778 %if %{with_cpu}
1779 %{_libdir}/%{name}/cpu.so
1780 %endif
1781 %if %{with_cpufreq}
1782 %{_libdir}/%{name}/cpufreq.so
1783 %endif
1784 %if %{with_csv}
1785 %{_libdir}/%{name}/csv.so
1786 %endif
1787 %if %{with_df}
1788 %{_libdir}/%{name}/df.so
1789 %endif
1790 %if %{with_drbd}
1791 %{_libdir}/%{name}/drbd.so
1792 %endif
1793 %if %{with_ethstat}
1794 %{_libdir}/%{name}/ethstat.so
1795 %endif
1796 %if %{with_entropy}
1797 %{_libdir}/%{name}/entropy.so
1798 %endif
1799 %if %{with_exec}
1800 %{_libdir}/%{name}/exec.so
1801 %endif
1802 %if %{with_filecount}
1803 %{_libdir}/%{name}/filecount.so
1804 %endif
1805 %if %{with_fscache}
1806 %{_libdir}/%{name}/fscache.so
1807 %endif
1808 %if %{with_interface}
1809 %{_libdir}/%{name}/interface.so
1810 %endif
1811 %if %{with_ipvs}
1812 %{_libdir}/%{name}/ipvs.so
1813 %endif
1814 %if %{with_irq}
1815 %{_libdir}/%{name}/irq.so
1816 %endif
1817 %if %{with_load}
1818 %{_libdir}/%{name}/load.so
1819 %endif
1820 %if %{with_logfile}
1821 %{_libdir}/%{name}/logfile.so
1822 %endif
1823 %if %{with_madwifi}
1824 %{_libdir}/%{name}/madwifi.so
1825 %endif
1826 %if %{with_mbmon}
1827 %{_libdir}/%{name}/mbmon.so
1828 %endif
1829 %if %{with_md}
1830 %{_libdir}/%{name}/md.so
1831 %endif
1832 %if %{with_memcached}
1833 %{_libdir}/%{name}/memcached.so
1834 %endif
1835 %if %{with_memory}
1836 %{_libdir}/%{name}/memory.so
1837 %endif
1838 %if %{with_multimeter}
1839 %{_libdir}/%{name}/multimeter.so
1840 %endif
1841 %if %{with_network}
1842 %{_libdir}/%{name}/network.so
1843 %endif
1844 %if %{with_nfs}
1845 %{_libdir}/%{name}/nfs.so
1846 %endif
1847 %if %{with_ntpd}
1848 %{_libdir}/%{name}/ntpd.so
1849 %endif
1850 %if %{with_numa}
1851 %{_libdir}/%{name}/numa.so
1852 %endif
1853 %if %{with_openvpn}
1854 %{_libdir}/%{name}/openvpn.so
1855 %endif
1856 %if %{with_olsrd}
1857 %{_libdir}/%{name}/olsrd.so
1858 %endif
1859 %if %{with_powerdns}
1860 %{_libdir}/%{name}/powerdns.so
1861 %endif
1862 %if %{with_processes}
1863 %{_libdir}/%{name}/processes.so
1864 %endif
1865 %if %{with_protocols}
1866 %{_libdir}/%{name}/protocols.so
1867 %endif
1868 %if %{with_serial}
1869 %{_libdir}/%{name}/serial.so
1870 %endif
1871 %if %{with_statsd}
1872 %{_libdir}/%{name}/statsd.so
1873 %endif
1874 %if %{with_swap}
1875 %{_libdir}/%{name}/swap.so
1876 %endif
1877 %if %{with_syslog}
1878 %{_libdir}/%{name}/syslog.so
1879 %endif
1880 %if %{with_table}
1881 %{_libdir}/%{name}/table.so
1882 %endif
1883 %if %{with_tail}
1884 %{_libdir}/%{name}/tail.so
1885 %endif
1886 %if %{with_tail_csv}
1887 %{_libdir}/%{name}/tail_csv.so
1888 %endif
1889 %if %{with_tcpconns}
1890 %{_libdir}/%{name}/tcpconns.so
1891 %endif
1892 %if %{with_teamspeak2}
1893 %{_libdir}/%{name}/teamspeak2.so
1894 %endif
1895 %if %{with_ted}
1896 %{_libdir}/%{name}/ted.so
1897 %endif
1898 %if %{with_thermal}
1899 %{_libdir}/%{name}/thermal.so
1900 %endif
1901 %if %{with_load}
1902 %{_libdir}/%{name}/threshold.so
1903 %endif
1904 %if %{with_unixsock}
1905 %{_libdir}/%{name}/unixsock.so
1906 %endif
1907 %if %{with_uptime}
1908 %{_libdir}/%{name}/uptime.so
1909 %endif
1910 %if %{with_users}
1911 %{_libdir}/%{name}/users.so
1912 %endif
1913 %if %{with_uuid}
1914 %{_libdir}/%{name}/uuid.so
1915 %endif
1916 %if %{with_vmem}
1917 %{_libdir}/%{name}/vmem.so
1918 %endif
1919 %if %{with_vserver}
1920 %{_libdir}/%{name}/vserver.so
1921 %endif
1922 %if %{with_wireless}
1923 %{_libdir}/%{name}/wireless.so
1924 %endif
1925 %if %{with_write_graphite}
1926 %{_libdir}/%{name}/write_graphite.so
1927 %endif
1928 %if %{with_write_tsdb}
1929 %{_libdir}/%{name}/write_tsdb.so
1930 %endif
1931 %if %{with_zfs_arc}
1932 %{_libdir}/%{name}/zfs_arc.so
1933 %endif
1934 %if %{with_zookeeper}
1935 %{_libdir}/%{name}/zookeeper.so
1936 %endif
1937
1938 %files -n libcollectdclient-devel
1939 %{_includedir}/collectd/client.h
1940 %{_includedir}/collectd/network.h
1941 %{_includedir}/collectd/network_buffer.h
1942 %{_includedir}/collectd/lcc_features.h
1943 %{_libdir}/pkgconfig/libcollectdclient.pc
1944
1945 %files -n libcollectdclient
1946 %{_libdir}/libcollectdclient.so
1947 %{_libdir}/libcollectdclient.so.*
1948
1949 %if %{with_amqp}
1950 %files amqp
1951 %{_libdir}/%{name}/amqp.so
1952 %endif
1953
1954 %if %{with_apache}
1955 %files apache
1956 %{_libdir}/%{name}/apache.so
1957 %endif
1958
1959 %if %{with_aquaero}
1960 %files aquaero
1961 %{_libdir}/%{name}/aquaero.so
1962 %endif
1963
1964 %if %{with_ascent}
1965 %files ascent
1966 %{_libdir}/%{name}/ascent.so
1967 %endif
1968
1969 %if %{with_barometer}
1970 %files barometer
1971 %{_libdir}/%{name}/barometer.so
1972 %endif
1973
1974 %if %{with_bind}
1975 %files bind
1976 %{_libdir}/%{name}/bind.so
1977 %endif
1978
1979 %if %{with_curl}
1980 %files curl
1981 %{_libdir}/%{name}/curl.so
1982 %endif
1983
1984 %if %{with_curl_json}
1985 %files curl_json
1986 %{_libdir}/%{name}/curl_json.so
1987 %endif
1988
1989 %if %{with_curl_xml}
1990 %files curl_xml
1991 %{_libdir}/%{name}/curl_xml.so
1992 %endif
1993
1994 %if %{with_disk}
1995 %files disk
1996 %{_libdir}/%{name}/disk.so
1997 %endif
1998
1999 %if %{with_dns}
2000 %files dns
2001 %{_libdir}/%{name}/dns.so
2002 %endif
2003
2004 %if %{with_dbi}
2005 %files dbi
2006 %{_libdir}/%{name}/dbi.so
2007 %endif
2008
2009 %if %{with_email}
2010 %files email
2011 %{_libdir}/%{name}/email.so
2012 %endif
2013
2014 %if %{with_gmond}
2015 %files gmond
2016 %{_libdir}/%{name}/gmond.so
2017 %endif
2018
2019 %if %{with_hddtemp}
2020 %files hddtemp
2021 %{_libdir}/%{name}/hddtemp.so
2022 %endif
2023
2024 %if %{with_ipmi}
2025 %files ipmi
2026 %{_libdir}/%{name}/ipmi.so
2027 %endif
2028
2029 %if %{with_iptables}
2030 %files iptables
2031 %{_libdir}/%{name}/iptables.so
2032 %endif
2033
2034 %if %{with_java}
2035 %files java
2036 %{_datadir}/collectd/java/collectd-api.jar
2037 %{_datadir}/collectd/java/generic-jmx.jar
2038 %{_libdir}/%{name}/java.so
2039 %{_mandir}/man5/collectd-java.5*
2040 %endif
2041
2042 %if %{with_virt}
2043 %files virt
2044 %{_libdir}/%{name}/virt.so
2045 %endif
2046
2047 %if %{with_log_logstash}
2048 %files log_logstash
2049 %{_libdir}/%{name}/log_logstash.so
2050 %endif
2051
2052 %if %{with_lvm}
2053 %files lvm
2054 %{_libdir}/%{name}/lvm.so
2055 %endif
2056
2057 %if %{with_memcachec}
2058 %files memcachec
2059 %{_libdir}/%{name}/memcachec.so
2060 %endif
2061
2062 %if %{with_mic}
2063 %files mic
2064 %{_libdir}/%{name}/mic.so
2065 %endif
2066
2067 %if %{with_modbus}
2068 %files modbus
2069 %{_libdir}/%{name}/modbus.so
2070 %endif
2071
2072 %if %{with_mysql}
2073 %files mysql
2074 %{_libdir}/%{name}/mysql.so
2075 %endif
2076
2077 %if %{with_netlink}
2078 %files netlink
2079 %{_libdir}/%{name}/netlink.so
2080 %endif
2081
2082 %if %{with_nginx}
2083 %files nginx
2084 %{_libdir}/%{name}/nginx.so
2085 %endif
2086
2087 %if %{with_notify_desktop}
2088 %files notify_desktop
2089 %{_libdir}/%{name}/notify_desktop.so
2090 %endif
2091
2092 %if %{with_notify_email}
2093 %files notify_email
2094 %{_libdir}/%{name}/notify_email.so
2095 %endif
2096
2097 %if %{with_nut}
2098 %files nut
2099 %{_libdir}/%{name}/nut.so
2100 %endif
2101
2102 %if %{with_openldap}
2103 %files openldap
2104 %{_libdir}/%{name}/openldap.so
2105 %endif
2106
2107 %if %{with_perl}
2108 %files perl
2109 %doc perl-examples/*
2110 %{perl_vendorlib}/Collectd.pm
2111 %{perl_vendorlib}/Collectd/
2112 %{_mandir}/man3/Collectd::Unixsock.3pm*
2113 %{_mandir}/man5/collectd-perl.5*
2114 %{_libdir}/%{name}/perl.so
2115 %endif
2116
2117 %if %{with_pinba}
2118 %files pinba
2119 %{_libdir}/%{name}/pinba.so
2120 %endif
2121
2122 %if %{with_ping}
2123 %files ping
2124 %{_libdir}/%{name}/ping.so
2125 %endif
2126
2127 %if %{with_postgresql}
2128 %files postgresql
2129 %{_datadir}/collectd/postgresql_default.conf
2130 %{_libdir}/%{name}/postgresql.so
2131 %endif
2132
2133 %if %{with_python}
2134 %files python
2135 %{_mandir}/man5/collectd-python*
2136 %{_libdir}/%{name}/python.so
2137 %endif
2138
2139 %if %{with_redis}
2140 %files redis
2141 %{_libdir}/%{name}/redis.so
2142 %endif
2143
2144 %if %{with_rrdcached}
2145 %files rrdcached
2146 %{_libdir}/%{name}/rrdcached.so
2147 %endif
2148
2149 %if %{with_rrdtool}
2150 %files rrdtool
2151 %{_libdir}/%{name}/rrdtool.so
2152 %endif
2153
2154 %if %{with_sensors}
2155 %files sensors
2156 %{_libdir}/%{name}/sensors.so
2157 %endif
2158
2159 %if %{with_sigrok}
2160 %files sigrok
2161 %{_libdir}/%{name}/sigrok.so
2162 %endif
2163
2164 %if %{with_smart}
2165 %files smart
2166 %{_libdir}/%{name}/smart.so
2167 %endif
2168
2169 %if %{with_snmp}
2170 %files snmp
2171 %{_mandir}/man5/collectd-snmp.5*
2172 %{_libdir}/%{name}/snmp.so
2173 %endif
2174
2175 %if %{with_varnish}
2176 %files varnish
2177 %{_libdir}/%{name}/varnish.so
2178 %endif
2179
2180 %if %{with_write_http}
2181 %files write_http
2182 %{_libdir}/%{name}/write_http.so
2183 %endif
2184
2185 %if %{with_write_kafka}
2186 %files write_kafka
2187 %{_libdir}/%{name}/write_kafka.so
2188 %endif
2189
2190 %if %{with_write_redis}
2191 %files write_redis
2192 %{_libdir}/%{name}/write_redis.so
2193 %endif
2194
2195 %if %{with_write_riemann}
2196 %files write_riemann
2197 %{_libdir}/%{name}/write_riemann.so
2198 %endif
2199
2200 %files collection3
2201 %{_localstatedir}/www/collection3
2202 %{_sysconfdir}/httpd/conf.d/collection3.conf
2203
2204 %files php-collection
2205 %{_localstatedir}/www/php-collection
2206 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2207
2208 %files contrib
2209 %doc contrib/
2210
2211 %changelog
2212 # * TODO 5.5.0-1
2213 # - New upstream version
2214 # - New plugins enabled by default: drbd, log_logstash, write_tsdb, smart, openldap, redis, write_redis, zookeeper
2215 # - New plugins disabled by default: barometer, write_kafka
2216 # - Enable zfs_arc, now supported on Linux
2217 # - Install disk plugin in an dedicated package, as it depends on libudev
2218
2219 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.0-1
2220 - New upstream version
2221 - Build netlink plugin by default
2222 - Enable cgroups, lvm and statsd plugins
2223 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2224
2225 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2226 - New upstream version
2227 - Added RHEL5 support:
2228   * conditionally disable plugins not building on this platform
2229   * add/specify some build dependencies and options
2230   * replace some RPM macros not available on this platform
2231 - Removed duplicate --enable-aggregation
2232 - Added some comments & usage examples
2233 - Replaced a couple of "Buildrequires" by "BuildRequires"
2234 - Enabled modbus plugin on RHEL6
2235 - Enabled netlink plugin on RHEL6 and RHEL7
2236 - Allow perl plugin to build on RHEL5
2237 - Add support for RHEL7
2238
2239 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2240 - New upstream version
2241 - Enabled write_riemann plugin
2242 - Enabled tail_csv plugin
2243 - Installed collectd-tc manpage
2244
2245 * Fri Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2246 - remove dependency on libstatgrab, which isn't required on linux
2247
2248 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2249 - collection3 and php-collection viewers are now in separate packages
2250
2251 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2252 - New upstream version
2253 - Enabled aggregation plugin
2254 - Installed collectd-tc
2255 - Added network.h and network_buffer.h to libcollectdclient-devel
2256 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2257 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2258 - Added rrdcached and redis plugin descriptions
2259 - Mentioned new pf plugin in disabled plugins list
2260
2261 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2262 - Follow Fedora Packaging Guidelines in java subpackage
2263
2264 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2265 - Move perl stuff to perl_vendorlib
2266 - Replace hardcoded paths with macros
2267 - Remove unnecessary Requires
2268 - Removed .a and .la files
2269 - Some other small cleanups
2270
2271 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2272 - New upstream version
2273 - Changes to support 5.1.0
2274 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2275 - All plugins requiring external libraries are now shipped in separate
2276   packages.
2277 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2278   the build process + ensure build deps are installed.
2279 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2280   defaults.
2281 - Moved perl stuff to /usr/share/perl5/
2282 - Don't alter Interval and ReadThreads by default, let the user change this
2283   himself.
2284 - Initscript improvements:
2285   * checks configuration before (re)starting, based on debian's initscript
2286   * use /etc/sysconfig instdead of /etc/default
2287   * include optional $ARGS in arguments passed to collectd.
2288 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2289 - Moved contrib/ to its own package, to avoid cluttering the main package with
2290   non-essential stuff.
2291 - Replaced BuildPrereq by BuildRequires
2292
2293 * Mon Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2294 - New upstream version
2295 - Changes to support 5.0.1
2296
2297 * Mon Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2298 - New upstream version
2299 - Changes to support 4.9.0
2300 - Added support for Java/GenericJMX plugin
2301
2302 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2303 - New upstream version
2304 - Changes to support 4.3.1
2305 - Added More Prereqs to support more plugins
2306 - Added support for perl plugin
2307
2308 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2309 - New upstream version
2310
2311 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2312 - New major releas
2313 - Changes to support 4.0.5
2314
2315 * Thu Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2316 - fixed spec file to build correctly on fedora core
2317 - added improved init.d script to work with chkconfig
2318 - added %%post and %%postun to call chkconfig automatically
2319
2320 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2321 - New upstream version
2322
2323 * Sun Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2324 - New upstream version
2325
2326 * Thu Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2327 - New upstream version
2328
2329 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2330 - New upstream version
2331
2332 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2333 - New upstream version
2334
2335 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2336 - New upstream version
2337
2338 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2339 - New upstream version
2340 - Added the `apache' package.
2341
2342 * Tue Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2343 - New upstream version
2344
2345 * Mon Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2346 - New upstream version
2347
2348 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2349 - New upstream version
2350
2351 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2352 - Include `tape.so' so the build doesn't terminate because of missing files..
2353 - New upstream version
2354
2355 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2356 - New upstream version
2357
2358 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2359 - New upstream version
2360 - Removed the extra `hddtemp' package
2361
2362 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2363 - New upstream version
2364
2365 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2366 - New upstream version
2367
2368 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2369 - New upstream version
2370 - Added config file, `collectd.conf(5)', `df.so'
2371 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2372
2373 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2374 - New upstream version
2375
2376 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2377 - New upstream version
2378
2379 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2380 - New upstream version
2381
2382 * Wed Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2383 - New upstream version
2384 - Added statement to remove the `*.la' files. This fixes a problem when
2385   `Unpackaged files terminate build' is in effect.
2386 - Added `processes.so*' to the main package
2387
2388 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2389 - New upstream version
2390 - Added package `collectd-hddtemp'
2391
2392 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2393 - New upstream version
2394 - Split the package into `collectd' and `collectd-sensors'
2395
2396 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2397 - New upstream version
2398
2399 * Sat Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2400 - New upstream version
2401
2402 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2403 - New upstream version
2404
2405 * Thu Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2406 - New upstream version
2407
2408 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2409 - New upstream version
2410
2411 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2412 - New upstream version
2413
2414 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2415 - New upstream version
2416
2417 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2418 - New upstream version
2419
2420 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2421 - Built on RedHat 7.3