[packages] collectd: fix handling of plugins with '_' in their name, add explicit...
[openwrt/svn-archive/archive.git] / utils / collectd / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=collectd
11 PKG_VERSION:=4.9.1
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://collectd.org/files/
16 PKG_MD5SUM:=5753496651c8c84afaea1fe290876bfc
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20
21 COLLECTD_PLUGINS_DISABLED:= \
22 apple_sensors \
23 battery \
24 cpufreq \
25 curl_json \
26 entropy \
27 genericjmx \
28 gmond \
29 hddtemp \
30 ipmi \
31 ipvs \
32 java \
33 libvirt \
34 mbmon \
35 memcachec \
36 memcached \
37 monitorus \
38 multimeter \
39 netapp \
40 nfs \
41 notify_desktop \
42 notify_email \
43 openvz \
44 oracle \
45 perl \
46 python \
47 routeros \
48 rrdcached \
49 serial \
50 swap \
51 tape \
52 tokyotyrant \
53 uuid \
54 vserver \
55 xmms \
56 zfs_arc \
57
58 COLLECTD_PLUGINS_SELECTED:= \
59 apache \
60 apcups \
61 ascent \
62 bind \
63 conntrack \
64 contextswitch \
65 cpu \
66 csv \
67 curl \
68 dbi \
69 df \
70 disk \
71 dns \
72 email \
73 exec \
74 filecount \
75 fscache \
76 interface \
77 iptables \
78 irq \
79 load \
80 logfile \
81 madwifi \
82 memory \
83 mysql \
84 netlink \
85 network \
86 nginx \
87 ntpd \
88 nut \
89 olsrd \
90 onewire \
91 openvpn \
92 ping \
93 postgresql \
94 powerdns \
95 processes \
96 protocols \
97 rrdtool \
98 sensors \
99 snmp \
100 syslog \
101 tail \
102 table \
103 ted \
104 tcpconns \
105 teamspeak2 \
106 thermal \
107 unixsock \
108 uptime \
109 users \
110 vmem \
111 wireless \
112 write_http \
113
114 PKG_CONFIG_DEPENDS:= \
115 $(patsubst %,CONFIG_PACKAGE_collectd-mod-%,$(subst _,-,$(COLLECTD_PLUGINS_SELECTED))) \
116
117 include $(INCLUDE_DIR)/package.mk
118 include $(INCLUDE_DIR)/kernel.mk
119
120 define Package/collectd/Default
121 SECTION:=utils
122 CATEGORY:=Utilities
123 TITLE:=Lightweight system statistics collection daemon
124 URL:=http://verplant.org/collectd/
125 endef
126
127 define Package/collectd
128 $(call Package/collectd/Default)
129 DEPENDS:= +libpthread +zlib
130 MENU:=1
131 endef
132
133 define Package/collectd/description
134 collectd is a small daemon which collects system information periodically
135 and provides mechanismns to store the values in a variety of ways.
136 endef
137
138 # common configure args
139 CONFIGURE_ARGS+= \
140 --disable-debug \
141 --enable-daemon \
142 --enable-getifaddrs \
143 --with-nan-emulation \
144 --with-fp-layout=nothing
145
146 CONFIGURE_VARS+= \
147 CFLAGS="$$$$CFLAGS $(FPIC)" \
148 LDFLAGS="$$$$LDFLAGS -lm -lz" \
149 KERNEL_DIR="$(LINUX_DIR)" \
150
151 CONFIGURE_PLUGIN= \
152 $(foreach m, $(1), \
153 $(if $(CONFIG_PACKAGE_collectd-mod-$(subst _,-,$(m))),--enable-$(m),--disable-$(m)) \
154 )
155
156 CONFIGURE_ARGS+= \
157 $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_SELECTED)) \
158 $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_DISABLED)) \
159
160 # exception: mod-ascent needs libxml2
161 ifneq ($(CONFIG_PACKAGE_collectd-mod-ascent),)
162 CONFIGURE_VARS+= \
163 CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/libxml2"
164 endif
165
166 ifneq ($(CONFIG_PACKAGE_collectd-mod-mysql),)
167 CONFIGURE_ARGS+= --with-libmysql="$(STAGING_DIR)/usr/"
168 endif
169
170 # exception: mod-netlink needs libnetlink from iproute
171 ifneq ($(CONFIG_PACKAGE_collectd-mod-netlink),)
172 CONFIGURE_ARGS+= --with-libnetlink="$(STAGING_DIR)/usr"
173 endif
174
175 # exception: mod-onewire needs libow-capi
176 ifneq ($(CONFIG_PACKAGE_collectd-mod-onewire),)
177 CONFIGURE_ARGS+= --with-libowcapi="$(STAGING_DIR)/usr"
178 endif
179
180 # exception: mod-rrdtool needs rrdtool-1.0.x
181 ifneq ($(CONFIG_PACKAGE_collectd-mod-rrdtool),)
182 CONFIGURE_ARGS+= --with-librrd="$(STAGING_DIR)/usr/lib/rrdtool-1.0"
183 endif
184
185 define Package/collectd/conffiles
186 /etc/collectd.conf
187 endef
188
189 define Package/collectd/install
190 $(INSTALL_DIR) $(1)/usr/sbin
191 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/collectd $(1)/usr/sbin/
192 $(INSTALL_DIR) $(1)/usr/share/collectd
193 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/collectd/types.db $(1)/usr/share/collectd/
194 $(INSTALL_DIR) $(1)/etc
195 $(INSTALL_CONF) ./files/collectd.conf $(1)/etc/
196 $(INSTALL_DIR) $(1)/etc/init.d
197 $(INSTALL_BIN) ./files/collectd.init $(1)/etc/init.d/collectd
198 endef
199
200 # 1: plugin name
201 # 2: plugin title/description
202 # 3: files
203 # 4: extra dependency
204 define BuildPlugin
205
206 PKG_CONFIG_DEPENDS+= CONFIG_PACKAGE_collectd-mod-$(1)
207
208 define Package/collectd-mod-$(1)
209 $$(call Package/collectd/Default)
210 TITLE:=$(2) plugin
211 DEPENDS:= collectd $(4)
212 endef
213
214 define Package/collectd-mod-$(1)/install
215 $(INSTALL_DIR) $$(1)/usr/lib/collectd
216 for m in $(3); do \
217 $(CP) \
218 $(PKG_INSTALL_DIR)/usr/lib/collectd/$$$$$$$${m}.so \
219 $$(1)/usr/lib/collectd/ ; \
220 done
221 endef
222
223 $$(eval $$(call BuildPackage,collectd-mod-$(1)))
224
225 endef
226
227 $(eval $(call BuildPackage,collectd))
228
229 #$(eval $(call BuildPlugin,NAME,DESCRIPTION,FILES,DEPENDENCIES))
230 $(eval $(call BuildPlugin,apache,apache status input,apache,+PACKAGE_collectd-mod-apache:libcurl))
231 $(eval $(call BuildPlugin,apcups,apcups status input,apcups,))
232 $(eval $(call BuildPlugin,ascent,ascent status input,ascent,+PACKAGE_collectd-mod-ascent:libcurl +PACKAGE_collectd-mod-ascent:libxml2))
233 $(eval $(call BuildPlugin,bind,BIND server/zone input,bind,+PACKAGE_collectd-mod-bind:libcurl +PACKAGE_collectd-mod-bind:libxml2))
234 $(eval $(call BuildPlugin,conntrack,connection tracking table size input,conntrack,))
235 $(eval $(call BuildPlugin,contextswitch,context switch input,contextswitch,))
236 $(eval $(call BuildPlugin,cpu,CPU input,cpu,))
237 $(eval $(call BuildPlugin,csv,CSV output,csv,))
238 $(eval $(call BuildPlugin,curl,cURL input,curl,+PACKAGE_collectd-mod-curl:libcurl))
239 $(eval $(call BuildPlugin,dbi,relational database input,dbi,+PACKAGE_collectd-mod-dbi:libdbi))
240 $(eval $(call BuildPlugin,df,disk space input,df,))
241 $(eval $(call BuildPlugin,disk,disk usage/timing input,disk,))
242 $(eval $(call BuildPlugin,dns,DNS traffic input,dns,+PACKAGE_collectd-mod-dns:libpcap))
243 $(eval $(call BuildPlugin,email,email output,email,))
244 $(eval $(call BuildPlugin,exec,process exec input,exec,))
245 $(eval $(call BuildPlugin,filecount,file count input,filecount,))
246 $(eval $(call BuildPlugin,fscache,file-system based caching framework input,fscache,))
247 $(eval $(call BuildPlugin,interface,network interfaces input,interface,))
248 $(eval $(call BuildPlugin,iptables,iptables status input,iptables,+PACKAGE_collectd-mod-iptables:iptables @(!LINUX_2_4||BROKEN)))
249 $(eval $(call BuildPlugin,irq,interrupt usage input,irq,))
250 $(eval $(call BuildPlugin,load,system load input,load,))
251 $(eval $(call BuildPlugin,logfile,log files output,logfile,))
252 $(eval $(call BuildPlugin,madwifi,MadWifi status input,madwifi,))
253 $(eval $(call BuildPlugin,mysql,MySQL status input,mysql,+PACKAGE_collectd-mod-mysql:libmysqlclient))
254 $(eval $(call BuildPlugin,memory,physical memory usage input,memory,))
255 $(eval $(call BuildPlugin,netlink,netlink input,netlink,+PACKAGE_collectd-mod-netlink:ip @(!LINUX_2_4||BROKEN)))
256 $(eval $(call BuildPlugin,network,network input/output,network))
257 $(eval $(call BuildPlugin,nginx,nginx status input,nginx,+PACKAGE_collectd-mod-nginx:libcurl))
258 $(eval $(call BuildPlugin,ntpd,NTP daemon status input,ntpd,))
259 $(eval $(call BuildPlugin,nut,UPS monitoring input,nut,@BROKEN))
260 $(eval $(call BuildPlugin,olsrd,OLSRd status input,olsrd,))
261 $(eval $(call BuildPlugin,onewire,onewire sensor input,onewire,+PACKAGE_collectd-mod-onewire:libow-capi @BROKEN))
262 $(eval $(call BuildPlugin,openvpn,OpenVPN traffic/compression input,openvpn,))
263 $(eval $(call BuildPlugin,ping,ping status input,ping,+PACKAGE_collectd-mod-ping:liboping))
264 $(eval $(call BuildPlugin,postgresql,PostgreSQL status input,postgresql,+PACKAGE_collectd-mod-postgresql:libpq))
265 $(eval $(call BuildPlugin,powerdns,PowerDNS server status input,powerdns,))
266 $(eval $(call BuildPlugin,processes,process status input,processes,))
267 $(eval $(call BuildPlugin,protocols,network protocols input,protocols,))
268 $(eval $(call BuildPlugin,rrdtool,RRDtool output,rrdtool,+PACKAGE_collectd-mod-rrdtool:librrd1))
269 $(eval $(call BuildPlugin,sensors,lm_sensors input,sensors,+PACKAGE_collectd-mod-sensors:libsensors @BROKEN))
270 $(eval $(call BuildPlugin,snmp,SNMP input,snmp,+PACKAGE_collectd-mod-snmp:libnetsnmp))
271 $(eval $(call BuildPlugin,syslog,syslog output,syslog,))
272 $(eval $(call BuildPlugin,tail,tail input,tail,))
273 $(eval $(call BuildPlugin,table,table-like structured file input,table,))
274 $(eval $(call BuildPlugin,teamspeak2,TeamSpeak2 input,teamspeak2,))
275 $(eval $(call BuildPlugin,ted,The Energy Detective input,ted,))
276 $(eval $(call BuildPlugin,tcpconns,TCP connection tracking input,tcpconns,))
277 $(eval $(call BuildPlugin,thermal,system temperatures input,thermal,))
278 $(eval $(call BuildPlugin,unixsock,unix socket output,unixsock,))
279 $(eval $(call BuildPlugin,uptime,uptime status input,uptime,))
280 $(eval $(call BuildPlugin,users,user logged in status input,users,))
281 $(eval $(call BuildPlugin,vmem,virtual memory usage input,vmem,))
282 $(eval $(call BuildPlugin,wireless,wireless status input,wireless,))
283 $(eval $(call BuildPlugin,write-http,HTTP POST output,write_http,+PACKAGE_collectd-mod-write-http:libcurl))