Code

configure gbp's debian-branch
[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 ifneq (,$(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 confflags = --host=$(DEB_HOST_GNU_TYPE) \
55                         --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \
56                         --mandir=\$${prefix}/share/man \
57                         --localstatedir=/var --sysconfdir=/etc \
58                         --with-perl-bindings="INSTALLDIRS=vendor INSTALL_BASE=" \
59                         --without-libstatgrab \
60                         --without-included-ltdl \
61                         --disable-static \
62                         --disable-silent-rules \
63                         --enable-all-plugins
65 # These plugins do not provide any functionality under Linux.
66 # MacOS only (requires IO Kit):
67 confflags += --disable-apple_sensors
68 # AIX only (requires perfstat):
69 confflags += --disable-lpar
70 # Solaris only (requires devinfo and kstat)
71 confflags += --disable-tape
73 # libaquaero5 is required for the aquaero plugin
74 confflags += --disable-aquaero
76 # libmic is required for the mic plugin
77 confflags += --disable-mic
79 # libnetapp is required for the netapp plugin.
80 confflags += --disable-netapp
82 # libclntsh is required for the oracle plugin.
83 confflags += --disable-oracle
85 # librouteros is required for the routeros plugin.
86 confflags += --disable-routeros
88 # libsigrok >= 0.2.0 is required for the sigrok plugin
89 confflags += --disable-sigrok
91 # linux-libc-dev >= 3.13 is required for the turbostat plugin.
92 confflags += --disable-turbostat
94 # libmongoc is required for the write_mongodb plugin.
95 confflags += --disable-write_mongodb
97 # librdkafka is required for the write_kafka plugin.
98 confflags += --disable-write_kafka
100 # xmms1 is required for the xmms plugin.
101 confflags += --disable-xmms
103 # These plugins are Linux-specific.
104 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
105         confflags += \
106                 --disable-cgroups \
107                 --disable-ethstat \
108                 --disable-iptables \
109                 --disable-ipvs \
110                 --disable-lvm \
111                 --disable-madwifi \
112                 --disable-md \
113                 --disable-netlink \
114                 --disable-numa \
115                 --disable-sensors \
116                 --disable-vserver
117 endif
119 # This plugin is FreeBSD-specific.
120 ifeq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
121         confflags += \
122                 --disable-pf
123 endif
125 # These plugins have not been ported to FreeBSD yet.
126 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
127         # Work-around an incomplete check for kvm functionality
128         CPPFLAGS  += -DHAVE_STRUCT_KINFO_PROC_FREEBSD
129         confflags += --enable-processes=force
131         confflags += \
132                 --disable-battery \
133                 --disable-conntrack \
134                 --disable-contextswitch \
135                 --disable-cpufreq \
136                 --disable-disk \
137                 --disable-entropy \
138                 --disable-fscache \
139                 --disable-irq \
140                 --disable-nfs \
141                 --disable-protocols \
142                 --disable-serial \
143                 --disable-thermal \
144                 --disable-vmem \
145                 --disable-wireless
146 endif
148 # Build-dependencies of these plugins are (not yet) available for kfreebsd.
149 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
150         confflags += \
151                 --disable-gmond \
152                 --disable-virt \
153                 --disable-tokyotyrant \
154                 --disable-java
155 endif
157 # This plugin is Intel-hardware specific.
158 ifeq (,$(filter amd64 i386, $(DEB_BUILD_ARCH)))
159         confflags += \
160                 --disable-turbostat
161 endif
163 # libatasmart isn't available on these platforms.
164 ifneq (,$(filter hurd-i386 kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
165         confflags += --disable-smart
166 endif
168 # The hppa buildds currently do not keep up with Java related stuff, thus
169 # prevending testing transitions. sparc is also having trouble building the
170 # java plugin.
171 ifneq (,$(filter hppa sparc, $(DEB_BUILD_ARCH)))
172         confflags += --disable-java
173 endif
175 config.status: configure
176         dh_testdir
177         
178         # This is a work-around for #474087 (broken openipmi .pc files).
179         mkdir debian/pkgconfig
180         sed -re 's/^(Requires:.*) pthread(.*)$$/\1\2/' \
181                 /usr/lib/pkgconfig/OpenIPMIpthread.pc \
182                 > debian/pkgconfig/OpenIPMIpthread.pc
183         
184         PKG_CONFIG_PATH="$(CURDIR)/debian/pkgconfig:$$PKG_CONFIG_PATH" \
185         ./configure $(confflags) CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
186                 JAVAC="$(JAVAC)" JAR="$(JAR)" JAVA_CPPFLAGS="$(JAVA_CPPFLAGS)" \
187                 JAVA_LDFLAGS="$(JAVA_LDFLAGS)" \
188                 || ( status=$$?; cat config.log; exit $$status )
190 build: build-arch build-indep
191 build-arch: build-stamp
192 build-indep: build-stamp
194 build-stamp: config.status
195         dh_testdir
196         
197         $(MAKE)
198         perl ./debian/bin/check_plugins.pl
199         
200         touch build-stamp
202 clean:
203         dh_testdir
204         dh_testroot
205         rm -f build-stamp
206         
207         [ ! -f Makefile ] || $(MAKE) distclean
208         
209         rm -f debian/README.Debian.plugins
210         rm -f src/*.1 src/*.5
211         
212         rm -rf debian/pkgconfig
213         
214         dh_clean
215         debconf-updatepo
217 install-indep:
218         dh_testdir
219         dh_testroot
220         dh_prep
221         dh_installdirs -i
222         dh_install -i
223         
224         # update include path for collectd header files
225         (       set -e; \
226                 cd $(CURDIR)/debian/collectd-dev/usr/include/collectd/; \
227                 for lib in $$(find . -type f -name '*.h'); do \
228                         libname=$$(basename $$lib); \
229                         fullpath=$$(echo $$lib | sed -r -e 's,^\./,collectd/,'); \
230                         for dir in $$(find . -mindepth 1 -type d); do \
231                                 sed -r -i -e "s,(include\s+)\".*$$libname\",\1\"$$fullpath\"," $$dir/*.h; \
232                         done; \
233                 done )
235 install-arch: build
236         dh_testdir
237         dh_testroot
238         dh_prep
239         dh_installdirs -a
240         
241         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
242         
243         rm -f debian/tmp/usr/lib/collectd/*.la
244         rm -f debian/tmp/usr/lib/libcollectdclient.la
245         rm -f debian/tmp/etc/collectd.conf
246         
247         dh_install -a --sourcedir=$(CURDIR)/debian/tmp --fail-missing
248         
249         perl ./debian/bin/gen_plugin_deps.pl
250         
251         mkdir -p debian/collectd-core/usr/share/lintian/overrides/
252         cp debian/collectd-core.overrides \
253                 debian/collectd-core/usr/share/lintian/overrides/collectd-core
255 binary-indep: install-indep
256         dh_testdir
257         dh_testroot
258         dh_installchangelogs -i ChangeLog
259         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
260         dh_installexamples -i contrib/examples/myplugin.c \
261                 contrib/examples/MyPlugin.pm
262         dh_compress -i -Xexamples/
263         dh_fixperms -i
264         dh_installdeb -i
265         dh_gencontrol -i
266         dh_md5sums -i
267         dh_builddeb -i
269 binary-arch: build install-arch
270         dh_testdir
271         dh_testroot
272         dh_installchangelogs -a ChangeLog
273         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
274         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
275         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
276                 contrib/collection3/ contrib/php-collection/ \
277                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
278                 contrib/exec-nagios.conf contrib/exec-nagios.px contrib/exec-ksm.sh \
279                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
280                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
281                 contrib/collectd_network.py contrib/collectd_unixsock.py \
282                 contrib/snmp-probe-host.px contrib/GenericJMX.conf \
283                 contrib/postgresql \
284                 debian/collectd.conf debian/filters.conf debian/thresholds.conf
285         # some upstream tarballs have been built inside a dirty working dir
286         ( cd debian/collectd-core/ \
287                 && cd usr/share/doc/collectd-core/examples/collection3/ \
288                 && rm -f bin/foo bin/test_config.px etc/collection4.conf \
289                 && rm -f lib/Collectd/Graph.pm lib/Collectd/Graph/Data.pm \
290                 && rm -f lib/Collectd/Graph/File.pm lib/Collectd/Graph/Filter.pm \
291                 && rm -f lib/Collectd/Graph/MetaData.pm )
292         dh_installdebconf -a
293         dh_installinit -pcollectd-core --name=collectd -- defaults 95
294         dh_link -a
295         dh_strip -a --dbg-package=collectd-dbg
296         dh_compress -a -Xexamples/
297         dh_fixperms -a
298         dh_makeshlibs -a
299         dh_installdeb -a
300         dh_shlibdeps -a -Ncollectd-core -Ncollectd
301         dpkg-shlibdeps -Tdebian/collectd.substvars \
302                 -dDepends debian/collectd-core/usr/lib/collectd/rrdtool.so
303         dpkg-shlibdeps -Tdebian/collectd-core.substvars \
304                 -dDepends debian/collectd-core/usr/sbin/* \
305                 -dSuggests debian/collectd-core/usr/lib/collectd/*.so
306         grep shlibs:Suggests debian/collectd-core.substvars \
307                 | sed -e 's/shlibs:Suggests/shlibs:Recommends/' \
308                 >> debian/collectd.substvars
309         dh_gencontrol -a
310         dh_md5sums -a
311         dh_builddeb -a
313 binary: binary-arch binary-indep
314 .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep install-arch