diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2016-06-24 16:48:29 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-06-24 16:49:52 +0700 |
commit | 144183e7dca5964e5e358d6958f08a2c19d94801 (patch) | |
tree | 56b6769ffe904f5049bae28e5f7181925164ee24 /libraries | |
parent | 3493bf4aaafd6b42994ade95c145f3f3b421c449 (diff) | |
download | slackbuilds-144183e7dca5964e5e358d6958f08a2c19d94801.tar.gz |
libraries/python3-PyQt5: Fix dep and dbus issue.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/python3-PyQt5/python3-PyQt5.SlackBuild | 5 | ||||
-rw-r--r-- | libraries/python3-PyQt5/python3-PyQt5.info | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libraries/python3-PyQt5/python3-PyQt5.SlackBuild b/libraries/python3-PyQt5/python3-PyQt5.SlackBuild index a7a393838a..ed96cb46fe 100644 --- a/libraries/python3-PyQt5/python3-PyQt5.SlackBuild +++ b/libraries/python3-PyQt5/python3-PyQt5.SlackBuild @@ -70,7 +70,7 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$VERSION +rm -rf ${SRCNAM}_gpl-$VERSION tar xvf $CWD/${SRCNAM}_gpl-$VERSION.tar.gz cd ${SRCNAM}_gpl-$VERSION chown -R root:root . @@ -80,6 +80,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# This is needed or an include from dbus is missed (thanks, Archlinux) +sed -i '/target_config.dbus_inc_dirs = \[\]/d' configure.py + export QTDIR=/usr/lib${LIBDIRSUFFIX}/qt5 export QT5DIR=/usr/lib${LIBDIRSUFFIX}/qt5 diff --git a/libraries/python3-PyQt5/python3-PyQt5.info b/libraries/python3-PyQt5/python3-PyQt5.info index 87d9b0a637..f457eed64f 100644 --- a/libraries/python3-PyQt5/python3-PyQt5.info +++ b/libraries/python3-PyQt5/python3-PyQt5.info @@ -5,6 +5,6 @@ DOWNLOAD="http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-5.6/PyQt5_gpl MD5SUM="dbfc885c0548e024ba5260c4f44e0481" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="python3-sip qt5" +REQUIRES="python3-sip qt5-webkit" MAINTAINER="Marcel Saegebarth" EMAIL="marc@mos6581.de" |