Code

Disable the 'java' plugin on sparc for now. It fails to build.
[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. sparc is also having trouble building the
164 # java plugin.
165 ifneq (,$(filter hppa sparc, $(DEB_BUILD_ARCH)))
166         confflags += --disable-java
167 endif
169 config.status: configure $(DPATCH_STAMPFN)
170         dh_testdir
171         
172         ( cd debian/patches/; for patch in *; do \
173                 if test "$$patch" != "00list"; then \
174                         grep "$$patch" 00list > /dev/null \
175                                 || ( echo "$$patch not enabled\!"; exit 1 ); \
176                 fi; done )
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: unpatch
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_clean -k
221         dh_installdirs -i
222         dh_install -i
223         
224         # update include path for collectd header files
225         sed -r -i -e 's/include "(.*)"/include "collectd\/core\/\1"/' \
226                 $(CURDIR)/debian/collectd-dev/usr/include/collectd/core/*
227         sed -r -i -e 's/"collectd\/core\/(liboconfig\/.*)"/"collectd\/\1"/' \
228                 $(CURDIR)/debian/collectd-dev/usr/include/collectd/core/*
230 install-arch: build
231         dh_testdir
232         dh_testroot
233         dh_clean -k
234         dh_installdirs -a
235         
236         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
237         
238         rm -f debian/tmp/usr/lib/collectd/*.la
239         rm -f debian/tmp/usr/lib/libcollectdclient.la
240         rm -f debian/tmp/etc/collectd.conf
241         
242         dh_install -a --sourcedir=$(CURDIR)/debian/tmp --fail-missing
243         
244         perl ./debian/bin/gen_plugin_deps.pl
245         
246         mkdir -p debian/collectd-core/usr/share/lintian/overrides/
247         cp debian/collectd-core.overrides \
248                 debian/collectd-core/usr/share/lintian/overrides/collectd-core
250 binary-indep: install-indep
251         dh_testdir
252         dh_testroot
253         dh_installchangelogs -i ChangeLog
254         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
255         dh_installexamples -i contrib/examples/myplugin.c \
256                 contrib/examples/MyPlugin.pm
257         dh_compress -i -Xexamples/
258         dh_fixperms -i
259         dh_installdeb -i
260         dh_gencontrol -i
261         dh_md5sums -i
262         dh_builddeb -i
264 binary-arch: build install-arch
265         dh_testdir
266         dh_testroot
267         dh_installchangelogs -a ChangeLog
268         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
269         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
270         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
271                 contrib/collection3/ contrib/php-collection/ \
272                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
273                 contrib/exec-nagios.conf contrib/exec-nagios.px contrib/exec-ksm.sh \
274                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
275                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
276                 contrib/collectd_network.py contrib/collectd_unixsock.py \
277                 contrib/snmp-probe-host.px contrib/GenericJMX.conf \
278                 contrib/postgresql \
279                 debian/collectd.conf debian/filters.conf debian/thresholds.conf
280         # some upstream tarballs have been built inside a dirty working dir
281         ( cd debian/collectd-core/ \
282                 && cd usr/share/doc/collectd-core/examples/collection3/ \
283                 && rm -f bin/foo bin/test_config.px etc/collection4.conf \
284                 && rm -f lib/Collectd/Graph.pm lib/Collectd/Graph/Data.pm \
285                 && rm -f lib/Collectd/Graph/File.pm lib/Collectd/Graph/Filter.pm \
286                 && rm -f lib/Collectd/Graph/MetaData.pm )
287         dh_installdebconf -a
288         dh_installinit -pcollectd-core --name=collectd -- defaults 95
289         dh_link -a
290         dh_strip -a --dbg-package=collectd-dbg
291         dh_compress -a -Xexamples/
292         dh_fixperms -a
293         dh_makeshlibs -a
294         dh_installdeb -a
295         dh_shlibdeps -a -Ncollectd-core -Ncollectd
296         dpkg-shlibdeps -Tdebian/collectd.substvars \
297                 -dDepends debian/collectd-core/usr/lib/collectd/rrdtool.so
298         dpkg-shlibdeps -Tdebian/collectd-core.substvars \
299                 -dDepends debian/collectd-core/usr/sbin/* \
300                 -dSuggests debian/collectd-core/usr/lib/collectd/*.so
301         grep shlibs:Suggests debian/collectd-core.substvars \
302                 | sed -e 's/shlibs:Suggests/shlibs:Recommends/' \
303                 >> debian/collectd.substvars
304         dh_gencontrol -a
305         dh_md5sums -a
306         dh_builddeb -a
308 binary: binary-arch binary-indep
309 .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep install-arch