Code

Merge branch 'upstream-1.3' into experimental
[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 | grep ^Depends | sed 's,.*tcl\([0-9.]*\).*,\1,')
25 #let's help configure to figure out our host/build system
26 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
27 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
28 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
29   CONFFLAGS += --build $(DEB_HOST_GNU_TYPE)
30 else
31   CONFFLAGS += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
32 endif
34 #we build the bindings manually from debian/rules
35 CONFFLAGS += --disable-python --disable-ruby
37 #set the right paths
38 CONFFLAGS += --prefix=/usr --docdir=/usr/share/doc/rrdtool
40 #install perl libs in vendor mode
41 CONFFLAGS += --with-perl-options=INSTALLDIRS=vendor 
43 #path to tcl
44 CONFFLAGS += --with-tcllib=/usr/lib/tcl$(TCL_VERS)
46 #let's take care of optimization + debug builds
47 CFLAGS += -Wall -g
48 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
49         CFLAGS += -O0
50 else
51 #don't optimize on arm for now - #447041
52 ifneq ($(DEB_HOST_GNU_TYPE), arm)
53         CFLAGS += -O2
54 endif
55 endif
57 # work-around for a broken dpkg - do not rename this to LDFLAGS :-/
58 LINKER_FLAGS=-Wl,-z,defs
60 configure: config.status
61 config.status: $(QUILT_STAMPFN)
63 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
64         cp -f /usr/share/misc/config.sub config.sub
65 endif
66 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
67         cp -f /usr/share/misc/config.guess config.guess
68 endif
70         LDFLAGS="$(LINKER_FLAGS)" \
71         CFLAGS="$(CFLAGS)" \
72         RRDDOCDIR=/usr/share/doc/rrdtool \
73           ./configure $(CONFFLAGS)
75 build: build-arch build-indep 
77 build-arch: build-arch-stamp $(PY_VERS:%=build-python%)
78 build-arch-stamp: config.status 
80         #configure forgets to set TCL_INC_DIR.
81         make TCL_INC_DIR=/usr/include/tcl
82         #Fix library path to tcl bindings
83         sed -i -e 's|lib/|lib/tcltk/rrdtool-tcl/|' bindings/tcl/pkgIndex.tcl
84         #sanity check if debian/control lists the right package name
85         LIB_major=`grep '^dlname=' src/librrd.la \
86                         | sed -e "s/^dlname='librrd\.so\.\\([0-9]\+\\)'\$$/\\1/"` \
87                 && test -n "$$LIB_major" \
88                 && grep -q "^Package: librrd$$LIB_major\\>" debian/control
89         touch $@
91 build-python%: build-arch-stamp
92         set -e ;\
93          cd bindings/python ;\
94          BUILDLIBDIR=../../src/.libs LIBDIR=../../src/.libs python$* setup.py build
95         touch $@
97 build-indep: build-arch-stamp
98         #indep stuff is built in build-arch-stamp, too.
100 clean: clean-patched
101 clean-patched: unpatch $(PY_VERS:%=clean-python%)
102         dh_testdir
103         dh_testroot
105         [ ! -f Makefile ] || make distclean
107 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
108         rm -f config.sub
109 endif
110 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
111         rm -f config.guess
112 endif
113         rm -f build-arch-stamp build-indep-stamp config.status install-common-stamp
114         find . -name \*.pyc | xargs rm -f
115         rm -rf bindings/python/build
117         #clean what the Makefiles do not clean....
118         rm -rf bindings/perl-piped/blib bindings/perl-shared/blib \
119                bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old
120         rm -f bindings/tcl/pkgIndex.tcl bindings/tcl/tclrrd*.so
121         rm -f examples/cgi-demo.cgi
122         rm -rf src/.libs src/.deps doc/*.html doc/*.1 doc/*.txt
123         rm -f intltool-extract intltool-merge intltool-update
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         dh_install --sourcedir=$(CURDIR)/debian/tmp --list-missing
147         touch $@
149 install-arch: install-common-stamp $(PY_VERS:%=install-python%)
150         #build and install ruby
151         set -e; \
152         cd bindings/ruby ;\
153         for rbv in $(RUBY_VERS); do \
154           ruby$$rbv extconf.rb ;\
155           make ;\
156           make install sitelibdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["rubylibdir"]'` \
157                        sitearchdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["archdir"]'` ;\
158           make distclean ;\
159         done
161         dh_installexamples -s
163 install-python%: install-common-stamp
164         dh_testdir
165         dh_testroot
166         set -e ;\
167          cd bindings/python ;\
168          python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool
171 binary-indep: build-indep install-indep
172         dh_testdir
173         dh_testroot
174         dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby
175         dh_link -ppython-rrd /usr/share/doc/python-rrdtool /usr/share/doc/python-rrd
176         dh_installchangelogs -i -Nlibrrd-ruby -Npython-rrd CHANGES
177         dh_installdocs -i -Nlibrrd-ruby -Npython-rrd -A CONTRIBUTORS NEWS
178         dh_link -i -Nlibrrd-ruby -Npython-rrd
179         echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars
180         dh_perl -i
181         dh_compress -i
182         dh_fixperms -i
183         dh_installdeb -i
184         dh_gencontrol -i
185         dh_md5sums -i
186         dh_builddeb -i
187         
189 binary-arch: build-arch install-arch
190         dh_testdir
191         dh_testroot
192         dh_installchangelogs -a CHANGES
193         dh_installdocs -a -A CONTRIBUTORS NEWS
194         dh_installdocs -a
195         echo 'tcl:Depends=tcl$(TCL_VERS) | tclsh' >> debian/rrdtool-tcl.substvars
196         dh_pysupport -ppython-rrdtool
197         dh_perl -a
198         dh_installman -a
199         dh_link -a
200         dh_strip -a
201         dh_compress -a
202         dh_fixperms -a
203         dh_makeshlibs -a
204         dh_installdeb -a
205         dh_shlibdeps -a
206         dh_gencontrol -a
207         dh_md5sums -a
208         dh_builddeb -a
211 binary: binary-arch binary-indep
212 .PHONY: build clean configure \
213         binary-indep binary-arch binary \
214         install install-arch \
215         install-python% clean-python% unpatch