8eec57a179
Switch to python3-* pkgs. Convert python3.4-* pkgs into dummy pkgs.
137 lines
4 KiB
Bash
137 lines
4 KiB
Bash
# Template file for 'python-PyQt4'
|
|
pkgname=python-PyQt4
|
|
version=4.11.4
|
|
revision=6
|
|
wrksrc="PyQt-x11-gpl-${version}"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="python-devel python3-devel python-sip-devel python3-sip-devel
|
|
qt-devel qt-webkit-devel dbus-devel python-dbus-devel MesaLib-devel phonon-devel"
|
|
depends="python-sip"
|
|
pycompile_module="PyQt4"
|
|
short_desc="Python2 bindings for the Qt4 toolkit"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://www.riverbankcomputing.co.uk/software/pyqt/intro"
|
|
license="GPL-2, GPL-3"
|
|
distfiles="${SOURCEFORGE_SITE}/pyqt/PyQt-x11-gpl-${version}.tar.gz"
|
|
checksum=fc1fe77495432ba3b0d74ff5cb164d375a97f5dddb728256330f615a7cdcf407
|
|
alternatives="pyqt4:pyuic4:/usr/bin/python2-pyuic4"
|
|
|
|
pre_build() {
|
|
mkdir -p pyqt4-${py2_ver}
|
|
mv * pyqt4-${py2_ver} || true
|
|
cp -a pyqt4-${py2_ver} pyqt4-${py3_ver}
|
|
rm -rf pyqt4-${py2_ver}/pyuic/uic/port_v3
|
|
rm -rf pyqt4-${py3_ver}/pyuic/uic/port_v2
|
|
}
|
|
do_build() {
|
|
local tools=
|
|
|
|
for pyver in $py2_ver $py3_ver; do
|
|
if [ "$pyver" != "$py2_ver" ]; then
|
|
tools="--no-tools"
|
|
fi
|
|
|
|
cd $wrksrc/pyqt4-$pyver
|
|
python${pyver} configure-ng.py --confirm-license --assume-shared $tools \
|
|
CC="${CC}" CFLAGS="${CFLAGS}" CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \
|
|
LINK="${CXX}" LINK_SHLIB="${CXX}" LFLAGS="${LDFLAGS}" STRIP=""
|
|
find -name Makefile -exec sed -i "{}" \
|
|
-e "s;^\(CXXFLAGS.*=.*\);& $CXXFLAGS;" \
|
|
-e "s;^\(LFLAGS.*=.*\);& $LDFLAGS;" \;
|
|
make ${makejobs}
|
|
done
|
|
}
|
|
do_install() {
|
|
# install python{,3}-pyqt4
|
|
make -C pyqt4-${py2_ver} DESTDIR=${DESTDIR} INSTALL_ROOT=${DESTDIR} install
|
|
make -C pyqt4-${py3_ver} DESTDIR=${DESTDIR} INSTALL_ROOT=${DESTDIR} install
|
|
|
|
cd pyqt4-${py2_ver}
|
|
# create versioned pyuic4 wrapper
|
|
mv ${DESTDIR}/usr/bin/{,python2-}pyuic4
|
|
sed -i "s,python2.7,python${py3_ver},g" pyuic4
|
|
vbin pyuic4 python3-pyuic4
|
|
|
|
# install doc
|
|
vmkdir usr/share/doc/${pkgname}
|
|
vcopy doc/html usr/share/doc/${pkgname}
|
|
}
|
|
|
|
python-PyQt4-devel-tools_package() {
|
|
short_desc+=" - development tools"
|
|
pkg_install() {
|
|
vmove usr/bin/pylupdate4
|
|
vmove usr/bin/pyrcc4
|
|
}
|
|
}
|
|
python-PyQt4-devel_package() {
|
|
depends="python-sip-devel python3-sip-devel
|
|
python-PyQt4-${version}_${revision} python3-PyQt4-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/share/sip
|
|
}
|
|
}
|
|
python-PyQt4-dbus_package() {
|
|
depends="${sourcepkg}-${version}_${revision} python-dbus"
|
|
short_desc+=" - dbus support"
|
|
pkg_install() {
|
|
vmove ${py2_sitelib}/dbus/mainloop/qt.so
|
|
}
|
|
}
|
|
python-PyQt4-phonon_package() {
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - phonon bindings"
|
|
pkg_install() {
|
|
vmove ${py2_sitelib}/PyQt4/phonon.so
|
|
}
|
|
}
|
|
python-PyQt4-doc_package() {
|
|
noarch=yes
|
|
short_desc+=" - documentation files"
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
python3-PyQt4_package() {
|
|
depends="python3-sip"
|
|
pycompile_module="PyQt4"
|
|
replaces="python3.4-PyQt4>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="pyqt4:pyuic4:/usr/bin/python3-pyuic4"
|
|
pkg_install() {
|
|
vmove usr/bin/python3-pyuic4
|
|
vmove ${py3_sitelib}
|
|
}
|
|
}
|
|
python3-PyQt4-dbus_package() {
|
|
replaces="python3.4-PyQt4-dbus>=0"
|
|
depends="python3-PyQt4-${version}_${revision} python3-dbus"
|
|
short_desc="${short_desc/Python2/Python3} - dbus support"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}/dbus/mainloop/qt.so
|
|
}
|
|
}
|
|
python3-PyQt4-phonon_package() {
|
|
replaces="python3.4-PyQt4-phonon>=0"
|
|
depends="python3-PyQt4-${version}_${revision}"
|
|
short_desc="${short_desc/Python2/Python3} - phonon bindings"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}/PyQt4/phonon.so
|
|
}
|
|
}
|
|
python3.4-PyQt4_package() {
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-PyQt4>=${version}_${revision}"
|
|
}
|
|
python3.4-PyQt4-dbus_package() {
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} - dbus support (transitional dummy package)"
|
|
depends="python3-PyQt4-dbus>=${version}_${revision}"
|
|
}
|
|
python3.4-PyQt4-phonon_package() {
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} - phonon bindings (transitional dummy package)"
|
|
depends="python3-PyQt4-phonon>=${version}_${revision}"
|
|
}
|