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