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