You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
185 lines
5.5 KiB
185 lines
5.5 KiB
13 years ago
|
#!/usr/bin/make -f
|
||
|
|
||
|
# Uncomment this to turn on verbose mode.
|
||
|
#export DH_VERBOSE=1
|
||
|
|
||
12 years ago
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||
|
&& echo xz || echo bzip2)
|
||
|
|
||
13 years ago
|
export DH_OPTIONS
|
||
|
|
||
|
-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)
|
||
|
endif
|
||
|
|
||
|
|
||
|
DOC=$(CURDIR)/debian/python-tqt-doc/usr/share/doc/python-tqt-doc
|
||
|
INSTDIR=$(CURDIR)/debian
|
||
|
|
||
6 years ago
|
export TQTDIR=/usr/share/tqt3
|
||
|
export QMAKESPEC=$(TQTDIR)/mkspecs/linux-g++
|
||
13 years ago
|
|
||
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
||
|
CXXFLAGS += -O0
|
||
|
else
|
||
|
CXXFLAGS += -O1
|
||
|
endif
|
||
13 years ago
|
CXXFLAGS += "-I/usr/include/tqt"
|
||
13 years ago
|
|
||
|
PYTHONS := $(shell pyversions -vr debian/control)
|
||
|
|
||
11 years ago
|
DEB_PYTHON_SYSTEM = $(if $(wildcard /usr/bin/dh_python2),,pysupport)
|
||
|
DH_PYTHON2 = $(if $(wildcard /usr/bin/dh_python2),dh_python2,dh_pysupport)
|
||
|
|
||
13 years ago
|
|
||
|
GCCVER := $(shell gcc --version | sed -n '/^gcc (GCC)/s/.*(GCC) \(...\).*/\1/p')
|
||
|
ifneq (,$(filter $(GCCVER),4.2 4.3))
|
||
|
SPLIT=40
|
||
|
else
|
||
|
SPLIT=10
|
||
|
endif
|
||
|
|
||
|
.PRECIOUS: build-%/configure-stamp dbg-build-%/configure-stamp
|
||
|
|
||
|
configure: $(PYTHONS:%=build-%/configure-stamp) $(PYTHONS:%=dbg-build-%/configure-stamp)
|
||
|
build-%/configure-stamp:
|
||
|
dh_testdir
|
||
|
mkdir -p build-$*
|
||
|
cd build-$* && echo yes \
|
||
|
| python$* ../configure.py \
|
||
13 years ago
|
-c -n /usr/include/tqscintilla \
|
||
10 years ago
|
-e python$* \
|
||
13 years ago
|
-o /usr/lib -u -j $(SPLIT) \
|
||
11 years ago
|
-d /usr/lib/python$*/$(call py_sitename,$*)/python_tqt \
|
||
13 years ago
|
-l /usr/include/python$* \
|
||
|
-v /usr/share/sip/tqt \
|
||
|
-m /usr/lib/python$*/config \
|
||
|
CXXFLAGS_RELEASE="" CXXFLAGS="${CXXFLAGS}" STRIP=""
|
||
|
touch $@
|
||
|
|
||
|
dbg-build-%/configure-stamp:
|
||
|
dh_testdir
|
||
|
mkdir -p dbg-build-$*
|
||
|
cd dbg-build-$* && echo yes \
|
||
|
| python$*-dbg ../configure.py \
|
||
13 years ago
|
-c -n /usr/include/tqscintilla \
|
||
10 years ago
|
-e python$* \
|
||
13 years ago
|
-o /usr/lib -u -j $(SPLIT) \
|
||
11 years ago
|
-d /usr/lib/python$*/$(call py_sitename,$*)/python_tqt \
|
||
13 years ago
|
-l /usr/include/python$*_d \
|
||
|
-v /usr/share/sip/tqt \
|
||
|
-m /usr/lib/python$*/config_d \
|
||
13 years ago
|
CXXFLAGS_RELEASE="" CXXFLAGS="-O0 -g -I/usr/include/tqt" STRIP=""
|
||
13 years ago
|
touch $@
|
||
|
|
||
8 years ago
|
build build-arch: $(PYTHONS:%=build-%/build-stamp) $(PYTHONS:%=dbg-build-%/build-stamp)
|
||
|
build-indep:
|
||
13 years ago
|
|
||
|
build-%/build-stamp: build-%/configure-stamp
|
||
|
dh_testdir
|
||
|
$(MAKE) -C build-$*
|
||
|
touch $@
|
||
|
|
||
|
dbg-build-%/build-stamp: dbg-build-%/configure-stamp
|
||
|
dh_testdir
|
||
|
$(MAKE) -C dbg-build-$*
|
||
|
touch $@
|
||
|
|
||
|
install-indep: configure
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_clean -k -i
|
||
|
dh_installdirs -i
|
||
|
for version in ${PYTHONS}; do\
|
||
11 years ago
|
pylib=$$(python$$version -c 'from distutils import sysconfig; print sysconfig.get_python_lib()')/python_tqt; \
|
||
13 years ago
|
mkdir -p debian/python-tqt-dev/$$pylib;\
|
||
13 years ago
|
install -m 644 -o root -g root build-$$version/pyqtconfig.py debian/python-tqt-dev/$$pylib;\
|
||
13 years ago
|
done
|
||
|
dh_install -i
|
||
|
|
||
|
install-arch: build
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_clean -k -a
|
||
|
dh_installdirs -a
|
||
|
for version in ${PYTHONS}; do \
|
||
|
$(MAKE) -C build-$$version install DESTDIR=$(CURDIR)/debian/tmp;\
|
||
|
done
|
||
|
for version in ${PYTHONS}; do \
|
||
11 years ago
|
pylib=$$(python$$version -c 'from distutils import sysconfig; print sysconfig.get_python_lib()')/python_tqt; \
|
||
13 years ago
|
$(MAKE) -C dbg-build-$$version install DESTDIR=$(CURDIR)/debian/python-tqt-dbg;\
|
||
11 years ago
|
mkdir -p debian/python-tqt/$$pylib;\
|
||
8 years ago
|
cp -a debian/tmp/$$pylib/__init__.py \
|
||
|
debian/python-tqt/$$pylib/__init__.py;\
|
||
13 years ago
|
mkdir -p debian/python-tqt-gl-dbg/$$pylib;\
|
||
|
mv debian/python-tqt-dbg/$$pylib/qtgl.so \
|
||
|
debian/python-tqt-gl-dbg/$$pylib/;\
|
||
13 years ago
|
mkdir -p debian/python-tqtext-dbg/$$pylib;\
|
||
13 years ago
|
mv debian/python-tqt-dbg/$$pylib/qtext.so \
|
||
|
debian/python-tqtext-dbg/$$pylib/;\
|
||
|
done
|
||
|
|
||
|
dh_install -a --sourcedir=$(CURDIR)/debian/tmp
|
||
|
|
||
|
for i in $$(find debian/python-*-dbg -name '*.so'); do \
|
||
|
b=$$(basename $$i .so); \
|
||
|
mv $$i $$(dirname $$i)/$${b}_d.so; \
|
||
|
done
|
||
|
find debian/python-*-dbg ! -type d \
|
||
|
! \( -name '*.so' -o -name '*config_d.py' \) | xargs rm -f
|
||
|
find debian/python-*-dbg -depth -type d -empty -exec rmdir {} \;
|
||
|
|
||
|
clean:
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
rm -rf $(PYTHONS:%=build-%) $(PYTHONS:%=dbg-build-%)
|
||
|
rm -f *-stamp
|
||
|
dh_clean
|
||
|
|
||
|
# Must not depend on anything. This is to be called by
|
||
|
# binary-arch/binary-indep
|
||
|
# in another 'make' thread.
|
||
|
binary-common:
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_installman
|
||
|
dh_installchangelogs ChangeLog
|
||
|
dh_installdocs -A NEWS THANKS
|
||
|
dh_installexamples
|
||
|
dh_link
|
||
|
ifeq (,$(findstring -i, $(DH_OPTIONS)))
|
||
|
DH_OPTIONS= dh_strip -ppytqt-tools
|
||
|
set -e; \
|
||
|
for p in python-tqt python-tqt-gl python-tqtext; do \
|
||
|
DH_OPTIONS= dh_strip -p$$p --dbg-package=$$p-dbg; \
|
||
|
rm -rf debian/$$p-dbg/usr/share/doc/$$p-dbg; \
|
||
|
ln -s $$p debian/$$p-dbg/usr/share/doc/$$p-dbg; \
|
||
|
done
|
||
|
endif
|
||
|
# dh_strip
|
||
|
dh_compress -X.py -X.bmp -X.ui -X.sql
|
||
|
dh_fixperms
|
||
11 years ago
|
${DH_PYTHON2}
|
||
11 years ago
|
dh_sip_tqt
|
||
13 years ago
|
dh_lintian
|
||
|
dh_installdeb
|
||
|
dh_shlibdeps
|
||
|
dh_gencontrol
|
||
|
dh_md5sums
|
||
12 years ago
|
dh_builddeb $(DEB_DH_BUILDDEB_ARGS)
|
||
13 years ago
|
|
||
|
# Build architecture independant packages using the common target.
|
||
|
binary-indep: install-indep
|
||
|
$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
|
||
|
|
||
|
# Build architecture dependant packages using the common target.
|
||
|
binary-arch: install-arch
|
||
|
$(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
|
||
|
|
||
|
binary: binary-arch binary-indep
|
||
8 years ago
|
.PHONY: build build-arch clean binary-indep binary-arch binary configure
|