From: Bernd Zeimetz Date: Mon, 13 Jul 2009 01:03:56 +0000 (+0200) Subject: Prepare to build with Python 2.6 X-Git-Tag: debian/1.4.2-1~13^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;ds=sidebyside;h=7f93207aa16479d6d1d426276d5670b5f970327e;p=pkg-rrdtool.git Prepare to build with Python 2.6 --- diff --git a/debian/rules b/debian/rules index 10f18a0..996f23c 100755 --- a/debian/rules +++ b/debian/rules @@ -7,6 +7,17 @@ #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 @@ -163,8 +174,11 @@ install-python%: install-common-stamp 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