Code

rpm specfile: enable zfs_arc by default
[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 #
36 %global _hardened_build 1
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_perl_extutils_embed 1}
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_mysql 0%{!?_without_mysql:1}
96 %define with_netlink 0%{!?_without_netlink:1}
97 %define with_network 0%{!?_without_network:1}
98 %define with_nfs 0%{!?_without_nfs:1}
99 %define with_nginx 0%{!?_without_nginx:1}
100 %define with_notify_desktop 0%{!?_without_notify_desktop:1}
101 %define with_notify_email 0%{!?_without_notify_email:1}
102 %define with_ntpd 0%{!?_without_ntpd:1}
103 %define with_numa 0%{!?_without_numa:1}
104 %define with_nut 0%{!?_without_nut:1}
105 %define with_olsrd 0%{!?_without_olsrd:1}
106 %define with_openvpn 0%{!?_without_openvpn:1}
107 %define with_perl 0%{!?_without_perl:0%{?_has_perl_extutils_embed}}
108 %define with_pinba 0%{!?_without_pinba:1}
109 %define with_ping 0%{!?_without_ping:1}
110 %define with_postgresql 0%{!?_without_postgresql:1}
111 %define with_powerdns 0%{!?_without_powerdns:1}
112 %define with_processes 0%{!?_without_processes:1}
113 %define with_protocols 0%{!?_without_protocols:1}
114 %define with_python 0%{!?_without_python:1}
115 %define with_rrdtool 0%{!?_without_rrdtool:1}
116 %define with_sensors 0%{!?_without_sensors:1}
117 %define with_serial 0%{!?_without_serial:1}
118 %define with_snmp 0%{!?_without_snmp:1}
119 %define with_statsd 0%{!?_without_statsd:1}
120 %define with_swap 0%{!?_without_swap:1}
121 %define with_syslog 0%{!?_without_syslog:1}
122 %define with_table 0%{!?_without_table:1}
123 %define with_tail 0%{!?_without_tail:1}
124 %define with_tail_csv 0%{!?_without_tail_csv:1}
125 %define with_tcpconns 0%{!?_without_tcpconns:1}
126 %define with_teamspeak2 0%{!?_without_teamspeak2:1}
127 %define with_ted 0%{!?_without_ted:1}
128 %define with_thermal 0%{!?_without_thermal:1}
129 %define with_threshold 0%{!?_without_threshold:1}
130 %define with_unixsock 0%{!?_without_unixsock:1}
131 %define with_uptime 0%{!?_without_uptime:1}
132 %define with_users 0%{!?_without_users:1}
133 %define with_uuid 0%{!?_without_uuid:1}
134 %define with_varnish 0%{!?_without_varnish:1}
135 %define with_vmem 0%{!?_without_vmem:1}
136 %define with_vserver 0%{!?_without_vserver:1}
137 %define with_wireless 0%{!?_without_wireless:1}
138 %define with_write_graphite 0%{!?_without_write_graphite:1}
139 %define with_write_http 0%{!?_without_write_http:1}
140 %define with_write_riemann 0%{!?_without_write_riemann:1}
141 %define with_zfs_arc 0%{!?_without_zfs_arc:1}
143 # Plugins not built by default because of dependencies on libraries not
144 # available in RHEL or EPEL:
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 modbus disabled, requires libmodbus
155 %define with_modbus 0%{!?_without_modbus:0}
156 # plugin netapp disabled, requires libnetapp
157 %define with_netapp 0%{!?_without_netapp:0}
158 # plugin onewire disabled, requires libowfs
159 %define with_onewire 0%{!?_without_onewire:0}
160 # plugin oracle disabled, requires Oracle
161 %define with_oracle 0%{!?_without_oracle:0}
162 # plugin oracle disabled, requires BSD
163 %define with_pf 0%{!?_without_pf:0}
164 # plugin redis disabled, requires credis
165 %define with_redis 0%{!?_without_redis:0}
166 # plugin routeros disabled, requires librouteros
167 %define with_routeros 0%{!?_without_routeros:0}
168 # plugin rrdcached disabled, requires rrdtool >= 1.4
169 %define with_rrdcached 0%{!?_without_rrdcached:0}
170 # plugin sigrok disabled, requires libsigrok
171 %define with_sigrok 0%{!?_without_sigrok:0}
172 # plugin tape disabled, requires libkstat
173 %define with_tape 0%{!?_without_tape:0}
174 # plugin tokyotyrant disabled, requires tcrdb.h
175 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
176 # plugin write_mongodb disabled, requires libmongoc
177 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
178 # plugin write_redis disabled, requires credis
179 %define with_write_redis 0%{!?_without_write_redis:0}
180 # plugin xmms disabled, requires xmms
181 %define with_xmms 0%{!?_without_xmms:0}
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>
195 Requires(post):         chkconfig
196 Requires(preun):        chkconfig, initscripts
197 Requires(postun):       initscripts
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
424 %if %{with_mysql}
425 %package mysql
426 Summary:        MySQL plugin for collectd
427 Group:          System Environment/Daemons
428 Requires:       %{name}%{?_isa} = %{version}-%{release}
429 BuildRequires:  mysql-devel
430 %description mysql
431 MySQL querying plugin. This plugin provides data of issued commands, called
432 handlers and database traffic.
433 %endif
435 %if %{with_netlink}
436 %package netlink
437 Summary:        netlink plugin for collectd
438 Group:          System Environment/Daemons
439 Requires:       %{name}%{?_isa} = %{version}-%{release}
440 BuildRequires:  libmnl-devel
441 %description netlink
442 This plugin collects very detailed Linux network interface and routing
443 statistics.
444 %endif
446 %if %{with_nginx}
447 %package nginx
448 Summary:        Nginx plugin for collectd
449 Group:          System Environment/Daemons
450 Requires:       %{name}%{?_isa} = %{version}-%{release}
451 BuildRequires:  curl-devel
452 %description nginx
453 This plugin gets data provided by nginx.
454 %endif
456 %if %{with_notify_desktop}
457 %package notify_desktop
458 Summary:        Notify_desktop plugin for collectd
459 Group:          System Environment/Daemons
460 Requires:       %{name}%{?_isa} = %{version}-%{release}
461 BuildRequires:  libnotify-devel, gtk2-devel
462 %description notify_desktop
463 The Notify Desktop plugin uses libnotify to display notifications to the user
464 via the desktop notification specification, i. e. on an X display.
465 %endif
467 %if %{with_notify_email}
468 %package notify_email
469 Summary:        Notify_email plugin for collectd
470 Group:          System Environment/Daemons
471 Requires:       %{name}%{?_isa} = %{version}-%{release}
472 BuildRequires:  libesmtp-devel
473 %description notify_email
474 The Notify Email plugin uses libESMTP to send notifications to a configured
475 email address.
476 %endif
478 %if %{with_nut}
479 %package nut
480 Summary:        Nut plugin for collectd
481 Group:          System Environment/Daemons
482 Requires:       %{name}%{?_isa} = %{version}-%{release}
483 BuildRequires:  nut-devel
484 %description nut
485 This plugin for collectd provides Network UPS Tools support.
486 %endif
488 %if %{with_perl}
489 %package perl
490 Summary:        Perl plugin for collectd
491 Group:          System Environment/Daemons
492 Requires:       %{name}%{?_isa} = %{version}-%{release}
493 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
494 BuildRequires:  perl-ExtUtils-Embed
495 %description perl
496 The Perl plugin embeds a Perl interpreter into collectd and exposes the
497 application programming interface (API) to Perl-scripts.
498 %endif
500 %if %{with_pinba}
501 %package pinba
502 Summary:        Pinba plugin for collectd
503 Group:          System Environment/Daemons
504 Requires:       %{name}%{?_isa} = %{version}-%{release}
505 BuildRequires:  protobuf-c-devel
506 %description pinba
507 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
508 extension for PHP.
509 %endif
511 %if %{with_ping}
512 %package ping
513 Summary:        Ping plugin for collectd
514 Group:          System Environment/Daemons
515 Requires:       %{name}%{?_isa} = %{version}-%{release}
516 BuildRequires:  liboping-devel
517 %description ping
518 The Ping plugin measures network latency using ICMP “echo requests”, usually
519 known as “ping”.
520 %endif
522 %if %{with_postgresql}
523 %package postgresql
524 Summary:        PostgreSQL plugin for collectd
525 Group:          System Environment/Daemons
526 Requires:       %{name}%{?_isa} = %{version}-%{release}
527 BuildRequires:  postgresql-devel
528 %description postgresql
529 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
530 database.
531 %endif
533 %if %{with_python}
534 %package python
535 Summary:        Python plugin for collectd
536 Group:          System Environment/Daemons
537 Requires:       %{name}%{?_isa} = %{version}-%{release}
538 %if 0%{?rhel} >= 6
539 BuildRequires: python-devel
540 %else
541 BuildRequires: python26-devel
542 %endif
543 %description python
544 The Python plugin embeds a Python interpreter into collectd and exposes the
545 application programming interface (API) to Python-scripts.
546 %endif
548 %if %{with_redis}
549 %package redis
550 Summary:        Redis plugin for collectd
551 Group:          System Environment/Daemons
552 Requires:       %{name}%{?_isa} = %{version}-%{release}
553 BuildRequires:  credis-devel
554 %description redis
555 The Redis plugin connects to one or more instances of Redis, a key-value store,
556 and collects usage information using the credis library.
557 %endif
559 %if %{with_rrdcached}
560 %package rrdcached
561 Summary:        RRDCached plugin for collectd
562 Group:          System Environment/Daemons
563 Requires:       %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
564 BuildRequires:  rrdtool-devel
565 %description rrdcached
566 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
567 submits updates for RRD files to that daemon.
568 %endif
570 %if %{with_rrdtool}
571 %package rrdtool
572 Summary:        RRDtool plugin for collectd
573 Group:          System Environment/Daemons
574 Requires:       %{name}%{?_isa} = %{version}-%{release}
575 BuildRequires:  rrdtool-devel
576 %description rrdtool
577 The RRDtool plugin writes values to RRD-files using librrd.
578 %endif
580 %if %{with_sensors}
581 %package sensors
582 Summary:        Sensors plugin for collectd
583 Group:          System Environment/Daemons
584 Requires:       %{name}%{?_isa} = %{version}-%{release}
585 BuildRequires:  lm_sensors-devel
586 %description sensors
587 This plugin for collectd provides querying of sensors supported by lm_sensors.
588 %endif
590 %if %{with_sigrok}
591 %package sigrok
592 Summary:        sigrok plugin for collectd
593 Group:          System Environment/Daemons
594 Requires:       %{name}%{?_isa} = %{version}-%{release}
595 %description sigrok
596 Uses libsigrok as a backend, allowing any sigrok-supported device to have its
597 measurements fed to collectd. This includes multimeters, sound level meters,
598 thermometers, and much more.
599 %endif
601 %if %{with_snmp}
602 %package snmp
603 Summary:        SNMP plugin for collectd
604 Group:          System Environment/Daemons
605 Requires:       %{name}%{?_isa} = %{version}-%{release}
606 BuildRequires:  net-snmp-devel
607 %description snmp
608 This plugin for collectd allows querying of network equipment using SNMP.
609 %endif
611 %if %{with_varnish}
612 %package varnish
613 Summary:        Varnish plugin for collectd
614 Group:          System Environment/Daemons
615 Requires:       %{name}%{?_isa} = %{version}-%{release}
616 BuildRequires:  varnish-libs-devel
617 %description varnish
618 The Varnish plugin collects information about Varnish, an HTTP accelerator.
619 %endif
621 %if %{with_write_http}
622 %package write_http
623 Summary:        Write-HTTP plugin for collectd
624 Group:          System Environment/Daemons
625 Requires:       %{name}%{?_isa} = %{version}-%{release}
626 BuildRequires:  curl-devel
627 %description write_http
628 The Write-HTTP plugin sends the values collected by collectd to a web-server
629 using HTTP POST requests.
630 %endif
632 %if %{with_write_redis}
633 %package write_redis
634 Summary:        Write-Redis plugin for collectd
635 Group:          System Environment/Daemons
636 Requires:       %{name}%{?_isa} = %{version}-%{release}
637 BuildRequires:  credis-devel
638 %description write_redis
639 The Write Redis plugin stores values in Redis, a “data structures server”.
640 %endif
642 %if %{with_write_riemann}
643 %package write_riemann
644 Summary:        riemann plugin for collectd
645 Group:          System Environment/Daemons
646 Requires:       %{name}%{?_isa} = %{version}-%{release}
647 BuildRequires:  protobuf-c-devel
648 %description write_riemann
649 The riemann plugin submits values to Riemann, an event stream processor.
650 %endif
652 %package collection3
653 Summary:        Web-based viewer for collectd
654 Group:          System Environment/Daemons
655 Requires:       %{name}%{?_isa} = %{version}-%{release}
656 Requires: httpd
657 %description collection3
658 collection3 is a graphing front-end for the RRD files created by and filled
659 with collectd. It is written in Perl and should be run as an CGI-script.
660 Graphs are generated on-the-fly, so no cron job or similar is necessary.
662 %package php-collection
663 Summary:        collect php webfrontent
664 Group:          System Environment/Daemons
665 Requires:       collectd = %{version}-%{release}
666 Requires:       httpd
667 Requires:       php
668 Requires:       php-rrdtool
669 %description php-collection
670 PHP graphing frontend for RRD files created by and filled with collectd.
672 %package contrib
673 Summary:        Contrib files for collectd
674 Group:          System Environment/Daemons
675 Requires:       %{name}%{?_isa} = %{version}-%{release}
676 %description contrib
677 All the files found under contrib/ in the source tree are bundled in this
678 package.
680 %package -n libcollectdclient
681 Summary:        Collectd client library
682 Group:          System Environment/Daemons
683 %description -n libcollectdclient
684 Collectd client library
686 %package -n libcollectdclient-devel
687 Summary:        Development files for libcollectdclient
688 Group:          System Environment/Daemons
689 Requires:       pkgconfig
690 Requires:       libcollectdclient%{?_isa} = %{version}-%{release}
691 %description -n libcollectdclient-devel
692 Development files for libcollectdclient
695 %prep
696 %setup -q
698 %build
699 %if %{with_aggregation}
700 %define _with_aggregation --enable-aggregation
701 %else
702 %define _with_aggregation --disable-aggregation
703 %endif
705 %if %{with_amqp}
706 %define _with_amqp --enable-amqp
707 %else
708 %define _with_amqp --disable-amqp
709 %endif
711 %if %{with_apache}
712 %define _with_apache --enable-apache
713 %else
714 %define _with_apache --disable-apache
715 %endif
717 %if %{with_apcups}
718 %define _with_apcups --enable-apcups
719 %else
720 %define _with_apcups --disable-apcups
721 %endif
723 %if %{with_apple_sensors}
724 %define _with_apple_sensors --enable-apple_sensors
725 %else
726 %define _with_apple_sensors --disable-apple_sensors
727 %endif
729 %if %{with_aquaero}
730 %define _with_aquaero --enable-aquaero
731 %else
732 %define _with_aquaero --disable-aquaero
733 %endif
735 %if %{with_ascent}
736 %define _with_ascent --enable-ascent
737 %else
738 %define _with_ascent --disable-ascent
739 %endif
741 %if %{with_battery}
742 %define _with_battery --enable-battery
743 %else
744 %define _with_battery --disable-battery
745 %endif
747 %if %{with_bind}
748 %define _with_bind --enable-bind
749 %else
750 %define _with_bind --disable-bind
751 %endif
753 %if %{with_cgroups}
754 %define _with_cgroups --enable-cgroups
755 %else
756 %define _with_cgroups --disable-cgroups
757 %endif
759 %if %{with_conntrack}
760 %define _with_conntrack --enable-conntrack
761 %else
762 %define _with_conntrack --disable-conntrack
763 %endif
765 %if %{with_contextswitch}
766 %define _with_contextswitch --enable-contextswitch
767 %else
768 %define _with_contextswitch --disable-contextswitch
769 %endif
771 %if %{with_cpu}
772 %define _with_cpu --enable-cpu
773 %else
774 %define _with_cpu --disable-cpu
775 %endif
777 %if %{with_cpufreq}
778 %define _with_cpufreq --enable-cpufreq
779 %else
780 %define _with_cpufreq --disable-cpufreq
781 %endif
783 %if %{with_csv}
784 %define _with_csv --enable-csv
785 %else
786 %define _with_csv --disable-csv
787 %endif
789 %if %{with_curl}
790 %define _with_curl --enable-curl
791 %else
792 %define _with_curl --disable-curl
793 %endif
795 %if %{with_curl_json}
796 %define _with_curl_json --enable-curl_json
797 %else
798 %define _with_curl_json --disable-curl_json
799 %endif
801 %if %{with_curl_xml}
802 %define _with_curl_xml --enable-curl_xml
803 %else
804 %define _with_curl_xml --disable-curl_xml
805 %endif
807 %if %{with_dbi}
808 %define _with_dbi --enable-dbi
809 %else
810 %define _with_dbi --disable-dbi --without-libdbi
811 %endif
813 %if %{with_df}
814 %define _with_df --enable-df
815 %else
816 %define _with_df --disable-df
817 %endif
819 %if %{with_disk}
820 %define _with_disk --enable-disk
821 %else
822 %define _with_disk --disable-disk
823 %endif
825 %if %{with_dns}
826 %define _with_dns --enable-dns
827 %else
828 %define _with_dns --disable-dns
829 %endif
831 %if %{with_email}
832 %define _with_email --enable-email
833 %else
834 %define _with_email --disable-email
835 %endif
837 %if %{with_entropy}
838 %define _with_entropy --enable-entropy
839 %else
840 %define _with_entropy --disable-entropy
841 %endif
843 %if %{with_ethstat}
844 %define _with_ethstat --enable-ethstat
845 %else
846 %define _with_ethstat --disable-ethstat
847 %endif
849 %if %{with_exec}
850 %define _with_exec --enable-exec
851 %else
852 %define _with_exec --disable-exec
853 %endif
855 %if %{with_filecount}
856 %define _with_filecount --enable-filecount
857 %else
858 %define _with_filecount --disable-filecount
859 %endif
861 %if %{with_fscache}
862 %define _with_fscache --enable-fscache
863 %else
864 %define _with_fscache --disable-fscache
865 %endif
867 %if %{with_gmond}
868 %define _with_gmond --enable-gmond
869 %else
870 %define _with_gmond --disable-gmond
871 %endif
873 %if %{with_hddtemp}
874 %define _with_hddtemp --enable-hddtemp
875 %else
876 %define _with_hddtemp --disable-hddtemp
877 %endif
879 %if %{with_interface}
880 %define _with_interface --enable-interface
881 %else
882 %define _with_interface --disable-interface
883 %endif
885 %if %{with_ipmi}
886 %define _with_ipmi --enable-ipmi
887 %else
888 %define _with_ipmi --disable-ipmi
889 %endif
891 %if %{with_iptables}
892 %define _with_iptables --enable-iptables
893 %else
894 %define _with_iptables --disable-iptables
895 %endif
897 %if %{with_ipvs}
898 %define _with_ipvs --enable-ipvs
899 %else
900 %define _with_ipvs --disable-ipvs
901 %endif
903 %if %{with_irq}
904 %define _with_irq --enable-irq
905 %else
906 %define _with_irq --disable-irq
907 %endif
909 %if %{with_java}
910 %define _with_java --enable-java --with-java=%{java_home}/
911 %else
912 %define _with_java --disable-java
913 %endif
915 %if %{with_libvirt}
916 %define _with_libvirt --enable-libvirt
917 %else
918 %define _with_libvirt --disable-libvirt
919 %endif
921 %if %{with_load}
922 %define _with_load --enable-load
923 %else
924 %define _with_load --disable-load
925 %endif
927 %if %{with_logfile}
928 %define _with_logfile --enable-logfile
929 %else
930 %define _with_logfile --disable-logfile
931 %endif
933 %if %{with_lpar}
934 %define _with_lpar --enable-lpar
935 %else
936 %define _with_lpar --disable-lpar
937 %endif
939 %if %{with_lvm}
940 %define _with_lvm --enable-lvm
941 %else
942 %define _with_lvm --disable-lvm
943 %endif
945 %if %{with_madwifi}
946 %define _with_madwifi --enable-madwifi
947 %else
948 %define _with_madwifi --disable-madwifi
949 %endif
951 %if %{with_mbmon}
952 %define _with_mbmon --enable-mbmon
953 %else
954 %define _with_mbmon --disable-mbmon
955 %endif
957 %if %{with_md}
958 %define _with_md --enable-md
959 %else
960 %define _with_md --disable-md
961 %endif
963 %if %{with_memcachec}
964 %define _with_memcachec --enable-memcachec
965 %else
966 %define _with_memcachec --disable-memcachec
967 %endif
969 %if %{with_memcached}
970 %define _with_memcached --enable-memcached
971 %else
972 %define _with_memcached --disable-memcached
973 %endif
975 %if %{with_memory}
976 %define _with_memory --enable-memory
977 %else
978 %define _with_memory --disable-memory
979 %endif
981 %if %{with_mic}
982 %define _with_mic --enable-mic
983 %else
984 %define _with_mic --disable-mic
985 %endif
987 %if %{with_modbus}
988 %define _with_modbus --enable-modbus
989 %else
990 %define _with_modbus --disable-modbus
991 %endif
993 %if %{with_multimeter}
994 %define _with_multimeter --enable-multimeter
995 %else
996 %define _with_multimeter --disable-multimeter
997 %endif
999 %if %{with_mysql}
1000 %define _with_mysql --enable-mysql
1001 %else
1002 %define _with_mysql --disable-mysql
1003 %endif
1005 %if %{with_netapp}
1006 %define _with_netapp --enable-netapp
1007 %else
1008 %define _with_netapp --disable-netapp
1009 %endif
1011 %if %{with_netlink}
1012 %define _with_netlink --enable-netlink
1013 %else
1014 %define _with_netlink --disable-netlink
1015 %endif
1017 %if %{with_network}
1018 %define _with_network --enable-network
1019 %else
1020 %define _with_network --disable-network
1021 %endif
1023 %if %{with_nfs}
1024 %define _with_nfs --enable-nfs
1025 %else
1026 %define _with_nfs --disable-nfs
1027 %endif
1029 %if %{with_nginx}
1030 %define _with_nginx --enable-nginx
1031 %else
1032 %define _with_nginx --disable-nginx
1033 %endif
1035 %if %{with_notify_desktop}
1036 %define _with_notify_desktop --enable-notify_desktop
1037 %else
1038 %define _with_notify_desktop --disable-notify_desktop
1039 %endif
1041 %if %{with_notify_email}
1042 %define _with_notify_email --enable-notify_email
1043 %else
1044 %define _with_notify_email --disable-notify_email --without-libesmpt
1045 %endif
1047 %if %{with_ntpd}
1048 %define _with_ntpd --enable-ntpd
1049 %else
1050 %define _with_ntpd --disable-ntpd
1051 %endif
1053 %if %{with_numa}
1054 %define _with_numa --enable-numa
1055 %else
1056 %define _with_numa --disable-numa
1057 %endif
1059 %if %{with_nut}
1060 %define _with_nut --enable-nut
1061 %else
1062 %define _with_nut --disable-nut
1063 %endif
1065 %if %{with_olsrd}
1066 %define _with_olsrd --enable-olsrd
1067 %else
1068 %define _with_olsrd --disable-olsrd
1069 %endif
1071 %if %{with_onewire}
1072 %define _with_onewire --enable-onewire
1073 %else
1074 %define _with_onewire --disable-onewire
1075 %endif
1077 %if %{with_openvpn}
1078 %define _with_openvpn --enable-openvpn
1079 %else
1080 %define _with_openvpn --disable-openvpn
1081 %endif
1083 %if %{with_oracle}
1084 %define _with_oracle --enable-oracle
1085 %else
1086 %define _with_oracle --disable-oracle
1087 %endif
1089 %if %{with_perl}
1090 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1091 %else
1092 %define _with_perl --disable-perl --without-libperl
1093 %endif
1095 %if %{with_pf}
1096 %define _with_pf --enable-pf
1097 %else
1098 %define _with_pf --disable-pf
1099 %endif
1101 %if %{with_pinba}
1102 %define _with_pinba --enable-pinba
1103 %else
1104 %define _with_pinba --disable-pinba
1105 %endif
1107 %if %{with_ping}
1108 %define _with_ping --enable-ping
1109 %else
1110 %define _with_ping --disable-ping
1111 %endif
1113 %if %{with_postgresql}
1114 %define _with_postgresql --enable-postgresql
1115 %else
1116 %define _with_postgresql --disable-postgresql
1117 %endif
1119 %if %{with_powerdns}
1120 %define _with_powerdns --enable-powerdns
1121 %else
1122 %define _with_powerdns --disable-powerdns
1123 %endif
1125 %if %{with_processes}
1126 %define _with_processes --enable-processes
1127 %else
1128 %define _with_processes --disable-processes
1129 %endif
1131 %if %{with_protocols}
1132 %define _with_protocols --enable-protocols
1133 %else
1134 %define _with_protocols --disable-protocols
1135 %endif
1137 %if %{with_python}
1138 %if 0%{?rhel} >= 6
1139 %define _with_python --enable-python
1140 %else
1141 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1142 %endif
1143 %else
1144 %define _with_python --disable-python
1145 %endif
1147 %if %{with_redis}
1148 %define _with_redis --enable-redis
1149 %else
1150 %define _with_redis --disable-redis
1151 %endif
1153 %if %{with_routeros}
1154 %define _with_routeros --enable-routeros
1155 %else
1156 %define _with_routeros --disable-routeros
1157 %endif
1159 %if %{with_rrdcached}
1160 %define _with_rrdcached --enable-rrdcached
1161 %else
1162 %define _with_rrdcached --disable-rrdcached
1163 %endif
1165 %if %{with_rrdtool}
1166 %define _with_rrdtool --enable-rrdtool
1167 %else
1168 %define _with_rrdtool --disable-rrdtool
1169 %endif
1171 %if %{with_sensors}
1172 %define _with_sensors --enable-sensors
1173 %else
1174 %define _with_sensors --disable-sensors
1175 %endif
1177 %if %{with_serial}
1178 %define _with_serial --enable-serial
1179 %else
1180 %define _with_serial --disable-serial
1181 %endif
1183 %if %{with_sigrok}
1184 %define _with_sigrok --enable-sigrok
1185 %else
1186 %define _with_sigrok --disable-sigrok
1187 %endif
1189 %if %{with_snmp}
1190 %define _with_snmp --enable-snmp
1191 %else
1192 %define _with_snmp --disable-snmp
1193 %endif
1195 %if %{with_statsd}
1196 %define _with_statsd --enable-statsd
1197 %else
1198 %define _with_statsd --disable-statsd
1199 %endif
1201 %if %{with_swap}
1202 %define _with_swap --enable-swap
1203 %else
1204 %define _with_swap --disable-swap
1205 %endif
1207 %if %{with_syslog}
1208 %define _with_syslog --enable-syslog
1209 %else
1210 %define _with_syslog --disable-syslog
1211 %endif
1213 %if %{with_table}
1214 %define _with_table --enable-table
1215 %else
1216 %define _with_table --disable-table
1217 %endif
1219 %if %{with_tail}
1220 %define _with_tail --enable-tail
1221 %else
1222 %define _with_tail --disable-tail
1223 %endif
1225 %if %{with_tail_csv}
1226 %define _with_tail_csv --enable-tail_csv
1227 %else
1228 %define _with_tail_csv --disable-tail_csv
1229 %endif
1231 %if %{with_tape}
1232 %define _with_tape --enable-tape
1233 %else
1234 %define _with_tape --disable-tape
1235 %endif
1237 %if %{with_tcpconns}
1238 %define _with_tcpconns --enable-tcpconns
1239 %else
1240 %define _with_tcpconns --disable-tcpconns
1241 %endif
1243 %if %{with_teamspeak2}
1244 %define _with_teamspeak2 --enable-teamspeak2
1245 %else
1246 %define _with_teamspeak2 --disable-teamspeak2
1247 %endif
1249 %if %{with_ted}
1250 %define _with_ted --enable-ted
1251 %else
1252 %define _with_ted --disable-ted
1253 %endif
1255 %if %{with_thermal}
1256 %define _with_thermal --enable-thermal
1257 %else
1258 %define _with_thermal --disable-thermal
1259 %endif
1261 %if %{with_threshold}
1262 %define _with_threshold --enable-threshold
1263 %else
1264 %define _with_threshold --disable-threshold
1265 %endif
1267 %if %{with_tokyotyrant}
1268 %define _with_tokyotyrant --enable-tokyotyrant
1269 %else
1270 %define _with_tokyotyrant --disable-tokyotyrant
1271 %endif
1273 %if %{with_unixsock}
1274 %define _with_unixsock --enable-unixsock
1275 %else
1276 %define _with_unixsock --disable-unixsock
1277 %endif
1279 %if %{with_uptime}
1280 %define _with_uptime --enable-uptime
1281 %else
1282 %define _with_uptime --disable-uptime
1283 %endif
1285 %if %{with_users}
1286 %define _with_users --enable-users
1287 %else
1288 %define _with_users --disable-users
1289 %endif
1291 %if %{with_uuid}
1292 %define _with_uuid --enable-uuid
1293 %else
1294 %define _with_uuid --disable-uuid
1295 %endif
1297 %if %{with_varnish}
1298 %define _with_varnish --enable-varnish
1299 %else
1300 %define _with_varnish --disable-varnish
1301 %endif
1303 %if %{with_vmem}
1304 %define _with_vmem --enable-vmem
1305 %else
1306 %define _with_vmem --disable-vmem
1307 %endif
1309 %if %{with_vserver}
1310 %define _with_vserver --enable-vserver
1311 %else
1312 %define _with_vserver --disable-vserver
1313 %endif
1315 %if %{with_wireless}
1316 %define _with_wireless --enable-wireless
1317 %else
1318 %define _with_wireless --disable-wireless
1319 %endif
1321 %if %{with_write_graphite}
1322 %define _with_write_graphite --enable-write_graphite
1323 %else
1324 %define _with_write_graphite --disable-write_graphite
1325 %endif
1327 %if %{with_write_http}
1328 %define _with_write_http --enable-write_http
1329 %else
1330 %define _with_write_http --disable-write_http
1331 %endif
1333 %if %{with_write_mongodb}
1334 %define _with_write_mongodb --enable-write_mongodb
1335 %else
1336 %define _with_write_mongodb --disable-write_mongodb --without-libmongoc
1337 %endif
1339 %if %{with_write_redis}
1340 %define _with_write_redis --enable-write_redis
1341 %else
1342 %define _with_write_redis --disable-write_redis --without-libcredis
1343 %endif
1345 %if %{with_write_riemann}
1346 %define _with_write_riemann --enable-write_riemann
1347 %else
1348 %define _with_write_riemann --disable-write_riemann
1349 %endif
1351 %if %{with_xmms}
1352 %define _with_xmms --enable-xmms
1353 %else
1354 %define _with_xmms --disable-xmms
1355 %endif
1357 %if %{with_zfs_arc}
1358 %define _with_zfs_arc --enable-zfs_arc
1359 %else
1360 %define _with_zfs_arc --disable-zfs_arc
1361 %endif
1363 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1364         --disable-static \
1365         --without-included-ltdl \
1366         --enable-all-plugins=yes \
1367         --enable-match_empty_counter \
1368         --enable-match_hashed \
1369         --enable-match_regex \
1370         --enable-match_timediff \
1371         --enable-match_value \
1372         --enable-target_notification \
1373         --enable-target_replace \
1374         --enable-target_scale \
1375         --enable-target_set \
1376         --enable-target_v5upgrade \
1377         %{?_with_aggregation} \
1378         %{?_with_amqp} \
1379         %{?_with_apache} \
1380         %{?_with_apcups} \
1381         %{?_with_apple_sensors} \
1382         %{?_with_aquaero} \
1383         %{?_with_ascent} \
1384         %{?_with_battery} \
1385         %{?_with_bind} \
1386         %{?_with_cgroups} \
1387         %{?_with_conntrack} \
1388         %{?_with_contextswitch} \
1389         %{?_with_cpu} \
1390         %{?_with_cpufreq} \
1391         %{?_with_csv} \
1392         %{?_with_curl} \
1393         %{?_with_curl_json} \
1394         %{?_with_curl_xml} \
1395         %{?_with_dbi} \
1396         %{?_with_df} \
1397         %{?_with_disk} \
1398         %{?_with_dns} \
1399         %{?_with_email} \
1400         %{?_with_entropy} \
1401         %{?_with_ethstat} \
1402         %{?_with_exec} \
1403         %{?_with_filecount} \
1404         %{?_with_fscache} \
1405         %{?_with_gmond} \
1406         %{?_with_hddtemp} \
1407         %{?_with_interface} \
1408         %{?_with_ipmi} \
1409         %{?_with_iptables} \
1410         %{?_with_ipvs} \
1411         %{?_with_java} \
1412         %{?_with_libvirt} \
1413         %{?_with_lpar} \
1414         %{?_with_lvm} \
1415         %{?_with_memcachec} \
1416         %{?_with_mic} \
1417         %{?_with_modbus} \
1418         %{?_with_multimeter} \
1419         %{?_with_mysql} \
1420         %{?_with_netapp} \
1421         %{?_with_netlink} \
1422         %{?_with_nginx} \
1423         %{?_with_notify_desktop} \
1424         %{?_with_notify_email} \
1425         %{?_with_nut} \
1426         %{?_with_onewire} \
1427         %{?_with_oracle} \
1428         %{?_with_perl} \
1429         %{?_with_pf} \
1430         %{?_with_pinba} \
1431         %{?_with_ping} \
1432         %{?_with_postgresql} \
1433         %{?_with_python} \
1434         %{?_with_redis} \
1435         %{?_with_routeros} \
1436         %{?_with_rrdcached} \
1437         %{?_with_rrdtool} \
1438         %{?_with_sensors} \
1439         %{?_with_sigrok} \
1440         %{?_with_snmp} \
1441         %{?_with_tape} \
1442         %{?_with_tokyotyrant} \
1443         %{?_with_varnish} \
1444         %{?_with_write_http} \
1445         %{?_with_write_mongodb} \
1446         %{?_with_write_redis} \
1447         %{?_with_xmms} \
1448         %{?_with_zfs_arc} \
1449         %{?_with_irq} \
1450         %{?_with_load} \
1451         %{?_with_logfile} \
1452         %{?_with_madwifi} \
1453         %{?_with_mbmon} \
1454         %{?_with_md} \
1455         %{?_with_memcached} \
1456         %{?_with_memory} \
1457         %{?_with_network} \
1458         %{?_with_nfs} \
1459         %{?_with_ntpd} \
1460         %{?_with_numa} \
1461         %{?_with_olsrd} \
1462         %{?_with_openvpn} \
1463         %{?_with_powerdns} \
1464         %{?_with_processes} \
1465         %{?_with_protocols} \
1466         %{?_with_serial} \
1467         %{?_with_statsd} \
1468         %{?_with_swap} \
1469         %{?_with_syslog} \
1470         %{?_with_table} \
1471         %{?_with_tail} \
1472         %{?_with_tail_csv} \
1473         %{?_with_tcpconns} \
1474         %{?_with_teamspeak2} \
1475         %{?_with_ted} \
1476         %{?_with_thermal} \
1477         %{?_with_threshold} \
1478         %{?_with_unixsock} \
1479         %{?_with_uptime} \
1480         %{?_with_users} \
1481         %{?_with_uuid} \
1482         %{?_with_vmem} \
1483         %{?_with_vserver} \
1484         %{?_with_wireless}\
1485         %{?_with_write_graphite} \
1486         %{?_with_write_http} \
1487         %{?_with_write_riemann}
1490 %{__make} %{?_smp_mflags}
1493 %install
1494 rm -rf %{buildroot}
1495 %{__make} install DESTDIR=%{buildroot}
1496 %{__install} -Dp -m 0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1497 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1498 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1499 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1501 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1502 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1504 %{__cp} -a contrib/collection3 %{buildroot}%{_localstatedir}/www
1505 %{__cp} -a contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1507 %{__cp} -a contrib/php-collection %{buildroot}%{_localstatedir}/www
1508 %{__cp} -a contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1510 ### Clean up docs
1511 find contrib/ -type f -exec %{__chmod} a-x {} \;
1512 # *.la files shouldn't be distributed.
1513 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1515 # Move the Perl examples to a separate directory.
1516 mkdir perl-examples
1517 find contrib -name '*.p[lm]' -exec mv {} perl-examples/ \;
1519 # Remove Perl hidden .packlist files.
1520 find %{buildroot} -type f -name .packlist -delete
1521 # Remove Perl temporary file perllocal.pod
1522 find %{buildroot} -type f -name perllocal.pod -delete
1524 %if ! %{with_java}
1525 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1526 %endif
1528 %if ! %{with_perl}
1529 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1530 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1531 rm -fr perl-examples/
1532 rm -fr %{buildroot}/usr/lib/perl5/
1533 %endif
1535 %if ! %{with_python}
1536 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1537 %endif
1539 %if ! %{with_snmp}
1540 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1541 %endif
1544 %clean
1545 rm -rf %{buildroot}
1547 %post
1548 /sbin/chkconfig --add collectd
1550 %preun
1551 if [ $1 -eq 0 ]; then
1552         /sbin/service collectd stop &>/dev/null
1553         /sbin/chkconfig --del collectd
1554 fi
1556 %postun
1557 if [ $1 -ge 1 ]; then
1558         /sbin/service collectd condrestart &>/dev/null || :
1559 fi
1561 %post -n libcollectdclient -p /sbin/ldconfig
1562 %postun -n libcollectdclient -p /sbin/ldconfig
1565 %files
1566 %doc AUTHORS COPYING ChangeLog README
1567 %config(noreplace) %{_sysconfdir}/collectd.conf
1568 %{_initrddir}/collectd
1569 %{_sbindir}/collectd
1570 %{_bindir}/collectd-nagios
1571 %{_bindir}/collectd-tg
1572 %{_bindir}/collectdctl
1573 %{_sbindir}/collectdmon
1574 %{_datadir}/collectd/
1575 %{_sharedstatedir}/collectd
1576 %{_mandir}/man1/collectd-nagios.1*
1577 %{_mandir}/man1/collectd.1*
1578 %{_mandir}/man1/collectdctl.1*
1579 %{_mandir}/man1/collectdmon.1*
1580 %{_mandir}/man1/collectd-tg.1*
1581 %{_mandir}/man5/collectd-email.5*
1582 %{_mandir}/man5/collectd-exec.5*
1583 %{_mandir}/man5/collectd-threshold.5*
1584 %{_mandir}/man5/collectd-unixsock.5*
1585 %{_mandir}/man5/collectd.conf.5*
1586 %{_mandir}/man5/types.db.5*
1588 # all plugins bundled with the main collectd package
1589 %{_libdir}/%{name}/match_empty_counter.so
1590 %{_libdir}/%{name}/match_hashed.so
1591 %{_libdir}/%{name}/match_regex.so
1592 %{_libdir}/%{name}/match_timediff.so
1593 %{_libdir}/%{name}/match_value.so
1594 %{_libdir}/%{name}/target_notification.so
1595 %{_libdir}/%{name}/target_replace.so
1596 %{_libdir}/%{name}/target_scale.so
1597 %{_libdir}/%{name}/target_set.so
1598 %{_libdir}/%{name}/target_v5upgrade.so
1600 %if %{with_aggregation}
1601 %{_libdir}/%{name}/aggregation.so
1602 %endif
1603 %if %{with_apcups}
1604 %{_libdir}/%{name}/apcups.so
1605 %endif
1606 %if %{with_battery}
1607 %{_libdir}/%{name}/battery.so
1608 %endif
1609 %if %{with_cgroups}
1610 %{_libdir}/%{name}/cgroups.so
1611 %endif
1612 %if %{with_conntrack}
1613 %{_libdir}/%{name}/conntrack.so
1614 %endif
1615 %if %{with_contextswitch}
1616 %{_libdir}/%{name}/contextswitch.so
1617 %endif
1618 %if %{with_cpu}
1619 %{_libdir}/%{name}/cpu.so
1620 %endif
1621 %if %{with_cpufreq}
1622 %{_libdir}/%{name}/cpufreq.so
1623 %endif
1624 %if %{with_csv}
1625 %{_libdir}/%{name}/csv.so
1626 %endif
1627 %if %{with_df}
1628 %{_libdir}/%{name}/df.so
1629 %endif
1630 %if %{with_disk}
1631 %{_libdir}/%{name}/disk.so
1632 %endif
1633 %if %{with_ethstat}
1634 %{_libdir}/%{name}/ethstat.so
1635 %endif
1636 %if %{with_entropy}
1637 %{_libdir}/%{name}/entropy.so
1638 %endif
1639 %if %{with_exec}
1640 %{_libdir}/%{name}/exec.so
1641 %endif
1642 %if %{with_filecount}
1643 %{_libdir}/%{name}/filecount.so
1644 %endif
1645 %if %{with_fscache}
1646 %{_libdir}/%{name}/fscache.so
1647 %endif
1648 %if %{with_interface}
1649 %{_libdir}/%{name}/interface.so
1650 %endif
1651 %if %{with_ipvs}
1652 %{_libdir}/%{name}/ipvs.so
1653 %endif
1654 %if %{with_irq}
1655 %{_libdir}/%{name}/irq.so
1656 %endif
1657 %if %{with_load}
1658 %{_libdir}/%{name}/load.so
1659 %endif
1660 %if %{with_logfile}
1661 %{_libdir}/%{name}/logfile.so
1662 %endif
1663 %if %{with_madwifi}
1664 %{_libdir}/%{name}/madwifi.so
1665 %endif
1666 %if %{with_mbmon}
1667 %{_libdir}/%{name}/mbmon.so
1668 %endif
1669 %if %{with_md}
1670 %{_libdir}/%{name}/md.so
1671 %endif
1672 %if %{with_memcached}
1673 %{_libdir}/%{name}/memcached.so
1674 %endif
1675 %if %{with_memory}
1676 %{_libdir}/%{name}/memory.so
1677 %endif
1678 %if %{with_multimeter}
1679 %{_libdir}/%{name}/multimeter.so
1680 %endif
1681 %if %{with_network}
1682 %{_libdir}/%{name}/network.so
1683 %endif
1684 %if %{with_nfs}
1685 %{_libdir}/%{name}/nfs.so
1686 %endif
1687 %if %{with_ntpd}
1688 %{_libdir}/%{name}/ntpd.so
1689 %endif
1690 %if %{with_numa}
1691 %{_libdir}/%{name}/numa.so
1692 %endif
1693 %if %{with_openvpn}
1694 %{_libdir}/%{name}/openvpn.so
1695 %endif
1696 %if %{with_olsrd}
1697 %{_libdir}/%{name}/olsrd.so
1698 %endif
1699 %if %{with_powerdns}
1700 %{_libdir}/%{name}/powerdns.so
1701 %endif
1702 %if %{with_processes}
1703 %{_libdir}/%{name}/processes.so
1704 %endif
1705 %if %{with_protocols}
1706 %{_libdir}/%{name}/protocols.so
1707 %endif
1708 %if %{with_serial}
1709 %{_libdir}/%{name}/serial.so
1710 %endif
1711 %if %{with_statsd}
1712 %{_libdir}/%{name}/statsd.so
1713 %endif
1714 %if %{with_swap}
1715 %{_libdir}/%{name}/swap.so
1716 %endif
1717 %if %{with_syslog}
1718 %{_libdir}/%{name}/syslog.so
1719 %endif
1720 %if %{with_table}
1721 %{_libdir}/%{name}/table.so
1722 %endif
1723 %if %{with_tail}
1724 %{_libdir}/%{name}/tail.so
1725 %endif
1726 %if %{with_tail_csv}
1727 %{_libdir}/%{name}/tail_csv.so
1728 %endif
1729 %if %{with_tcpconns}
1730 %{_libdir}/%{name}/tcpconns.so
1731 %endif
1732 %if %{with_teamspeak2}
1733 %{_libdir}/%{name}/teamspeak2.so
1734 %endif
1735 %if %{with_ted}
1736 %{_libdir}/%{name}/ted.so
1737 %endif
1738 %if %{with_thermal}
1739 %{_libdir}/%{name}/thermal.so
1740 %endif
1741 %if %{with_load}
1742 %{_libdir}/%{name}/threshold.so
1743 %endif
1744 %if %{with_unixsock}
1745 %{_libdir}/%{name}/unixsock.so
1746 %endif
1747 %if %{with_uptime}
1748 %{_libdir}/%{name}/uptime.so
1749 %endif
1750 %if %{with_users}
1751 %{_libdir}/%{name}/users.so
1752 %endif
1753 %if %{with_uuid}
1754 %{_libdir}/%{name}/uuid.so
1755 %endif
1756 %if %{with_vmem}
1757 %{_libdir}/%{name}/vmem.so
1758 %endif
1759 %if %{with_vserver}
1760 %{_libdir}/%{name}/vserver.so
1761 %endif
1762 %if %{with_wireless}
1763 %{_libdir}/%{name}/wireless.so
1764 %endif
1765 %if %{with_write_graphite}
1766 %{_libdir}/%{name}/write_graphite.so
1767 %endif
1770 %files -n libcollectdclient-devel
1771 %{_includedir}/collectd/client.h
1772 %{_includedir}/collectd/network.h
1773 %{_includedir}/collectd/network_buffer.h
1774 %{_includedir}/collectd/lcc_features.h
1775 %{_libdir}/pkgconfig/libcollectdclient.pc
1777 %files -n libcollectdclient
1778 %{_libdir}/libcollectdclient.so
1779 %{_libdir}/libcollectdclient.so.*
1781 %if %{with_amqp}
1782 %files amqp
1783 %{_libdir}/%{name}/amqp.so
1784 %endif
1786 %if %{with_apache}
1787 %files apache
1788 %{_libdir}/%{name}/apache.so
1789 %endif
1791 %if %{with_aquaero}
1792 %files aquaero
1793 %{_libdir}/%{name}/aquaero.so
1794 %endif
1796 %if %{with_ascent}
1797 %files ascent
1798 %{_libdir}/%{name}/ascent.so
1799 %endif
1801 %if %{with_bind}
1802 %files bind
1803 %{_libdir}/%{name}/bind.so
1804 %endif
1806 %if %{with_curl}
1807 %files curl
1808 %{_libdir}/%{name}/curl.so
1809 %endif
1811 %if %{with_curl_json}
1812 %files curl_json
1813 %{_libdir}/%{name}/curl_json.so
1814 %endif
1816 %if %{with_curl_xml}
1817 %files curl_xml
1818 %{_libdir}/%{name}/curl_xml.so
1819 %endif
1821 %if %{with_dns}
1822 %files dns
1823 %{_libdir}/%{name}/dns.so
1824 %endif
1826 %if %{with_dbi}
1827 %files dbi
1828 %{_libdir}/%{name}/dbi.so
1829 %endif
1831 %if %{with_email}
1832 %files email
1833 %{_libdir}/%{name}/email.so
1834 %endif
1836 %if %{with_gmond}
1837 %files gmond
1838 %{_libdir}/%{name}/gmond.so
1839 %endif
1841 %if %{with_hddtemp}
1842 %files hddtemp
1843 %{_libdir}/%{name}/hddtemp.so
1844 %endif
1846 %if %{with_ipmi}
1847 %files ipmi
1848 %{_libdir}/%{name}/ipmi.so
1849 %endif
1851 %if %{with_iptables}
1852 %files iptables
1853 %{_libdir}/%{name}/iptables.so
1854 %endif
1856 %if %{with_java}
1857 %files java
1858 %{_prefix}/share/collectd/java/collectd-api.jar
1859 %{_prefix}/share/collectd/java/generic-jmx.jar
1860 %{_libdir}/%{name}/java.so
1861 %{_mandir}/man5/collectd-java.5*
1862 %endif
1864 %if %{with_libvirt}
1865 %files libvirt
1866 %{_libdir}/%{name}/libvirt.so
1867 %endif
1869 %if %{with_lvm}
1870 %files lvm
1871 %{_libdir}/%{name}/lvm.so
1872 %endif
1874 %if %{with_memcachec}
1875 %files memcachec
1876 %{_libdir}/%{name}/memcachec.so
1877 %endif
1879 %if %{with_mic}
1880 %files mic
1881 %{_libdir}/%{name}/mic.so
1882 %endif
1884 %if %{with_mysql}
1885 %files mysql
1886 %{_libdir}/%{name}/mysql.so
1887 %endif
1889 %if %{with_netlink}
1890 %files netlink
1891 %{_libdir}/%{name}/netlink.so
1892 %endif
1894 %if %{with_nginx}
1895 %files nginx
1896 %{_libdir}/%{name}/nginx.so
1897 %endif
1899 %if %{with_notify_desktop}
1900 %files notify_desktop
1901 %{_libdir}/%{name}/notify_desktop.so
1902 %endif
1904 %if %{with_notify_email}
1905 %files notify_email
1906 %{_libdir}/%{name}/notify_email.so
1907 %endif
1909 %if %{with_nut}
1910 %files nut
1911 %{_libdir}/%{name}/nut.so
1912 %endif
1914 %if %{with_perl}
1915 %files perl
1916 %doc perl-examples/*
1917 %{perl_vendorlib}/Collectd.pm
1918 %{perl_vendorlib}/Collectd/
1919 %{_mandir}/man3/Collectd::Unixsock.3pm*
1920 %{_mandir}/man5/collectd-perl.5*
1921 %{_libdir}/%{name}/perl.so
1922 %endif
1924 %if %{with_pinba}
1925 %files pinba
1926 %{_libdir}/%{name}/pinba.so
1927 %endif
1929 %if %{with_ping}
1930 %files ping
1931 %{_libdir}/%{name}/ping.so
1932 %endif
1934 %if %{with_postgresql}
1935 %files postgresql
1936 %{_prefix}/share/collectd/postgresql_default.conf
1937 %{_libdir}/%{name}/postgresql.so
1938 %endif
1940 %if %{with_python}
1941 %files python
1942 %{_mandir}/man5/collectd-python*
1943 %{_libdir}/%{name}/python.so
1944 %endif
1946 %if %{with_redis}
1947 %files redis
1948 %{_libdir}/%{name}/redis.so
1949 %endif
1951 %if %{with_rrdcached}
1952 %files rrdcached
1953 %{_libdir}/%{name}/rrdcached.so
1954 %endif
1956 %if %{with_rrdtool}
1957 %files rrdtool
1958 %{_libdir}/%{name}/rrdtool.so
1959 %endif
1961 %if %{with_sensors}
1962 %files sensors
1963 %{_libdir}/%{name}/sensors.so
1964 %endif
1966 %if %{with_sigrok}
1967 %files sigrok
1968 %{_libdir}/%{name}/sigrok.so
1969 %endif
1971 %if %{with_snmp}
1972 %files snmp
1973 %{_mandir}/man5/collectd-snmp.5*
1974 %{_libdir}/%{name}/snmp.so
1975 %endif
1977 %if %{with_varnish}
1978 %files varnish
1979 %{_libdir}/%{name}/varnish.so
1980 %endif
1982 %if %{with_write_http}
1983 %files write_http
1984 %{_libdir}/%{name}/write_http.so
1985 %endif
1987 %if %{with_write_redis}
1988 %files write_redis
1989 %{_libdir}/%{name}/write_redis.so
1990 %endif
1992 %if %{with_write_riemann}
1993 %files write_riemann
1994 %{_libdir}/%{name}/write_riemann.so
1995 %endif
1997 %files collection3
1998 %{_localstatedir}/www/collection3
1999 %{_sysconfdir}/httpd/conf.d/collection3.conf
2001 %files php-collection
2002 %{_localstatedir}/www/php-collection
2003 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2005 %files contrib
2006 %doc contrib/
2008 %changelog
2009 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.0-1
2010 - New upstream version
2011 - Build netlink plugin by default
2012 - Enable cgroups, lvm and statsd plugins
2013 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2015 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2016 - New upstream version
2017 - Added RHEL5 support:
2018   * conditionally disable plugins not building on this platform
2019   * add/specify some build dependencies and options
2020   * replace some RPM macros not available on this platform
2021 - Removed duplicate --enable-aggregation
2022 - Added some comments & usage examples
2023 - Replaced a couple of "Buildrequires" by "BuildRequires"
2025 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2026 - New upstream version
2027 - Enabled write_riemann plugin
2028 - Enabled tail_csv plugin
2029 - Installed collectd-tc manpage
2031 * Thu Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2032 - remove dependency on libstatgrab, which isn't required on linux
2034 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2035 - collection3 and php-collection viewers are now in separate packages
2037 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2038 - New upstream version
2039 - Enabled aggregation plugin
2040 - Installed collectd-tc
2041 - Added network.h and network_buffer.h to libcollectdclient-devel
2042 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2043 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2044 - Added rrdcached and redis plugin descriptions
2045 - Mentioned new pf plugin in disabled plugins list
2047 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2048 - Follow Fedora Packaging Guidelines in java subpackage
2050 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2051 - Move perl stuff to perl_vendorlib
2052 - Replace hardcoded paths with macros
2053 - Remove unneccesary Requires
2054 - Removed .a and .la files
2055 - Some other small cleanups
2057 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2058 - New upstream version
2059 - Changes to support 5.1.0
2060 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2061 - All plugins requiring external libraries are now shipped in seperate
2062   packages.
2063 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2064   the build process + ensure build deps are installed.
2065 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2066   defaults.
2067 - Moved perl stuff to /usr/share/perl5/
2068 - Don't alter Interval and ReadThreads by default, let the user change this
2069   himself.
2070 - Initscript improvements:
2071   * checks configuration before (re)starting, based on debian's initscript
2072   * use /etc/sysconfig instdead of /etc/default
2073   * include optional $ARGS in arguments passed to collectd.
2074 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2075 - Moved contrib/ to its own package, to avoid cluttering the main package with
2076   non-essential stuff.
2077 - Replaced BuildPrereq by BuildRequires
2079 * Tue Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2080 - New upstream version
2081 - Changes to support 5.0.1
2083 * Tue Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2084 - New upstream version
2085 - Changes to support 4.9.0
2086 - Added support for Java/GenericJMX plugin
2088 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2089 - New upstream version
2090 - Changes to support 4.3.1
2091 - Added More Prereqs to support more plugins
2092 - Added support for perl plugin
2094 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2095 - New upstream version
2097 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2098 - New major releas
2099 - Changes to support 4.0.5
2101 * Wed Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2102 - fixed spec file to build correctly on fedora core
2103 - added improved init.d script to work with chkconfig
2104 - added %%post and %%postun to call chkconfig automatically
2106 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2107 - New upstream version
2109 * Tue Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2110 - New upstream version
2112 * Tue Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2113 - New upstream version
2115 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2116 - New upstream version
2118 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2119 - New upstream version
2121 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2122 - New upstream version
2124 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2125 - New upstream version
2126 - Added the `apache' package.
2128 * Thu Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2129 - New upstream version
2131 * Thu Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2132 - New upstream version
2134 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2135 - New upstream version
2137 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2138 - Include `tape.so' so the build doesn't terminate because of missing files..
2139 - New upstream version
2141 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2142 - New upstream version
2144 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2145 - New upstream version
2146 - Removed the extra `hddtemp' package
2148 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2149 - New upstream version
2151 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2152 - New upstream version
2154 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2155 - New upstream version
2156 - Added config file, `collectd.conf(5)', `df.so'
2157 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2159 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2160 - New upstream version
2162 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2163 - New upstream version
2165 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2166 - New upstream version
2168 * Tue Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2169 - New upstream version
2170 - Added statement to remove the `*.la' files. This fixes a problem when
2171   `Unpackaged files terminate build' is in effect.
2172 - Added `processes.so*' to the main package
2174 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2175 - New upstream version
2176 - Added package `collectd-hddtemp'
2178 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2179 - New upstream version
2180 - Split the package into `collectd' and `collectd-sensors'
2182 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2183 - New upstream version
2185 * Mon Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2186 - New upstream version
2188 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2189 - New upstream version
2191 * Sun Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2192 - New upstream version
2194 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2195 - New upstream version
2197 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2198 - New upstream version
2200 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2201 - New upstream version
2203 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2204 - New upstream version
2206 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2207 - Built on RedHat 7.3