Code

0f8a40a3bac453dc4763811fde7ca92cd0eadb68
[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-arch-stamp
93         #indep stuff is built in build-arch-stamp, too.
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 install-common-stamp
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$*
129 install: install-arch install-indep
131 install-indep: build-indep install-common-stamp
132         #nothing to do
134 install-common-stamp: build-arch-stamp
135         dh_testdir
136         dh_testroot
137         dh_clean -k
139         make install DESTDIR=$(CURDIR)/debian/tmp
140         dh_install --sourcedir=$(CURDIR)/debian/tmp
142         touch $@
144 install-arch: install-common-stamp $(PY_VERS:%=install-python%)
145         #build and install ruby
146         set -e; \
147         cd bindings/ruby ;\
148         for rbv in $(RUBY_VERS); do \
149           ruby$$rbv extconf.rb ;\
150           make ;\
151           make install sitelibdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["rubylibdir"]'` \
152                        sitearchdir=$(CURDIR)/debian/librrd-ruby$$rbv`ruby$$rbv -r rbconfig -e 'print Config::CONFIG["archdir"]'` ;\
153           make distclean ;\
154         done
156         dh_installexamples -s
158 install-python%: install-common-stamp
159         dh_testdir
160         dh_testroot
161         set -e ;\
162          cd bindings/python ;\
163          python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool
166 binary-indep: build-indep install-indep
167         dh_testdir
168         dh_testroot
169         dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby
170         dh_link -plibrrd2-dev /usr/share/doc/librrd-dev /usr/share/doc/librrd2-dev
171         dh_link -ppython-rrd /usr/share/doc/python-rrdtool /usr/share/doc/python-rrd
172         dh_installchangelogs -i -Nlibrrd-ruby -Nlibrrd2-dev -Npython-rrd
173         dh_installdocs -i -Nlibrrd-ruby -Nlibrrd2-dev -Npython-rrd
174         dh_link -i -Nlibrrd-ruby -Nlibrrd2-dev -Npython-rrd
175         echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars
176         dh_perl -i
177         dh_compress -i
178         dh_fixperms -i
179         dh_installdeb -i
180         dh_gencontrol -i
181         dh_md5sums -i
182         dh_builddeb -i
183         
185 binary-arch: build-arch install-arch
186         dh_testdir
187         dh_testroot
188         dh_installchangelogs -a CHANGES
189         dh_installdocs -a
190 #       dh_installexamples -a
191         dh_pysupport -ppython-rrdtool
192         dh_perl -a
193         dh_installman -a
194         dh_link -plibrrd-dev /usr/lib/librrd.so.$(LIB_version) /usr/lib/librrd.so
195         dh_link -plibrrd-dev /usr/lib/librrd_th.so.$(LIB_TH_version) /usr/lib/librrd_th.so
196         dh_link -plibrrd$(LIB_major) /usr/lib/librrd.so.$(LIB_version) /usr/lib/librrd.so.$(LIB_major)
197         dh_link -plibrrd$(LIB_major) /usr/lib/librrd_th.so.$(LIB_TH_version) /usr/lib/librrd_th.so.$(LIB_TH_major)
198         dh_link -a
199         dh_strip -a
200         dh_compress -a
201         dh_fixperms -a
202         dh_makeshlibs -a
203         dh_installdeb -a
204         dh_shlibdeps -a
205         dh_gencontrol -a
206         dh_md5sums -a
207         dh_builddeb -a
210 binary: binary-arch binary-indep
211 .PHONY: build clean configure \
212         binary-indep binary-arch binary \
213         install install-arch \
214         install-python% clean-python% unpatch