Code

rules: make make's output more verbose
[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 # libmongoc is required for the write_mongodb plugin.
89 confflags += --disable-write_mongodb
91 # xmms1 is required for the xmms plugin.
92 confflags += --disable-xmms
94 # These plugins are Linux-specific.
95 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
96         confflags += \
97                 --disable-cgroups \
98                 --disable-ethstat \
99                 --disable-iptables \
100                 --disable-ipvs \
101                 --disable-lvm \
102                 --disable-madwifi \
103                 --disable-md \
104                 --disable-netlink \
105                 --disable-numa \
106                 --disable-sensors \
107                 --disable-vserver
108 endif
110 # This plugin is FreeBSD-specific.
111 ifeq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
112         confflags += \
113                 --disable-pf
114 endif
116 # These plugins have not been ported to FreeBSD yet.
117 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
118         # Work-around an incomplete check for kvm functionality
119         CPPFLAGS  += -DHAVE_STRUCT_KINFO_PROC_FREEBSD
120         confflags += --enable-processes=force
122         confflags += \
123                 --disable-battery \
124                 --disable-conntrack \
125                 --disable-contextswitch \
126                 --disable-cpufreq \
127                 --disable-disk \
128                 --disable-entropy \
129                 --disable-fscache \
130                 --disable-irq \
131                 --disable-nfs \
132                 --disable-protocols \
133                 --disable-serial \
134                 --disable-thermal \
135                 --disable-vmem \
136                 --disable-wireless
137 endif
139 # Build-dependencies of these plugins are (not yet) available for kfreebsd.
140 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
141         confflags += \
142                 --disable-gmond \
143                 --disable-virt \
144                 --disable-tokyotyrant \
145                 --disable-java
146 endif
148 # This plugin is Intel-hardware specific.
149 ifeq (,$(filter amd64 i386, $(DEB_BUILD_ARCH)))
150         confflags += \
151                 --disable-turbostat
152 endif
154 # The hppa buildds currently do not keep up with Java related stuff, thus
155 # prevending testing transitions. sparc is also having trouble building the
156 # java plugin.
157 ifneq (,$(filter hppa sparc, $(DEB_BUILD_ARCH)))
158         confflags += --disable-java
159 endif
161 config.status: configure
162         dh_testdir
163         
164         # This is a work-around for #474087 (broken openipmi .pc files).
165         mkdir debian/pkgconfig
166         sed -re 's/^(Requires:.*) pthread(.*)$$/\1\2/' \
167                 /usr/lib/pkgconfig/OpenIPMIpthread.pc \
168                 > debian/pkgconfig/OpenIPMIpthread.pc
169         
170         PKG_CONFIG_PATH="$(CURDIR)/debian/pkgconfig:$$PKG_CONFIG_PATH" \
171         ./configure $(confflags) CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
172                 JAVAC="$(JAVAC)" JAR="$(JAR)" JAVA_CPPFLAGS="$(JAVA_CPPFLAGS)" \
173                 JAVA_LDFLAGS="$(JAVA_LDFLAGS)" \
174                 || ( status=$$?; cat config.log; exit $$status )
176 build: build-arch build-indep
177 build-arch: build-stamp
178 build-indep: build-stamp
180 build-stamp: config.status
181         dh_testdir
182         
183         $(MAKE)
184         perl ./debian/bin/check_plugins.pl
185         
186         touch build-stamp
188 clean:
189         dh_testdir
190         dh_testroot
191         rm -f build-stamp
192         
193         [ ! -f Makefile ] || $(MAKE) distclean
194         
195         rm -f debian/README.Debian.plugins
196         rm -f src/*.1 src/*.5
197         
198         rm -rf debian/pkgconfig
199         
200         dh_clean
201         debconf-updatepo
203 install-indep:
204         dh_testdir
205         dh_testroot
206         dh_clean -k
207         dh_installdirs -i
208         dh_install -i
209         
210         # update include path for collectd header files
211         (       set -e; \
212                 cd $(CURDIR)/debian/collectd-dev/usr/include/collectd/; \
213                 for lib in $$(find . -type f -name '*.h'); do \
214                         libname=$$(basename $$lib); \
215                         fullpath=$$(echo $$lib | sed -r -e 's,^\./,collectd/,'); \
216                         for dir in $$(find . -mindepth 1 -type d); do \
217                                 sed -r -i -e "s,(include\s+)\".*$$libname\",\1\"$$fullpath\"," $$dir/*.h; \
218                         done; \
219                 done )
221 install-arch: build
222         dh_testdir
223         dh_testroot
224         dh_clean -k
225         dh_installdirs -a
226         
227         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
228         
229         rm -f debian/tmp/usr/lib/collectd/*.la
230         rm -f debian/tmp/usr/lib/libcollectdclient.la
231         rm -f debian/tmp/etc/collectd.conf
232         
233         dh_install -a --sourcedir=$(CURDIR)/debian/tmp --fail-missing
234         
235         perl ./debian/bin/gen_plugin_deps.pl
236         
237         mkdir -p debian/collectd-core/usr/share/lintian/overrides/
238         cp debian/collectd-core.overrides \
239                 debian/collectd-core/usr/share/lintian/overrides/collectd-core
241 binary-indep: install-indep
242         dh_testdir
243         dh_testroot
244         dh_installchangelogs -i ChangeLog
245         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
246         dh_installexamples -i contrib/examples/myplugin.c \
247                 contrib/examples/MyPlugin.pm
248         dh_compress -i -Xexamples/
249         dh_fixperms -i
250         dh_installdeb -i
251         dh_gencontrol -i
252         dh_md5sums -i
253         dh_builddeb -i
255 binary-arch: build install-arch
256         dh_testdir
257         dh_testroot
258         dh_installchangelogs -a ChangeLog
259         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
260         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
261         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
262                 contrib/collection3/ contrib/php-collection/ \
263                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
264                 contrib/exec-nagios.conf contrib/exec-nagios.px contrib/exec-ksm.sh \
265                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
266                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
267                 contrib/collectd_network.py contrib/collectd_unixsock.py \
268                 contrib/snmp-probe-host.px contrib/GenericJMX.conf \
269                 contrib/postgresql \
270                 debian/collectd.conf debian/filters.conf debian/thresholds.conf
271         # some upstream tarballs have been built inside a dirty working dir
272         ( cd debian/collectd-core/ \
273                 && cd usr/share/doc/collectd-core/examples/collection3/ \
274                 && rm -f bin/foo bin/test_config.px etc/collection4.conf \
275                 && rm -f lib/Collectd/Graph.pm lib/Collectd/Graph/Data.pm \
276                 && rm -f lib/Collectd/Graph/File.pm lib/Collectd/Graph/Filter.pm \
277                 && rm -f lib/Collectd/Graph/MetaData.pm )
278         dh_installdebconf -a
279         dh_systemd_enable -pcollectd-core --name=collectd collectd.service
280         dh_installinit -pcollectd-core --name=collectd -- defaults 95
281         dh_systemd_start
282         dh_link -a
283         dh_strip -a --dbg-package=collectd-dbg
284         dh_compress -a -Xexamples/
285         dh_fixperms -a
286         dh_makeshlibs -a
287         dh_installdeb -a
288         dh_shlibdeps -a -Ncollectd-core -Ncollectd
289         dpkg-shlibdeps -Tdebian/collectd.substvars \
290                 -dDepends debian/collectd-core/usr/lib/collectd/rrdtool.so
291         dpkg-shlibdeps -Tdebian/collectd-core.substvars \
292                 -dDepends debian/collectd-core/usr/sbin/* \
293                 -dSuggests debian/collectd-core/usr/lib/collectd/*.so
294         grep shlibs:Suggests debian/collectd-core.substvars \
295                 | sed -e 's/shlibs:Suggests/shlibs:Recommends/' \
296                 >> debian/collectd.substvars
297         dh_gencontrol -a
298         dh_md5sums -a
299         dh_builddeb -a
301 binary: binary-arch binary-indep
302 .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep install-arch