Code

Added support for OpenJDK.
[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 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 # Upstream defaults to ${sysconfdir}/collectd.conf. Setting ${sysconfdir} to
25 # /etc/collectd would be wrong though.
26 CPPFLAGS += -UCONFIGFILE
27 CPPFLAGS += -DCONFIGFILE='\"/etc/collectd/collectd.conf\"'
29 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
30         CFLAGS += -O0
31 else
32         CFLAGS += -O2
33 endif
35 # The archdir map has been copied from openjdk-6's debian/rules.
36 JAVA_ARCHDIR_MAP = alpha=alpha arm=arm armel=arm amd64=amd64 hppa=parisc \
37                         i386=i386 lpia=i386 m68k=m68k mips=mips mipsel=mipsel \
38                         powerpc=ppc sparc=sparc s390=s390 ia64=ia64
39 JAVA_ARCHDIR = $(strip $(patsubst $(DEB_BUILD_ARCH)=%, %, \
40                         $(filter $(DEB_BUILD_ARCH)=%, $(JAVA_ARCHDIR_MAP))))
41 JAVA_HOME = /usr/lib/jvm/java-6-openjdk
43 JAVAC = $(JAVA_HOME)/bin/javac
44 JAVA_CPPFLAGS = -I$(JAVA_HOME)/include
45 JAVA_LDFLAGS = -L$(JAVA_HOME)/jre/lib/$(JAVA_ARCHDIR)/server
47 include /usr/share/dpatch/dpatch.make
49 confflags = --host=$(DEB_HOST_GNU_TYPE) \
50                         --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \
51                         --mandir=\$${prefix}/share/man \
52                         --localstatedir=/var --sysconfdir=/etc \
53                         --with-perl-bindings="INSTALLDIRS=vendor" \
54                         --without-libstatgrab
56 # These plugins do not provide any functionality under Linux.
57 confflags += --disable-apple_sensors --disable-tape
59 # libganglia >= 3 is required for the gmond plugin.
60 confflags += --disable-gmond
62 # libowcapi is required for the onewire plugin.
63 confflags += --disable-onewire
65 # libclntsh is required for the oracle plugin.
66 confflags += --disable-oracle
68 # rrdclient support in librrd is required for the rrdcached plugin.
69 confflags += --disable-rrdcached
71 # xmms1 is required for the xmms plugin.
72 confflags += --disable-xmms
74 # The static library netstat cannot be linked into shared objects on some
75 # architectures (see bugs #358637, #419684 and #524593 for more details).
76 ifneq (,$(findstring $(DEB_BUILD_ARCH),alpha amd64 hppa ia64 ppc64 mips mipsel))
77         confflags += --disable-netlink
78 endif
80 # libvirt is only available on amd64, i386 and powerpc.
81 ifeq (,$(findstring $(DEB_BUILD_ARCH),amd64 i386 powerpc))
82         confflags += --disable-libvirt
83 endif
85 config.status: configure $(DPATCH_STAMPFN)
86         dh_testdir
87         ./configure $(confflags) CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \
88                 JAVAC="$(JAVAC)" JAVA_CPPFLAGS="$(JAVA_CPPFLAGS)" \
89                 JAVA_LDFLAGS="$(JAVA_LDFLAGS)"
91 build: build-stamp
93 build-stamp: config.status
94         dh_testdir
95         
96         $(MAKE)
97         perl ./debian/bin/check_plugins.pl
98         
99         touch build-stamp
101 clean: unpatch
102         dh_testdir
103         dh_testroot
104         rm -f build-stamp
105         
106         [ ! -f Makefile ] || $(MAKE) distclean
107         
108         rm -f debian/README.Debian.plugins
109         rm -f src/*.1 src/*.5
110         
111         dh_clean
112         debconf-updatepo
114 install-indep:
115         dh_testdir
116         dh_testroot
117         dh_clean -k
118         dh_installdirs -i
119         dh_install -i
121 install-arch: build
122         dh_testdir
123         dh_testroot
124         dh_clean -k
125         dh_installdirs -a
126         
127         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
128         
129         rm -f debian/tmp/usr/lib/collectd/*.la
130         rm -f debian/tmp/etc/collectd.conf
131         
132         dh_install -a --sourcedir=$(CURDIR)/debian/tmp --fail-missing
133         
134         perl ./debian/bin/gen_plugin_deps.pl
135         
136         mkdir -p debian/collectd/usr/share/lintian/overrides/
137         cp debian/collectd.overrides \
138                 debian/collectd/usr/share/lintian/overrides/collectd
140 binary-indep: install-indep
141         dh_testdir
142         dh_testroot
143         dh_installchangelogs -i ChangeLog
144         dh_installdocs -A -i debian/README.Debian AUTHORS README TODO
145         dh_installexamples -i contrib/examples/myplugin.c \
146                 contrib/examples/MyPlugin.pm
147         dh_compress -i -Xexamples/
148         dh_fixperms -i
149         dh_installdeb -i
150         dh_gencontrol -i
151         dh_md5sums -i
152         dh_builddeb -i
154 binary-arch: build install-arch
155         dh_testdir
156         dh_testroot
157         dh_installchangelogs -a ChangeLog
158         dh_installdocs -A -a debian/README.Debian AUTHORS README TODO
159         dh_installdocs -a debian/NEWS.Debian debian/README.Debian.plugins
160         dh_installexamples -a contrib/collectd2html.pl contrib/collection.cgi \
161                 contrib/collection3/ contrib/php-collection/ \
162                 contrib/exec-munin.conf contrib/exec-munin.px contrib/exec-smartctl \
163                 contrib/exec-nagios.conf contrib/exec-nagios.px \
164                 contrib/SpamAssassin/ contrib/iptables/ contrib/cussh.pl \
165                 contrib/snmp-data.conf contrib/add_rra.sh contrib/network-proxy.py \
166                 contrib/collectd-network.py contrib/collectd-unixsock.py \
167                 contrib/snmp-probe-host.px
168         dh_installdebconf -a
169         dh_installinit -a -- defaults 95
170         dh_link -a
171         dh_strip -a --dbg-package=collectd-dbg
172         dh_compress -a -Xexamples/
173         dh_fixperms -a
174         dh_makeshlibs -a
175         dh_installdeb -a
176         dpkg-shlibdeps -Tdebian/collectd.substvars \
177                 -dDepends debian/collectd/usr/sbin/* \
178                         debian/collectd/usr/lib/collectd/rrdtool.so \
179                 -dRecommends debian/collectd/usr/lib/collectd/*.so
180         dh_shlibdeps -a -Ncollectd
181         dh_gencontrol -a
182         dh_md5sums -a
183         dh_builddeb -a
185 binary: binary-arch binary-indep
186 .PHONY: build clean binary-indep binary-arch binary install-indep install-arch