X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=debian%2Frules;h=6430e061c28ccc5edb064bc0038e38e2f36ccf78;hb=202015964891023f69e3e6b12c51c3faada7e749;hp=e5f95c95fdb51e69ae77ee04ff836ff0fff60aaf;hpb=d39d37383723da8f93d74deb7dd2d039e5205bd8;p=pkg-rrdtool.git diff --git a/debian/rules b/debian/rules index e5f95c9..6430e06 100755 --- a/debian/rules +++ b/debian/rules @@ -4,34 +4,25 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -Makefile.am:librrd_la_LDFLAGS = -version-info 2:12:0 -Makefile.am:librrd_th_la_LDFLAGS = $(MULTITHREAD_LDFLAGS) -version-info 2:11:0 - - - -#library versions -LIB_version := $(shell grep '^librrd_la_LDFLAGS' src/Makefile.am | \ - sed 's,^[^0-9]*,,g;s,:,.,g') -LIB_major := $(shell echo $(LIB_version) | sed 's,\..*,,g') -LIB_TH_version := $(shell grep '^librrd_th_la_LDFLAGS' src/Makefile.am | \ - sed 's,^[^0-9]*,,g;s,:,.,g') -LIB_major := $(shell echo $(LIB_th_version) | sed 's,\..*,,g') - +#we use quilt +include /usr/share/quilt/quilt.make #Ruby versions to build for RUBY_VERS := 1.8 1.9 RUBY_DEFAULT_VERS := 1.8 -#Python versions to build for. The work-around-doko way. -PY_VERS := $(shell set -e; \ - for py in `pysupport-parseversions debian/pyversions`; do \ - if [ -x /usr/bin/python$$py ]; then echo $$py; fi; \ - done) +PY_VERS := $(shell pyversions -vr) + +#tcl version we're building for +TCL_VERS := $(shell dpkg -s tcl-dev | grep '^Depends' \ + | sed 's,.*\.*,\1,') #let's help configure to figure out our host/build system DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) + ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) CONFFLAGS += --build $(DEB_HOST_GNU_TYPE) else @@ -44,18 +35,28 @@ CONFFLAGS += --disable-python --disable-ruby #set the right paths CONFFLAGS += --prefix=/usr --docdir=/usr/share/doc/rrdtool +#install perl libs in vendor mode +CONFFLAGS += --with-perl-options=INSTALLDIRS=vendor + +#path to tcl +CONFFLAGS += --with-tcllib=/usr/lib/tcl$(TCL_VERS) + #let's take care of optimization + debug builds CFLAGS += -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else +#don't optimize on arm for now - #447041 +ifneq ($(DEB_HOST_ARCH_CPU), arm) CFLAGS += -O2 endif +endif -LDFLAGS="-Wl,-z,defs" +# work-around for a broken dpkg - do not rename this to LDFLAGS :-/ +LINKER_FLAGS=-Wl,-z,defs configure: config.status -config.status: +config.status: $(QUILT_STAMPFN) ifneq "$(wildcard /usr/share/misc/config.sub)" "" cp -f /usr/share/misc/config.sub config.sub @@ -64,30 +65,39 @@ ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif - LDFLAGS="$(LDFLAGS)" + LDFLAGS="$(LINKER_FLAGS)" \ CFLAGS="$(CFLAGS)" \ RRDDOCDIR=/usr/share/doc/rrdtool \ ./configure $(CONFFLAGS) -build: build-arch build-indep - -build-arch: build-arch-stamp -build-arch-stamp: config.status - - #configure forgets to set TCL_INC_DIR. - make TCL_INC_DIR=/usr/include/tcl +build: build-arch build-indep + +build-arch: build-arch-stamp $(PY_VERS:%=build-python%) $(PY_VERS:%=build-python%-dbg) +build-arch-stamp: config.status + make + #Fix library path to tcl bindings + sed -i -e 's|lib/|lib/tcltk/rrdtool-tcl/|' bindings/tcl/pkgIndex.tcl + #sanity check if debian/control lists the right package name + LIB_major=`grep '^dlname=' src/librrd.la \ + | sed -e "s/^dlname='librrd\.so\.\\([0-9]\+\\)'\$$/\\1/"` \ + && test -n "$$LIB_major" \ + && grep -q "^Package: librrd$$LIB_major\\>" debian/control touch $@ -build-indep: build-indep-stamp -build-indep-stamp: config.status +build-python%: build-arch-stamp + set -e ;\ + cd bindings/python ;\ + BUILDLIBDIR=../../src/.libs LIBDIR=../../src/.libs python$* setup.py build ;\ + touch $@ + +build-indep: build-arch-stamp + #indep stuff is built in build-arch-stamp, too. -clean: +clean: clean-patched +clean-patched: unpatch $(PY_VERS:%=clean-python%) $(PY_VERS:%=clean-python%-dbg) dh_testdir dh_testroot - #sanity check if debian/control lists the right package name - grep -q '^Package: librrd$(LIB_major)' debian/control - [ ! -f Makefile ] || make distclean ifneq "$(wildcard /usr/share/misc/config.sub)" "" @@ -96,39 +106,52 @@ endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" rm -f config.guess endif - rm -f build-arch-stamp build-indep-stamp config.status - + rm -f build-arch-stamp build-indep-stamp config.status install-common-stamp find . -name \*.pyc | xargs rm -f + rm -rf bindings/python/build + + # clean what the Makefiles do not clean ... + rm -rf bindings/perl-piped/blib bindings/perl-shared/blib \ + bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old + rm -f bindings/tcl/pkgIndex.tcl bindings/tcl/tclrrd*.so + rm -f examples/cgi-demo.cgi + rm -rf src/.libs src/.deps doc/*.html doc/*.1 doc/*.txt + rm -f intltool-extract intltool-merge intltool-update + rm -f src/librrd.sym + rm -f config.h dh_clean -install: install-indep install-arch -install-indep: - dh_testdir - dh_testroot - dh_clean -k -s - dh_installdirs -s +clean-python%: unpatch + set -e ;\ + cd bindings/python ;\ + python$* setup.py clean ;\ + rm -f build-python$* - dh_install -s +install: install-arch install-indep -install-arch: +install-indep: build-indep install-common-stamp + #nothing to do + +install-common-stamp: build-arch-stamp dh_testdir dh_testroot - dh_clean -k -s - dh_installdirs -s + dh_clean -k make install DESTDIR=$(CURDIR)/debian/tmp + # we don't want .txt and .pod documentation in the package + rm -rf debian/tmp/usr/share/doc/rrdtool/txt + dh_install --sourcedir=$(CURDIR)/debian/tmp --fail-missing + # remove duplicates + rm debian/rrdtool/usr/bin/rrdcached + rm debian/rrdtool/usr/share/man/man1/rrdcached.1 + rm debian/rrdtool/usr/share/doc/rrdtool/html/rrdcached.html - #build and install python - set -e ;\ - cd bindings/python ;\ - for pv in $(PY_VERS); do \ - BUILDLIBDIR=../../src/.libs python$$pv setup.py build ;\ - python$$pv setup.py install --root=$(CURDIR)/debian/python-rrd ;\ - python$$pv setup.py clean ;\ - done + touch $@ +install-arch: install-common-stamp $(PY_VERS:%=install-python%) + #build and install ruby set -e; \ cd bindings/ruby ;\ for rbv in $(RUBY_VERS); do \ @@ -139,39 +162,55 @@ install-arch: make distclean ;\ done + dh_installexamples -s + chmod 644 debian/rrdcached/usr/share/doc/rrdcached/examples/RRDCached.pm +install-python%: install-common-stamp + dh_testdir + dh_testroot + set -e ;\ + cd bindings/python ;\ + python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool ;\ + python$*-dbg setup.py install --root=$(CURDIR)/debian/rrdtool-dbg + find $(CURDIR)/debian/rrdtool-dbg -type f -name '*.egg-info' -print0 |\ + xargs -0r rm -f -binary-indep: + +binary-indep: build-indep install-indep dh_testdir dh_testroot - echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars dh_link -plibrrd-ruby /usr/share/doc/librrd-ruby$(RUBY_DEFAULT_VERS) /usr/share/doc/librrd-ruby - dh_installchangelogs - dh_installdocs -s -Nlibrrd-ruby - dh_link -s -Nlibrrd-ruby - dh_perl -s - dh_compress -s - dh_fixperms -s - dh_installdeb -s - dh_gencontrol -s - dh_md5sums -s - dh_builddeb -s + dh_installchangelogs -i -Nlibrrd-ruby CHANGES + dh_installdocs -i -Nlibrrd-ruby -A CONTRIBUTORS NEWS + dh_link -i -Nlibrrd-ruby + echo 'rubydefault:Depends=librrd-ruby$(RUBY_DEFAULT_VERS)' >> debian/librrd-ruby.substvars + dh_perl -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i binary-arch: build-arch install-arch dh_testdir dh_testroot dh_installchangelogs -a CHANGES + dh_installdocs -a -A CONTRIBUTORS NEWS dh_installdocs -a -# dh_installexamples -a - dh_pysupport -ppython-rrd + echo 'tcl:Depends=tcl$(TCL_VERS) | tclsh' >> debian/rrdtool-tcl.substvars + dh_pysupport -ppython-rrdtool + dh_pysupport -prrdtool-dbg dh_perl -a dh_installman -a + dh_installinit -prrdcached dh_link -a - dh_strip -a + dh_strip -a --dbg-package=rrdtool-dbg dh_compress -a dh_fixperms -a - dh_makeshlibs -a + dh_makeshlibs -a -Nliblua5.1-rrd0 -Nliblua5.1-rrd-dev + dh_makeshlibs -pliblua5.1-rrd0 -pliblua5.1-rrd-dev -n dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a @@ -180,4 +219,7 @@ binary-arch: build-arch install-arch binary: binary-arch binary-indep -.PHONY: build clean binary-indep binary-arch binary install install-arch install-indep configure +.PHONY: build clean configure \ + binary-indep binary-arch binary \ + install install-arch \ + install-python% clean-python% unpatch