1 #!/usr/bin/make -f
2 # debian/rules for collectd
3 #
4 # Written by Sebastian Harl <sh@tokkee.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 CPPFLAGS = -I$(CURDIR)/debian/include
16 CFLAGS = -Wall -g
18 # There is no way to tell lt_dlopen() to use the RTLD_GLOBAL flag which is
19 # however required by the perl plugin (which would otherwise be unable to find
20 # symbols defined in libperl when loading perl modules that require such
21 # symbols). This is a workaround for this issue.
22 CPPFLAGS += -DLT_LAZY_OR_NOW='RTLD_LAZY|RTLD_GLOBAL'
24 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
25 CFLAGS += -O0
26 else
27 CFLAGS += -O2
28 endif
30 include /usr/share/dpatch/dpatch.make
32 confflags = --host=$(DEB_HOST_GNU_TYPE) \
33 --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \
34 --mandir=\$${prefix}/share/man \
35 --localstatedir=/var --sysconfdir=/etc \
36 --with-perl-bindings="INSTALLDIRS=vendor" \
37 --disable-onewire \
38 --disable-xmms \
39 --without-libstatgrab
41 # These plugins do not provide any functionality under Linux.
42 confflags += --disable-apple_sensors --disable-tape
44 # The static library netstat cannot be linked into shared objects on some
45 # architectures (see bugs #358637 and #419684 for more details).
46 ifneq (,$(findstring $(DEB_BUILD_ARCH),alpha amd64 hppa ia64 ppc64))
47 confflags += --disable-netlink
48 endif
50 # libvirt is only available on amd64, i386 and powerpc.
51 ifeq (,$(findstring $(DEB_BUILD_ARCH),amd64 i386 powerpc))
52 confflags += --disable-libvirt
53 endif
55 config.status: configure $(DPATCH_STAMPFN)
56 dh_testdir
57 CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" ./configure $(confflags)
59 build: build-stamp
61 build-stamp: config.status
62 dh_testdir
64 $(MAKE)
65 perl ./debian/bin/check_plugins.pl
67 touch build-stamp
69 clean: unpatch
70 dh_testdir
71 dh_testroot
72 rm -f build-stamp
74 [ ! -f Makefile ] || $(MAKE) distclean
76 rm -f debian/README.Debian.plugins
78 dh_clean
79 debconf-updatepo
81 install-indep:
82 dh_testdir
83 dh_testroot
84 dh_clean -k
85 dh_installdirs -i
87 include_dir=debian/collectd-dev/usr/include/collectd/ \
88 && mkdir -p $$include_dir/liboconfig \
89 && cp src/*.h $$include_dir \
90 && cp src/liboconfig/oconfig.h $$include_dir/liboconfig
92 install-arch: build
93 dh_testdir
94 dh_testroot
95 dh_clean -k
96 dh_installdirs -a
98 $(MAKE) install DESTDIR=$(CURDIR)/debian/collectd
100 rm -rf debian/collectd/usr/include/
101 rm -f debian/collectd/usr/lib/collectd/*.la
103 rm -f debian/collectd/etc/collectd.conf
104 install -D -m 0644 debian/collectd.conf \
105 debian/collectd/etc/collectd/collectd.conf
106 install -m 0644 debian/collection.conf \
107 debian/collectd/etc/collectd/collection.conf
108 install -m 0644 debian/thresholds.conf \
109 debian/collectd/etc/collectd/thresholds.conf
111 mkdir -p debian/collectd/usr/lib/collectd/utils/
112 for UTIL in rrd_filter.px migrate-3-4.px; do \
113 cp contrib/$$UTIL debian/collectd/usr/lib/collectd/utils/; \
114 done
116 perl ./debian/bin/gen_plugin_deps.pl
118 mkdir -p debian/collectd/usr/share/lintian/overrides/
119 cp debian/collectd.overrides \
120 debian/collectd/usr/share/lintian/overrides/collectd
122 binary-indep: install-indep
123 dh_testdir
124 dh_testroot
125 dh_installchangelogs -i ChangeLog
126 dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
127 dh_installexamples -i contrib/examples/myplugin.c \
128 contrib/examples/MyPlugin.pm
129 dh_compress -i -Xexamples/
130 dh_fixperms -i
131 dh_installdeb -i
132 dh_gencontrol -i
133 dh_md5sums -i
134 dh_builddeb -i
136 binary-arch: build install-arch
137 dh_testdir
138 dh_testroot
139 dh_installchangelogs -a ChangeLog
140 dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
141 dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
142 dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
143 contrib/collection3/ \
144 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
145 contrib/exec-nagios.conf contrib/exec-nagios.px \
146 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
147 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
148 contrib/snmp-probe-host.px
149 dh_installdebconf -a
150 dh_installinit -a -- defaults 95
151 dh_link -a
152 dh_strip -a --dbg-package=collectd-dbg
153 dh_compress -a -Xexamples/
154 dh_fixperms -a
155 dh_installdeb -a
156 dpkg-shlibdeps -Tdebian/collectd.substvars \
157 -dDepends debian/collectd/usr/bin/* debian/collectd/usr/sbin/* \
158 debian/collectd/usr/lib/collectd/rrdtool.so \
159 -dRecommends debian/collectd/usr/lib/collectd/*.so
160 dh_gencontrol -a
161 dh_md5sums -a
162 dh_builddeb -a
164 binary: binary-arch binary-indep
165 .PHONY: build clean binary-indep binary-arch binary install-indep install-arch