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