Code

9290ed3d0291193012eea65d1e8f20579e61b22c
[pkg-rrdtool.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
4 # Uncomment this to turn on verbose mode.
5 #export DH_VERBOSE=1
7 #we use quilt
8 include /usr/share/quilt/quilt.make
11 #Ruby versions to build for
12 RUBY_VERS := 1.8 1.9
13 RUBY_DEFAULT_VERS := 1.8
15 #Python versions to build for. The work-around-doko way.
16 PY_VERS := $(shell set -e; \
17                    for py in `pysupport-parseversions debian/pyversions`; do \
18                        if [ -x /usr/bin/python$$py ]; then echo $$py; fi;    \
19                    done)
21 #tcl version we're building for
22 TCL_VERS := $(shell dpkg -s tcl-dev | grep '^Depends' \
23         | sed 's,.*\<tcl\([0-9.]*\)-dev\>.*,\1,')
26 #let's help configure to figure out our host/build system
27 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
28 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
29 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
30   CONFFLAGS += --build $(DEB_HOST_GNU_TYPE)
31 else
32   CONFFLAGS += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
33 endif
35 #we build the bindings manually from debian/rules
36 CONFFLAGS += --disable-python --disable-ruby
38 #set the right paths
39 CONFFLAGS += --prefix=/usr --docdir=/usr/share/doc/rrdtool
41 #install perl libs in vendor mode
42 CONFFLAGS += --with-perl-options=INSTALLDIRS=vendor 
44 #path to tcl
45 CONFFLAGS += --with-tcllib=/usr/lib/tcl$(TCL_VERS)
47 #let's take care of optimization + debug builds
48 CFLAGS += -Wall -g
49 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
50         CFLAGS += -O0
51 else
52 #don't optimize on arm for now - #447041
53 ifneq ($(DEB_HOST_GNU_TYPE), arm)
54         CFLAGS += -O2
55 endif
56 endif
58 # work-around for a broken dpkg - do not rename this to LDFLAGS :-/
59 LINKER_FLAGS=-Wl,-z,defs
61 configure: config.status
62 config.status: $(QUILT_STAMPFN)
64 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
65         cp -f /usr/share/misc/config.sub config.sub
66 endif
67 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
68         cp -f /usr/share/misc/config.guess config.guess
69 endif
71         LDFLAGS="$(LINKER_FLAGS)" \
72         CFLAGS="$(CFLAGS)" \
73         RRDDOCDIR=/usr/share/doc/rrdtool \
74           ./configure $(CONFFLAGS)
76 build: build-arch build-indep 
78 build-arch: build-arch-stamp $(PY_VERS:%=build-python%)
79 build-arch-stamp: config.status 
80         make
81         #Fix library path to tcl bindings
82         sed -i -e 's|lib/|lib/tcltk/rrdtool-tcl/|' bindings/tcl/pkgIndex.tcl
83         #sanity check if debian/control lists the right package name
84         LIB_major=`grep '^dlname=' src/librrd.la \
85                         | sed -e "s/^dlname='librrd\.so\.\\([0-9]\+\\)'\$$/\\1/"` \
86                 && test -n "$$LIB_major" \
87                 && grep -q "^Package: librrd$$LIB_major\\>" debian/control
88         touch $@
90 build-python%: build-arch-stamp
91         set -e ;\
92          cd bindings/python ;\
93          BUILDLIBDIR=../../src/.libs LIBDIR=../../src/.libs python$* setup.py build
94         touch $@
96 build-indep: build-arch-stamp
97         #indep stuff is built in build-arch-stamp, too.
99 clean: clean-patched
100 clean-patched: unpatch $(PY_VERS:%=clean-python%)
101         dh_testdir
102         dh_testroot
104         [ ! -f Makefile ] || make distclean
106 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
107         rm -f config.sub
108 endif
109 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
110         rm -f config.guess
111 endif
112         rm -f build-arch-stamp build-indep-stamp config.status install-common-stamp
113         find . -name \*.pyc | xargs rm -f
114         rm -rf bindings/python/build
116         # clean what the Makefiles do not clean ...
117         rm -rf bindings/perl-piped/blib bindings/perl-shared/blib \
118                bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old
119         rm -f bindings/tcl/pkgIndex.tcl bindings/tcl/tclrrd*.so
120         rm -f examples/cgi-demo.cgi
121         rm -rf src/.libs src/.deps doc/*.html doc/*.1 doc/*.txt
122         rm -f intltool-extract intltool-merge intltool-update
123         rm -f src/librrd.sym
125         dh_clean
127 clean-python%: unpatch
128         set -e ;\
129          cd bindings/python ;\
130          python$* setup.py clean
131         rm -f build-python$*
134 install: install-arch install-indep
136 install-indep: build-indep install-common-stamp
137         #nothing to do
139 install-common-stamp: build-arch-stamp
140         dh_testdir
141         dh_testroot
142         dh_clean -k
144         make install DESTDIR=$(CURDIR)/debian/tmp
145         # we don't want .txt and .pod documentation in the package
146         rm -rf debian/tmp/usr/share/doc/rrdtool/txt
147         dh_install --sourcedir=$(CURDIR)/debian/tmp --fail-missing
149         touch $@
151 install-arch: install-common-stamp $(PY_VERS:%=install-python%)
152         #build and install ruby
153         set -e; \
154         cd bindings/ruby ;\
155         for rbv in $(RUBY_VERS); do \
156           ruby$$rbv extconf.rb ;\
157           make ;\
158           make install sitelibdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["rubylibdir"]'` \
159                        sitearchdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["archdir"]'` ;\
160           make distclean ;\
161         done
163         dh_installexamples -s
165 install-python%: install-common-stamp
166         dh_testdir
167         dh_testroot
168         set -e ;\
169          cd bindings/python ;\
170          python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool
173 binary-indep: build-indep install-indep
174         dh_testdir
175         dh_testroot
176         dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby
177         dh_link -ppython-rrd /usr/share/doc/python-rrdtool /usr/share/doc/python-rrd
178         dh_installchangelogs -i -Nlibrrd-ruby -Npython-rrd CHANGES
179         dh_installdocs -i -Nlibrrd-ruby -Npython-rrd -A CONTRIBUTORS NEWS
180         dh_link -i -Nlibrrd-ruby -Npython-rrd
181         echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars
182         dh_perl -i
183         dh_compress -i
184         dh_fixperms -i
185         dh_installdeb -i
186         dh_gencontrol -i
187         dh_md5sums -i
188         dh_builddeb -i
189         
191 binary-arch: build-arch install-arch
192         dh_testdir
193         dh_testroot
194         dh_installchangelogs -a CHANGES
195         dh_installdocs -a -A CONTRIBUTORS NEWS
196         dh_installdocs -a
197         echo 'tcl:Depends=tcl$(TCL_VERS) | tclsh' >> debian/rrdtool-tcl.substvars
198         dh_pysupport -ppython-rrdtool
199         dh_perl -a
200         dh_installman -a
201         dh_link -a
202         dh_strip -a --dbg-package=rrdtool-dbg
203         dh_compress -a
204         dh_fixperms -a
205         dh_makeshlibs -a
206         dh_installdeb -a
207         dh_shlibdeps -a
208         dh_gencontrol -a
209         dh_md5sums -a
210         dh_builddeb -a
213 binary: binary-arch binary-indep
214 .PHONY: build clean configure \
215         binary-indep binary-arch binary \
216         install install-arch \
217         install-python% clean-python% unpatch