summaryrefslogtreecommitdiffstats
path: root/dilos/libraries/pytdeextensions/debian/rules
blob: 009b362caca96206e7b29762dc547de78c0b8dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/make -f

DEB_PYTHON_SYSTEM = $(if $(wildcard /usr/bin/dh_python2),,pysupport)
DEB_PYTHON2_MODULE_PACKAGES=pytdeextensions-trinity libpythonize0-trinity

DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)

include /usr/share/cdbs/1/rules/debhelper.mk
ifeq (pysupport, $(DEB_PYTHON_SYSTEM))
  include debian/python-distutils-jaunty.mk
else
  include /usr/share/cdbs/1/class/python-distutils.mk
endif
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
include /usr/share/cdbs/1/rules/utils.mk

DEB_CONFIGURE_INCLUDEDIR := /usr/include
DEB_CONFIGURE_MANDIR := /usr/share/man
DEB_CONFIGURE_PREFIX := /usr
DEB_CONFIGURE_INFODIR := /usr/share/info

export GCCLIBDIR=/usr/gcc/6/lib/64

DEB_PYTHON_INSTALL_ARGS_ALL += \
    --install-clib=/usr/lib/$(DEB_HOST_MULTIARCH) \
    --install-cheaders=/usr/include

cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)

DEB_DH_INSTALL_ARGS = --sourcedir=debian/tmp
DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr --with-extra-libs=/usr/lib/$(DEB_HOST_MULTIARCH) --with-extra-includes=/usr/include

# The default gzip compressor has been changed in dpkg >= 1.17.0.
deb_default_compress = $(shell LANG=C dpkg-deb --version | head -n1 | \
                         sed -e "s|.*version ||" -e "s| .*||" | \
                         xargs -r dpkg --compare-versions 1.17.0 lt \
                         && echo xz || echo gzip)
ifeq ($(deb_default_compress),gzip)
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
                               && echo xz || echo bzip2)
endif

post-patches::
	# make sure that python binary exists
	# since the existing code is still dependent on python2
	# and cdbs uses python as the default binary name
	test -x /usr/bin/python || ln -s python2 /usr/bin/python

install/pytdeextensions-trinity::
	# We have no idea if the built product is site-packages or dist-packages
	cd debian/tmp/usr/lib/python*/ && mv site-packages/ dist-packages/ || echo "site-packages --> dist-packages"
	rm -rf debian/tmp/usr/lib/python*/site-packages/

	# install lintian overrides
	install -D -p -m0644 debian/pytdeextensions-trinity.lintian-overrides \
	  debian/pytdeextensions-trinity/usr/share/lintian/overrides/pytdeextensions-trinity

	# fix script-not-executable
	find debian -type f -name '*.py' | xargs chmod 0755

	# remove extra-license-file
	find debian -type f -name 'COPYING' | xargs rm -f

	# remove  byte-compiled file
	find . -type f -name '*.py[co]' | xargs rm -f

install/libpythonize0-trinity::
	# fix binary-or-shlib-defines-rpath
#	chrpath -d debian/tmp/usr/lib/libpythonize.so.*

clean::
	rm -rf build
	rm -f doc/en/*html doc/en/*bz2
	rm -f install_log.txt

	# remove  byte-compiled file
	find . -type f -name '*.py[co]' | xargs rm -f