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