Code

Adding quilt
[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 #library versions
12 LIB_version := $(shell grep '^librrd_la_LDFLAGS' src/Makefile.am | \
13                            sed 's,^[^0-9]*,,g;s,\([0-9]*\):\([0-9]*\):\([0-9]*\),\1.\3.\2,g')
14 LIB_major := $(shell echo $(LIB_version) | sed 's,\..*,,g')
15 LIB_TH_version := $(shell grep '^librrd_th_la_LDFLAGS' src/Makefile.am | \
16                            sed 's,^[^0-9]*,,g;s,\([0-9]*\):\([0-9]*\):\([0-9]*\),\1.\3.\2,g')
17 LIB_TH_major := $(shell echo $(LIB_TH_version) | sed 's,\..*,,g')
21 #Ruby versions to build for
22 RUBY_VERS := 1.8 1.9
23 RUBY_DEFAULT_VERS := 1.8
25 #Python versions to build for. The work-around-doko way.
26 PY_VERS := $(shell set -e; \
27                    for py in `pysupport-parseversions debian/pyversions`; do \
28                        if [ -x /usr/bin/python$$py ]; then echo $$py; fi;    \
29                    done)
31 #let's help configure to figure out our host/build system
32 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
33 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
34 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
35   CONFFLAGS += --build $(DEB_HOST_GNU_TYPE)
36 else
37   CONFFLAGS += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
38 endif
40 #we build the bindings manually from debian/rules
41 CONFFLAGS += --disable-python --disable-ruby
43 #set the right paths
44 CONFFLAGS += --prefix=/usr --docdir=/usr/share/doc/rrdtool
46 #install perl libs in vendor mode
47 CONFFLAGS += --with-perl-options=INSTALLDIRS=vendor
52 #let's take care of optimization + debug builds
53 CFLAGS += -Wall -g
54 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
55         CFLAGS += -O0
56 else
57         CFLAGS += -O2
58 endif
60 LDFLAGS="-Wl,-z,defs"
62 configure: config.status
63 config.status: $(QUILT_STAMPFN)
65 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
66         cp -f /usr/share/misc/config.sub config.sub
67 endif
68 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
69         cp -f /usr/share/misc/config.guess config.guess
70 endif
72         LDFLAGS="$(LDFLAGS)"
73         CFLAGS="$(CFLAGS)" \
74         RRDDOCDIR=/usr/share/doc/rrdtool \
75           ./configure $(CONFFLAGS)
77 build: build-arch build-indep 
79 build-arch: build-arch-stamp $(PY_VERS:%=build-python%)
80 build-arch-stamp: config.status 
82         #configure forgets to set TCL_INC_DIR.
83         make TCL_INC_DIR=/usr/include/tcl
84         touch $@
86 build-python%: build-arch-stamp
87         set -e ;\
88          cd bindings/python ;\
89          BUILDLIBDIR=../../src/.libs LIBDIR=../../src/.libs python$* setup.py build
90         touch $@
92 build-indep: build-indep-stamp
93 build-indep-stamp: config.status
95 clean: clean-patched
96 clean-patched: unpatch $(PY_VERS:%=clean-python%)
97         dh_testdir
98         dh_testroot
99         #sanity check if debian/control lists the right package name
100         grep -q '^Package: librrd$(LIB_major)' debian/control
102         [ ! -f Makefile ] || make distclean
104 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
105         rm -f config.sub
106 endif
107 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
108         rm -f config.guess
109 endif
110         rm -f build-arch-stamp build-indep-stamp config.status
111         find . -name \*.pyc | xargs rm -f
112         rm -rf bindings/python/build
114         #clean what the Makefiles do not clean....
115         rm -rf bindings/perl-piped/blib bindings/perl-shared/blib \
116                bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old
117         rm -f bindings/tcl/pkgIndex.tcl bindings/tcl/tclrrd*.so
118         rm -f examples/cgi-demo.cgi
120         dh_clean
122 clean-python%: unpatch
123         set -e ;\
124          cd bindings/python ;\
125          python$* setup.py clean
126         rm -f build-python$*
128 install: install-arch
130 install-arch: $(PY_VERS:%=install-python%)
131         dh_testdir
132         dh_testroot
133         dh_clean -k -s -Npython-rrd
134         dh_installdirs -s
136         make install DESTDIR=$(CURDIR)/debian/tmp
138         #build and install ruby
139         set -e; \
140         cd bindings/ruby ;\
141         for rbv in $(RUBY_VERS); do \
142           ruby$$rbv extconf.rb ;\
143           make ;\
144           make install sitelibdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["rubylibdir"]'` \
145                        sitearchdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["archdir"]'` ;\
146           make distclean ;\
147         done
149         dh_install -s --sourcedir=$(CURDIR)/debian/tmp
150         dh_installexamples -s
152 install-python%:
153         dh_testdir
154         dh_testroot
155         set -e ;\
156          cd bindings/python ;\
157          python$* setup.py install --root=$(CURDIR)/debian/python-rrd
160 binary-indep:
161         dh_testdir
162         dh_testroot
163         dh_clean -k -i
164         dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby
165         dh_link -plibrrd2-dev /usr/share/doc/librrd-dev /usr/share/doc/librrd2-dev
166         dh_installchangelogs
167         dh_installdocs -i -Nlibrrd-ruby -Nlibrrd2-dev
168         dh_link -i -Nlibrrd-ruby -Nlibrrd2-dev
169         dh_perl -i
170         dh_compress -i
171         dh_fixperms -i
172         dh_installdeb -i
173         dh_gencontrol -i
174         dh_md5sums -i
175         dh_builddeb -i
176         
178 binary-arch: build-arch install-arch
179         dh_testdir
180         dh_testroot
181         dh_installchangelogs -a CHANGES
182         dh_installdocs -a
183 #       dh_installexamples -a
184         dh_pysupport -ppython-rrd
185         dh_perl -a
186         dh_installman -a
187         echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars
188         dh_link -plibrrd-dev /usr/lib/librrd.so.$(LIB_version) /usr/lib/librrd.so
189         dh_link -plibrrd-dev /usr/lib/librrd_th.so.$(LIB_TH_version) /usr/lib/librrd_th.so
190         dh_link -plibrrd$(LIB_major) /usr/lib/librrd.so.$(LIB_version) /usr/lib/librrd.so.$(LIB_major)
191         dh_link -plibrrd$(LIB_major) /usr/lib/librrd_th.so.$(LIB_TH_version) /usr/lib/librrd_th.so.$(LIB_TH_major)
192         dh_link -a
193         dh_strip -a
194         dh_compress -a
195         dh_fixperms -a
196         dh_makeshlibs -a
197         dh_installdeb -a
198         dh_shlibdeps -a
199         dh_gencontrol -a
200         dh_md5sums -a
201         dh_builddeb -a
204 binary: binary-arch binary-indep
205 .PHONY: build clean configure \
206         binary-indep binary-arch binary \
207         install install-arch \
208         install-python% clean-python% unpatch