Code

Don't link the ipmi plugin against libOpenIPMIutils and libOpenIPMI.
[pkg-collectd.git] / debian / rules
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-xmms \
38                         --without-libstatgrab
40 # These plugins do not provide any functionality under Linux.
41 confflags += --disable-apple_sensors --disable-tape
43 # The static libraries iptc, netstat and upsclient cannot be used on
44 # 64bit systems (see bugs #358637 and #419684 for more details).
45 ifneq (,$(findstring $(DEB_BUILD_ARCH),alpha amd64 hppa ia64 ppc64))
46         confflags += --disable-netlink --disable-nut
47 endif
49 # libvirt is only available on amd64, i386 and powerpc.
50 ifeq (,$(findstring $(DEB_BUILD_ARCH),amd64 i386 powerpc))
51         confflags += --disable-libvirt
52 endif
54 # Force the inclusion of the ipmi plugin and manually specify its
55 # dependencies to work around #474087 (broken openipmi .pc files).
56 BUILD_WITH_OPENIPMI_LIBS = -lOpenIPMIpthread
57 confflags += --enable-ipmi
59 config.status: configure $(DPATCH_STAMPFN)
60         dh_testdir
61         BUILD_WITH_OPENIPMI_LIBS="$(BUILD_WITH_OPENIPMI_LIBS)" \
62         CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" ./configure $(confflags)
64 build: build-stamp
66 build-stamp: config.status
67         dh_testdir
68         
69         $(MAKE)
70         perl ./debian/bin/check_plugins.pl
71         
72         touch build-stamp
74 clean: unpatch
75         dh_testdir
76         dh_testroot
77         rm -f build-stamp
78         
79         [ ! -f Makefile ] || $(MAKE) distclean
80         
81         rm -f debian/README.Debian.plugins
82         
83         dh_clean 
84         debconf-updatepo
86 install-indep:
87         dh_testdir
88         dh_testroot
89         dh_clean -k
90         dh_installdirs -i
91         
92         include_dir=debian/collectd-dev/usr/include/collectd/ \
93                 && mkdir -p $$include_dir/liboconfig \
94                 && cp src/*.h $$include_dir \
95                 && cp src/liboconfig/oconfig.h $$include_dir/liboconfig
97 install-arch: build
98         dh_testdir
99         dh_testroot
100         dh_clean -k 
101         dh_installdirs -a
102         
103         $(MAKE) install DESTDIR=$(CURDIR)/debian/collectd
104         
105         rm -rf debian/collectd/usr/include/
106         rm -f debian/collectd/usr/lib/collectd/*.la
107         
108         rm -f debian/collectd/etc/collectd.conf
109         install -D -m 0644 debian/collectd.conf \
110                 debian/collectd/etc/collectd/collectd.conf
111         install -m 0644 debian/collection.conf \
112                 debian/collectd/etc/collectd/collection.conf
113         install -m 0644 debian/thresholds.conf \
114                 debian/collectd/etc/collectd/thresholds.conf
115         
116         mkdir -p debian/collectd/usr/lib/collectd/utils/
117         for UTIL in rrd_filter.px migrate-3-4.px; do \
118                 cp contrib/$$UTIL debian/collectd/usr/lib/collectd/utils/; \
119         done
120         
121         perl ./debian/bin/gen_plugin_deps.pl
122         
123         mkdir -p debian/collectd/usr/share/lintian/overrides/
124         cp debian/collectd.overrides \
125                 debian/collectd/usr/share/lintian/overrides/collectd
127 binary-indep: install-indep
128         dh_testdir
129         dh_testroot
130         dh_installchangelogs -i ChangeLog
131         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
132         dh_installexamples -i contrib/examples/myplugin.c \
133                 contrib/examples/MyPlugin.pm
134         dh_compress -i -Xexamples/myplugin.c -Xexamples/MyPlugin.c
135         dh_fixperms -i
136         dh_installdeb -i
137         dh_gencontrol -i
138         dh_md5sums -i
139         dh_builddeb -i
141 binary-arch: build install-arch
142         dh_testdir
143         dh_testroot
144         dh_installchangelogs -a ChangeLog
145         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
146         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
147         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
148                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
149                 contrib/exec-nagios.conf contrib/exec-nagios.px \
150                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
151                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py
152         dh_installdebconf -a
153         dh_installinit -a -- defaults 95
154         dh_link -a
155         dh_strip -a --dbg-package=collectd-dbg
156         dh_compress -a
157         dh_fixperms -a
158         dh_installdeb -a
159         dpkg-shlibdeps -Tdebian/collectd.substvars \
160                 -dDepends debian/collectd/usr/bin/* debian/collectd/usr/sbin/* \
161                         debian/collectd/usr/lib/collectd/rrdtool.so \
162                 -dRecommends debian/collectd/usr/lib/collectd/*.so
163         dh_gencontrol -a
164         dh_md5sums -a
165         dh_builddeb -a
167 binary: binary-arch binary-indep
168 .PHONY: build clean binary-indep binary-arch binary install-indep install-arch