Code

More Lua binding stuff.
[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 PY_VERS := $(shell pyversions -vr)
17 #tcl version we're building for
18 TCL_VERS := $(shell dpkg -s tcl-dev | grep '^Depends' \
19         | sed 's,.*\<tcl\([0-9.]*\)-dev\>.*,\1,')
21 LUA = lua5.1
23 #let's help configure to figure out our host/build system
24 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
25 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
26 DEB_HOST_ARCH_CPU   ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
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_ARCH_CPU), 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         LUA=/usr/bin/$(LUA) \
74           ./configure $(CONFFLAGS)
76 build: build-arch build-indep 
78 build-arch: build-arch-stamp $(PY_VERS:%=build-python%) $(PY_VERS:%=build-python%-dbg)
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%) $(PY_VERS:%=clean-python%-dbg)
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
124         rm -f config.h
126         dh_clean
128 clean-python%: unpatch
129         set -e ;\
130          cd bindings/python ;\
131          python$* setup.py clean ;\
132          rm -f build-python$*
135 install: install-arch install-indep
137 install-indep: build-indep install-common-stamp
138         #nothing to do
140 install-common-stamp: build-arch-stamp
141         dh_testdir
142         dh_testroot
143         dh_clean -k
145         make install DESTDIR=$(CURDIR)/debian/tmp
146         # we don't want .txt and .pod documentation in the package
147         rm -rf debian/tmp/usr/share/doc/rrdtool/txt
148         dh_install --sourcedir=$(CURDIR)/debian/tmp --fail-missing
149         # remove duplicates
150         rm debian/rrdtool/usr/bin/rrdcached
151         rm debian/rrdtool/usr/share/man/man1/rrdcached.1
152         rm debian/rrdtool/usr/share/doc/rrdtool/html/rrdcached.html
154         touch $@
156 install-arch: install-common-stamp $(PY_VERS:%=install-python%)
157         #build and install ruby
158         set -e; \
159         cd bindings/ruby ;\
160         for rbv in $(RUBY_VERS); do \
161           ruby$$rbv extconf.rb ;\
162           make ;\
163           make install sitelibdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["rubylibdir"]'` \
164                        sitearchdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["archdir"]'` ;\
165           make distclean ;\
166         done
168         dh_installexamples -s
169         chmod 644 debian/rrdcached/usr/share/doc/rrdcached/examples/RRDCached.pm
171 install-python%: install-common-stamp
172         dh_testdir
173         dh_testroot
174         set -e ;\
175          cd bindings/python ;\
176          python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool ;\
177          python$*-dbg setup.py install --root=$(CURDIR)/debian/rrdtool-dbg
178         find $(CURDIR)/debian/rrdtool-dbg -type f -name '*.egg-info' -print0 |\
179                  xargs -0r rm -f
182 binary-indep: build-indep install-indep
183         dh_testdir
184         dh_testroot
185         dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby
186         dh_installchangelogs -i -Nlibrrd-ruby CHANGES
187         dh_installdocs -i -Nlibrrd-ruby -A CONTRIBUTORS NEWS
188         dh_link -i -Nlibrrd-ruby
189         echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars
190         dh_perl -i
191         dh_compress -i
192         dh_fixperms -i
193         dh_installdeb -i
194         dh_gencontrol -i
195         dh_md5sums -i
196         dh_builddeb -i
197         
199 binary-arch: build-arch install-arch
200         dh_testdir
201         dh_testroot
202         dh_installchangelogs -a CHANGES
203         dh_installdocs -a -A CONTRIBUTORS NEWS
204         dh_installdocs -a
205         echo 'tcl:Depends=tcl$(TCL_VERS) | tclsh' >> debian/rrdtool-tcl.substvars
206         dh_pysupport -ppython-rrdtool
207         dh_pysupport -prrdtool-dbg
208         dh_perl -a
209         dh_installman -a
210         dh_link -a
211         dh_strip -a --dbg-package=rrdtool-dbg
212         dh_compress -a
213         dh_fixperms -a
214         dh_makeshlibs -a
215         dh_installdeb -a
216         dh_shlibdeps -a
217         dh_gencontrol -a
218         dh_md5sums -a
219         dh_builddeb -a
222 binary: binary-arch binary-indep
223 .PHONY: build clean configure \
224         binary-indep binary-arch binary \
225         install install-arch \
226         install-python% clean-python% unpatch