X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=debian%2Frules;h=e0701250de2a67f534cb811a690f8a6b271f877f;hb=2d7eb66e602a5c53dc2fafd70aa6ec4d7b447be9;hp=6430e061c28ccc5edb064bc0038e38e2f36ccf78;hpb=816d3c844963edd0b166b7db98b0c810417af848;p=pkg-rrdtool.git diff --git a/debian/rules b/debian/rules index 6430e06..e070125 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 @@ -170,8 +181,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