Code

Merged branch 'collectd-4'.
[pkg-collectd.git] / debian / rules
1 #! /usr/bin/make -f
2 # debian/rules for collectd
3 #
4 # Written by Sebastian Harl <tokkee@debian.org>.
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
9 # These are used for cross-compiling and for saving the configure script
10 # from having to guess our platform (since we know it already)
11 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
12 DEB_BUILD_ARCH      ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
13 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
15 export DEB_BUILD_MAINT_OPTIONS=hardening=+all
17 CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
18 CPPFLAGS += -I$(CURDIR)/debian/include
19 CFLAGS = $(shell dpkg-buildflags --get CFLAGS)
20 CFLAGS += -Wall
22 # There is no way to tell lt_dlopen() to use the RTLD_GLOBAL flag which is
23 # however required by the perl plugin (which would otherwise be unable to find
24 # symbols defined in libperl when loading perl modules that require such
25 # symbols). This is a workaround for this issue.
26 CPPFLAGS += -DLT_LAZY_OR_NOW='RTLD_LAZY|RTLD_GLOBAL'
28 # Upstream defaults to ${sysconfdir}/collectd.conf. Setting ${sysconfdir} to
29 # /etc/collectd would be wrong though.
30 CPPFLAGS += -UCONFIGFILE
31 CPPFLAGS += -DCONFIGFILE='\"/etc/collectd/collectd.conf\"'
33 LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
35 # The archdir map has been copied from openjdk-6's debian/rules.
36 JAVA_ARCHDIR = $(shell /usr/share/javahelper/java-arch.sh $(DEB_BUILD_ARCH))
37 ifeq (,$(JAVA_ARCHDIR))
38         JAVA_ARCHDIR = $(DEB_BUILD_ARCH)
39 endif
40 JAVA_HOME = /usr/lib/jvm/java-6-openjdk-$(DEB_BUILD_ARCH)
41 JAVA_LIBDIR = $(JAVA_HOME)/jre/lib/$(JAVA_ARCHDIR)/server
43 JAVAC = $(JAVA_HOME)/bin/javac
44 JAR = $(JAVA_HOME)/bin/jar
45 JAVA_CPPFLAGS = -I$(JAVA_HOME)/include
46 JAVA_LDFLAGS = -L$(JAVA_LIBDIR) -Wl,-rpath -Wl,$(JAVA_LIBDIR)
48 include /usr/share/dpatch/dpatch.make
50 confflags = --host=$(DEB_HOST_GNU_TYPE) \
51                         --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \
52                         --mandir=\$${prefix}/share/man \
53                         --localstatedir=/var --sysconfdir=/etc \
54                         --with-perl-bindings="INSTALLDIRS=vendor" \
55                         --without-libstatgrab \
56                         --without-included-ltdl \
57                         --disable-static \
58                         --enable-all-plugins
60 # These plugins do not provide any functionality under Linux.
61 # MacOS only (requires IO Kit):
62 confflags += --disable-apple_sensors
63 # AIX only (requires perfstat):
64 confflags += --disable-lpar
65 # Solaris only (requires devinfo and kstat)
66 confflags += --disable-tape
68 # libmodbus is required for the modbus plugin.
69 confflags += --disable-modbus
71 # libnetapp is required for the netapp plugin.
72 confflags += --disable-netapp
74 # libowcapi is required for the onewire plugin.
75 confflags += --disable-onewire
77 # libclntsh is required for the oracle plugin.
78 confflags += --disable-oracle
80 # libcredis is required for the *redis plugins.
81 confflags += --disable-redis --disable-write_redis
83 # librouteros is required for the routeros plugin.
84 confflags += --disable-routeros
86 # xmms1 is required for the xmms plugin.
87 confflags += --disable-xmms
89 # libkstat is required for the xfs_arc plugin.
90 confflags += --disable-zfs-arc
92 # The static library netstat cannot be linked into shared objects on some
93 # architectures (see bugs #358637, #419684 and #524593 for more details).
94 ifneq (,$(filter alpha amd64 hppa ia64 ppc64 mips mipsel, $(DEB_BUILD_ARCH)))
95         confflags += --disable-netlink
96 endif
98 # These plugins are Linux-specific.
99 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
100         confflags += \
101                 --disable-iptables \
102                 --disable-ipvs \
103                 --disable-madwifi \
104                 --disable-netlink \
105                 --disable-sensors \
106                 --disable-vserver
107 endif
109 # These plugins have not been ported to FreeBSD yet.
110 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
111         # Work-around an incomplete check for kvm functionality
112         CPPFLAGS  += -DHAVE_STRUCT_KINFO_PROC_FREEBSD
113         confflags += --enable-processes=force
115         confflags += \
116                 --disable-battery \
117                 --disable-conntrack \
118                 --disable-contextswitch \
119                 --disable-cpufreq \
120                 --disable-disk \
121                 --disable-entropy \
122                 --disable-fscache \
123                 --disable-irq \
124                 --disable-nfs \
125                 --disable-protocols \
126                 --disable-serial \
127                 --disable-thermal \
128                 --disable-vmem \
129                 --disable-wireless
130 endif
132 # Build-dependencies of these plugins are (not yet) available for kfreebsd.
133 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
134         confflags += \
135                 --disable-gmond \
136                 --disable-libvirt \
137                 --disable-tokyotyrant \
138                 --disable-java
139 endif
141 # The hppa buildds currently do not keep up with Java related stuff, thus
142 # prevending testing transitions.
143 ifneq (,$(filter hppa, $(DEB_BUILD_ARCH)))
144         confflags += --disable-java
145 endif
147 config.status: configure $(DPATCH_STAMPFN)
148         dh_testdir
149         
150         ( cd debian/patches/; for patch in *; do \
151                 if test "$$patch" != "00list"; then \
152                         grep "$$patch" 00list > /dev/null \
153                                 || ( echo "$$patch not enabled\!"; exit 1 ); \
154                 fi; done )
155         
156         # This is a work-around for #474087 (broken openipmi .pc files).
157         mkdir debian/pkgconfig
158         sed -re 's/^(Requires:.*) pthread(.*)$$/\1\2/' \
159                 /usr/lib/pkgconfig/OpenIPMIpthread.pc \
160                 > debian/pkgconfig/OpenIPMIpthread.pc
161         
162         PKG_CONFIG_PATH="$(CURDIR)/debian/pkgconfig:$$PKG_CONFIG_PATH" \
163         ./configure $(confflags) CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
164                 JAVAC="$(JAVAC)" JAR="$(JAR)" JAVA_CPPFLAGS="$(JAVA_CPPFLAGS)" \
165                 JAVA_LDFLAGS="$(JAVA_LDFLAGS)" \
166                 || ( status=$$?; cat config.log; exit $$status )
168 build: build-arch build-indep
169 build-arch: build-stamp
170 build-indep: build-stamp
172 build-stamp: config.status
173         dh_testdir
174         
175         $(MAKE)
176         perl ./debian/bin/check_plugins.pl
177         
178         touch build-stamp
180 clean: unpatch
181         dh_testdir
182         dh_testroot
183         rm -f build-stamp
184         
185         [ ! -f Makefile ] || $(MAKE) distclean
186         
187         rm -f debian/README.Debian.plugins
188         rm -f src/*.1 src/*.5
189         
190         rm -rf debian/pkgconfig
191         
192         dh_clean
193         debconf-updatepo
195 install-indep:
196         dh_testdir
197         dh_testroot
198         dh_clean -k
199         dh_installdirs -i
200         dh_install -i
202 install-arch: build
203         dh_testdir
204         dh_testroot
205         dh_clean -k
206         dh_installdirs -a
207         
208         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
209         
210         rm -f debian/tmp/usr/lib/collectd/*.la
211         rm -f debian/tmp/usr/lib/libcollectdclient.la
212         rm -f debian/tmp/etc/collectd.conf
213         
214         dh_install -a --sourcedir=$(CURDIR)/debian/tmp --fail-missing
215         
216         perl ./debian/bin/gen_plugin_deps.pl
217         
218         mkdir -p debian/collectd-core/usr/share/lintian/overrides/
219         cp debian/collectd-core.overrides \
220                 debian/collectd-core/usr/share/lintian/overrides/collectd-core
222 binary-indep: install-indep
223         dh_testdir
224         dh_testroot
225         dh_installchangelogs -i ChangeLog
226         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
227         dh_installexamples -i contrib/examples/myplugin.c \
228                 contrib/examples/MyPlugin.pm
229         dh_compress -i -Xexamples/
230         dh_fixperms -i
231         dh_installdeb -i
232         dh_gencontrol -i
233         dh_md5sums -i
234         dh_builddeb -i
236 binary-arch: build install-arch
237         dh_testdir
238         dh_testroot
239         dh_installchangelogs -a ChangeLog
240         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
241         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
242         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
243                 contrib/collection3/ contrib/php-collection/ \
244                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
245                 contrib/exec-nagios.conf contrib/exec-nagios.px \
246                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
247                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
248                 contrib/collectd_network.py contrib/collectd_unixsock.py \
249                 contrib/snmp-probe-host.px contrib/GenericJMX.conf \
250                 debian/collectd.conf debian/filters.conf debian/thresholds.conf
251         # some upstream tarballs have been built inside a dirty working dir
252         ( cd debian/collectd-core/ \
253                 && cd usr/share/doc/collectd-core/examples/collection3/ \
254                 && rm -f bin/foo bin/test_config.px etc/collection4.conf \
255                 && rm -f lib/Collectd/Graph.pm lib/Collectd/Graph/Data.pm \
256                 && rm -f lib/Collectd/Graph/File.pm lib/Collectd/Graph/Filter.pm \
257                 && rm -f lib/Collectd/Graph/MetaData.pm )
258         dh_installdebconf -a
259         dh_installinit -pcollectd-core --name=collectd -- defaults 95
260         dh_link -a
261         dh_strip -a --dbg-package=collectd-dbg
262         dh_compress -a -Xexamples/
263         dh_fixperms -a
264         dh_makeshlibs -a
265         dh_installdeb -a
266         dh_shlibdeps -a -Ncollectd-core -Ncollectd
267         dpkg-shlibdeps -Tdebian/collectd.substvars \
268                 -dDepends debian/collectd-core/usr/lib/collectd/rrdtool.so
269         dpkg-shlibdeps -Tdebian/collectd-core.substvars \
270                 -dDepends debian/collectd-core/usr/sbin/* \
271                 -dSuggests debian/collectd-core/usr/lib/collectd/*.so
272         grep shlibs:Suggests debian/collectd-core.substvars \
273                 | sed -e 's/shlibs:Suggests/shlibs:Recommends/' \
274                 >> debian/collectd.substvars
275         dh_gencontrol -a
276         dh_md5sums -a
277         dh_builddeb -a
279 binary: binary-arch binary-indep
280 .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep install-arch