X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=debian%2Frules;h=6178929965ac2919084165c0a142c97860fcebf8;hb=75b42449ab08d70857fe57c910db27938368a9df;hp=10f18a0394ff74a32a01fabd2729b8a15b903955;hpb=a93b6b71c84ffda2b82a8dc5e56e01940d5a5bbe;p=pkg-rrdtool.git diff --git a/debian/rules b/debian/rules index 10f18a0..6178929 100755 --- a/debian/rules +++ b/debian/rules @@ -7,9 +7,20 @@ #we use quilt include /usr/share/quilt/quilt.make +#needed to build with Python 2.6 +-include /usr/share/python/python.mk +ifeq (,$(py_sitename)) + py_sitename = site-packages + py_libdir = /usr/lib/python$(subst python,,$(1))/site-packages + py_sitename_sh = $(py_sitename) + py_libdir_sh = $(py_libdir) + py_setup_install_args = +endif + + #Ruby versions to build for -RUBY_VERS := 1.8 1.9 +RUBY_VERS := 1.8 1.9.1 RUBY_DEFAULT_VERS := 1.8 PY_VERS := $(shell pyversions -vr) @@ -18,10 +29,11 @@ PY_VERS := $(shell pyversions -vr) 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 @@ -46,7 +58,7 @@ ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else #don't optimize on arm for now - #447041 -ifneq ($(DEB_HOST_GNU_TYPE), arm) +ifneq ($(DEB_HOST_ARCH_CPU), arm) CFLAGS += -O2 endif endif @@ -117,6 +129,7 @@ endif 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 @@ -140,7 +153,11 @@ install-common-stamp: build-arch-stamp 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 + dh_install --sourcedir=$(CURDIR)/debian/tmp -X.la --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 touch $@ @@ -157,14 +174,18 @@ install-arch: install-common-stamp $(PY_VERS:%=install-python%) 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 + python$* setup.py install --root=$(CURDIR)/debian/python-rrdtool \ + $(py_setup_install_args) ;\ + python$*-dbg setup.py install --root=$(CURDIR)/debian/rrdtool-dbg \ + $(py_setup_install_args) + find $(CURDIR)/debian/rrdtool-dbg -type f -name '*.egg-info' -print0 |\ xargs -0r rm -f @@ -197,11 +218,13 @@ binary-arch: build-arch install-arch dh_pysupport -prrdtool-dbg dh_perl -a dh_installman -a + dh_installinit -prrdcached dh_link -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