Code

Merged branch 'nmu5.4.1-3.1'.
[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 -Wno-error=deprecated-declarations
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 # A PostgreSQL header redefines CACHE_LINE_SIZE on FreeBSD.
34 # Cf. https://bugs.debian.org/760719 and https://bugs.debian.org/763098
35 ifeq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
36         CPPFLAGS += -Wp,-w
37 endif
39 LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
41 # The archdir map has been copied from openjdk-6's debian/rules.
42 JAVA_ARCHDIR = $(shell /usr/share/javahelper/java-arch.sh $(DEB_BUILD_ARCH))
43 ifeq (,$(JAVA_ARCHDIR))
44         JAVA_ARCHDIR = $(DEB_BUILD_ARCH)
45 endif
46 JAVA_HOME = /usr/lib/jvm/default-java
47 JAVA_LIBDIR = $(JAVA_HOME)/jre/lib/$(JAVA_ARCHDIR)/server
49 JAVAC = $(JAVA_HOME)/bin/javac
50 JAR = $(JAVA_HOME)/bin/jar
51 JAVA_CPPFLAGS = -I$(JAVA_HOME)/include
52 JAVA_LDFLAGS = -L$(JAVA_LIBDIR) -Wl,-rpath -Wl,$(JAVA_LIBDIR)
54 include /usr/share/dpatch/dpatch.make
56 confflags = --host=$(DEB_HOST_GNU_TYPE) \
57                         --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \
58                         --mandir=\$${prefix}/share/man \
59                         --localstatedir=/var --sysconfdir=/etc \
60                         --with-perl-bindings="INSTALLDIRS=vendor INSTALL_BASE=" \
61                         --without-libstatgrab \
62                         --without-included-ltdl \
63                         --disable-static \
64                         --enable-all-plugins
66 # These plugins do not provide any functionality under Linux.
67 # MacOS only (requires IO Kit):
68 confflags += --disable-apple_sensors
69 # AIX only (requires perfstat):
70 confflags += --disable-lpar
71 # Solaris only (requires devinfo and kstat)
72 confflags += --disable-tape
74 # libaquaero5 is required for the aquaero plugin
75 confflags += --disable-aquaero
77 # libmic is required for the mic plugin
78 confflags += --disable-mic
80 # libnetapp is required for the netapp plugin.
81 confflags += --disable-netapp
83 # libclntsh is required for the oracle plugin.
84 confflags += --disable-oracle
86 # libcredis is required for the *redis plugins.
87 confflags += --disable-redis --disable-write_redis
89 # librouteros is required for the routeros plugin.
90 confflags += --disable-routeros
92 # libsigrok >= 0.2.0 is required for the sigrok plugin, should arrive in unstable soon
93 confflags += --disable-sigrok
95 # varnish does not currently work with varnish4
96 # (c.f. https://bugs.debian.org/745902)
97 confflags += --disable-varnish
99 # libmongoc is required for the write_mongodb plugin.
100 confflags += --disable-write_mongodb
102 # xmms1 is required for the xmms plugin.
103 confflags += --disable-xmms
105 # libkstat is required for the xfs_arc plugin.
106 confflags += --disable-zfs-arc
108 # These plugins are Linux-specific.
109 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
110         confflags += \
111                 --disable-cgroups \
112                 --disable-ethstat \
113                 --disable-iptables \
114                 --disable-ipvs \
115                 --disable-lvm \
116                 --disable-madwifi \
117                 --disable-md \
118                 --disable-netlink \
119                 --disable-numa \
120                 --disable-sensors \
121                 --disable-vserver
122 endif
124 # This plugin is FreeBSD-specific.
125 ifeq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
126         confflags += \
127                 --disable-pf
128 endif
130 # These plugins have not been ported to FreeBSD yet.
131 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
132         # Work-around an incomplete check for kvm functionality
133         CPPFLAGS  += -DHAVE_STRUCT_KINFO_PROC_FREEBSD
134         confflags += --enable-processes=force
136         confflags += \
137                 --disable-battery \
138                 --disable-conntrack \
139                 --disable-contextswitch \
140                 --disable-cpufreq \
141                 --disable-disk \
142                 --disable-entropy \
143                 --disable-fscache \
144                 --disable-irq \
145                 --disable-nfs \
146                 --disable-protocols \
147                 --disable-serial \
148                 --disable-thermal \
149                 --disable-vmem \
150                 --disable-wireless
151 endif
153 # Build-dependencies of these plugins are (not yet) available for kfreebsd.
154 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
155         confflags += \
156                 --disable-gmond \
157                 --disable-libvirt \
158                 --disable-tokyotyrant \
159                 --disable-java
160 endif
162 # The hppa buildds currently do not keep up with Java related stuff, thus
163 # prevending testing transitions.
164 ifneq (,$(filter hppa, $(DEB_BUILD_ARCH)))
165         confflags += --disable-java
166 endif
168 config.status: configure $(DPATCH_STAMPFN)
169         dh_testdir
170         
171         ( cd debian/patches/; for patch in *; do \
172                 if test "$$patch" != "00list"; then \
173                         grep "$$patch" 00list > /dev/null \
174                                 || ( echo "$$patch not enabled\!"; exit 1 ); \
175                 fi; done )
176         
177         # This is a work-around for #474087 (broken openipmi .pc files).
178         mkdir debian/pkgconfig
179         sed -re 's/^(Requires:.*) pthread(.*)$$/\1\2/' \
180                 /usr/lib/pkgconfig/OpenIPMIpthread.pc \
181                 > debian/pkgconfig/OpenIPMIpthread.pc
182         
183         PKG_CONFIG_PATH="$(CURDIR)/debian/pkgconfig:$$PKG_CONFIG_PATH" \
184         ./configure $(confflags) CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
185                 JAVAC="$(JAVAC)" JAR="$(JAR)" JAVA_CPPFLAGS="$(JAVA_CPPFLAGS)" \
186                 JAVA_LDFLAGS="$(JAVA_LDFLAGS)" \
187                 || ( status=$$?; cat config.log; exit $$status )
189 build: build-arch build-indep
190 build-arch: build-stamp
191 build-indep: build-stamp
193 build-stamp: config.status
194         dh_testdir
195         
196         $(MAKE)
197         perl ./debian/bin/check_plugins.pl
198         
199         touch build-stamp
201 clean: unpatch
202         dh_testdir
203         dh_testroot
204         rm -f build-stamp
205         
206         [ ! -f Makefile ] || $(MAKE) distclean
207         
208         rm -f debian/README.Debian.plugins
209         rm -f src/*.1 src/*.5
210         
211         rm -rf debian/pkgconfig
212         
213         dh_clean
214         debconf-updatepo
216 install-indep:
217         dh_testdir
218         dh_testroot
219         dh_clean -k
220         dh_installdirs -i
221         dh_install -i
222         
223         # update include path for collectd header files
224         sed -r -i -e 's/include "(.*)"/include "collectd\/core\/\1"/' \
225                 $(CURDIR)/debian/collectd-dev/usr/include/collectd/core/*
226         sed -r -i -e 's/"collectd\/core\/(liboconfig\/.*)"/"collectd\/\1"/' \
227                 $(CURDIR)/debian/collectd-dev/usr/include/collectd/core/*
229 install-arch: build
230         dh_testdir
231         dh_testroot
232         dh_clean -k
233         dh_installdirs -a
234         
235         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
236         
237         rm -f debian/tmp/usr/lib/collectd/*.la
238         rm -f debian/tmp/usr/lib/libcollectdclient.la
239         rm -f debian/tmp/etc/collectd.conf
240         
241         dh_install -a --sourcedir=$(CURDIR)/debian/tmp --fail-missing
242         
243         perl ./debian/bin/gen_plugin_deps.pl
244         
245         mkdir -p debian/collectd-core/usr/share/lintian/overrides/
246         cp debian/collectd-core.overrides \
247                 debian/collectd-core/usr/share/lintian/overrides/collectd-core
249 binary-indep: install-indep
250         dh_testdir
251         dh_testroot
252         dh_installchangelogs -i ChangeLog
253         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
254         dh_installexamples -i contrib/examples/myplugin.c \
255                 contrib/examples/MyPlugin.pm
256         dh_compress -i -Xexamples/
257         dh_fixperms -i
258         dh_installdeb -i
259         dh_gencontrol -i
260         dh_md5sums -i
261         dh_builddeb -i
263 binary-arch: build install-arch
264         dh_testdir
265         dh_testroot
266         dh_installchangelogs -a ChangeLog
267         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
268         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
269         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
270                 contrib/collection3/ contrib/php-collection/ \
271                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
272                 contrib/exec-nagios.conf contrib/exec-nagios.px contrib/exec-ksm.sh \
273                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
274                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
275                 contrib/collectd_network.py contrib/collectd_unixsock.py \
276                 contrib/snmp-probe-host.px contrib/GenericJMX.conf \
277                 contrib/postgresql \
278                 debian/collectd.conf debian/filters.conf debian/thresholds.conf
279         # some upstream tarballs have been built inside a dirty working dir
280         ( cd debian/collectd-core/ \
281                 && cd usr/share/doc/collectd-core/examples/collection3/ \
282                 && rm -f bin/foo bin/test_config.px etc/collection4.conf \
283                 && rm -f lib/Collectd/Graph.pm lib/Collectd/Graph/Data.pm \
284                 && rm -f lib/Collectd/Graph/File.pm lib/Collectd/Graph/Filter.pm \
285                 && rm -f lib/Collectd/Graph/MetaData.pm )
286         dh_installdebconf -a
287         dh_installinit -pcollectd-core --name=collectd -- defaults 95
288         dh_link -a
289         dh_strip -a --dbg-package=collectd-dbg
290         dh_compress -a -Xexamples/
291         dh_fixperms -a
292         dh_makeshlibs -a
293         dh_installdeb -a
294         dh_shlibdeps -a -Ncollectd-core -Ncollectd
295         dpkg-shlibdeps -Tdebian/collectd.substvars \
296                 -dDepends debian/collectd-core/usr/lib/collectd/rrdtool.so
297         dpkg-shlibdeps -Tdebian/collectd-core.substvars \
298                 -dDepends debian/collectd-core/usr/sbin/* \
299                 -dSuggests debian/collectd-core/usr/lib/collectd/*.so
300         grep shlibs:Suggests debian/collectd-core.substvars \
301                 | sed -e 's/shlibs:Suggests/shlibs:Recommends/' \
302                 >> debian/collectd.substvars
303         dh_gencontrol -a
304         dh_md5sums -a
305         dh_builddeb -a
307 binary: binary-arch binary-indep
308 .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep install-arch