Code

Merge branch 'master' of git@apu.snow-crash.org:pkg-rrdtool
[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')
18 #Ruby versions to build for
19 RUBY_VERS := 1.8 1.9
20 RUBY_DEFAULT_VERS := 1.8
22 #Python versions to build for. The work-around-doko way.
23 PY_VERS := $(shell set -e; \
24                    for py in `pysupport-parseversions debian/pyversions`; do \
25                        if [ -x /usr/bin/python$$py ]; then echo $$py; fi;    \
26                    done)
28 #tcl version we're building for
29 TCL_VERS := $(shell dpkg -s tcl | grep ^Depends | sed 's,.*tcl\([0-9.]*\).*,\1,')
32 #let's help configure to figure out our host/build system
33 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
34 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
35 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
36   CONFFLAGS += --build $(DEB_HOST_GNU_TYPE)
37 else
38   CONFFLAGS += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
39 endif
41 #we build the bindings manually from debian/rules
42 CONFFLAGS += --disable-python --disable-ruby
44 #set the right paths
45 CONFFLAGS += --prefix=/usr --docdir=/usr/share/doc/rrdtool
47 #install perl libs in vendor mode
48 CONFFLAGS += --with-perl-options=INSTALLDIRS=vendor 
50 #path to our ttf font
51 CONFFLAGS += --with-rrd-default-font=/usr/share/rrdtool/librrd$(LIB_major)/DejaVuSansMono-Roman.ttf
54 #let's take care of optimization + debug builds
55 CFLAGS += -Wall -g
56 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
57         CFLAGS += -O0
58 else
59 #don't optimize on arm for now - #447041
60 ifneq ($(DEB_HOST_GNU_TYPE), arm)
61         CFLAGS += -O2
62 endif
63 endif
65 LDFLAGS="-Wl,-z,defs"
67 configure: config.status
68 config.status: $(QUILT_STAMPFN)
70 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
71         cp -f /usr/share/misc/config.sub config.sub
72 endif
73 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
74         cp -f /usr/share/misc/config.guess config.guess
75 endif
77         LDFLAGS="$(LDFLAGS)"
78         CFLAGS="$(CFLAGS)" \
79         RRDDOCDIR=/usr/share/doc/rrdtool \
80           ./configure $(CONFFLAGS)
82 build: build-arch build-indep 
84 build-arch: build-arch-stamp $(PY_VERS:%=build-python%)
85 build-arch-stamp: config.status 
87         #configure forgets to set TCL_INC_DIR.
88         make TCL_INC_DIR=/usr/include/tcl
89         #Fix library path to tcl bindings
90         sed -i -e 's|lib/|lib/tcltk/rrdtool-tcl/|' bindings/tcl/pkgIndex.tcl
91         touch $@
93 build-python%: build-arch-stamp
94         set -e ;\
95          cd bindings/python ;\
96          BUILDLIBDIR=../../src/.libs LIBDIR=../../src/.libs python$* setup.py build
97         touch $@
99 build-indep: build-arch-stamp
100         #indep stuff is built in build-arch-stamp, too.
102 clean: clean-patched
103 clean-patched: unpatch $(PY_VERS:%=clean-python%)
104         dh_testdir
105         dh_testroot
106         #sanity check if debian/control lists the right package name
107         grep -q '^Package: librrd$(LIB_major)' debian/control
109         [ ! -f Makefile ] || make distclean
111 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
112         rm -f config.sub
113 endif
114 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
115         rm -f config.guess
116 endif
117         rm -f build-arch-stamp build-indep-stamp config.status install-common-stamp
118         find . -name \*.pyc | xargs rm -f
119         rm -rf bindings/python/build
121         #clean what the Makefiles do not clean....
122         rm -rf bindings/perl-piped/blib bindings/perl-shared/blib \
123                bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old
124         rm -f bindings/tcl/pkgIndex.tcl bindings/tcl/tclrrd*.so
125         rm -f examples/cgi-demo.cgi
126         rm -rf src/.libs src/.deps doc/*.html doc/*.1 doc/*.txt
128         dh_clean
130 clean-python%: unpatch
131         set -e ;\
132          cd bindings/python ;\
133          python$* setup.py clean
134         rm -f build-python$*
137 install: install-arch install-indep
139 install-indep: build-indep install-common-stamp
140         #nothing to do
142 install-common-stamp: build-arch-stamp
143         dh_testdir
144         dh_testroot
145         dh_clean -k
147         make install DESTDIR=$(CURDIR)/debian/tmp
148         dh_install --sourcedir=$(CURDIR)/debian/tmp --list-missing
150         touch $@
152 install-arch: install-common-stamp $(PY_VERS:%=install-python%)
153         #build and install ruby
154         set -e; \
155         cd bindings/ruby ;\
156         for rbv in $(RUBY_VERS); do \
157           ruby$$rbv extconf.rb ;\
158           make ;\
159           make install sitelibdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["rubylibdir"]'` \
160                        sitearchdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["archdir"]'` ;\
161           make distclean ;\
162         done
164         dh_installexamples -s
166 install-python%: install-common-stamp
167         dh_testdir
168         dh_testroot
169         set -e ;\
170          cd bindings/python ;\
171          python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool
174 binary-indep: build-indep install-indep
175         dh_testdir
176         dh_testroot
177         dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby
178         dh_link -ppython-rrd /usr/share/doc/python-rrdtool /usr/share/doc/python-rrd
179         dh_installchangelogs -i -Nlibrrd-ruby -Npython-rrd
180         dh_installdocs -i -Nlibrrd-ruby -Npython-rrd -A CONTRIBUTORS
181         dh_link -i -Nlibrrd-ruby -Npython-rrd
182         echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars
183         dh_perl -i
184         dh_compress -i
185         dh_fixperms -i
186         dh_installdeb -i
187         dh_gencontrol -i
188         dh_md5sums -i
189         dh_builddeb -i
190         
192 binary-arch: build-arch install-arch
193         dh_testdir
194         dh_testroot
195         dh_installchangelogs -a CHANGES
196         dh_installdocs -a -A CONTRIBUTORS
197         dh_installdocs -a
198         echo 'tcl:Depends=tcl$(TCL_VERS) | tclsh' >> debian/rrdtool-tcl.substvars
199         dh_pysupport -ppython-rrdtool
200         dh_perl -a
201         dh_installman -a
202         dh_link -a
203         dh_strip -a
204         dh_compress -a
205         dh_fixperms -a
206         dh_makeshlibs -a
207         dh_installdeb -a
208         dh_shlibdeps -a
209         dh_gencontrol -a
210         dh_md5sums -a
211         dh_builddeb -a
214 binary: binary-arch binary-indep
215 .PHONY: build clean configure \
216         binary-indep binary-arch binary \
217         install install-arch \
218         install-python% clean-python% unpatch