Date: Wednesday, July 14, 2010 @ 06:50:41 Author: andrea Revision: 85477
upgpkg: pyqt 4.7.4-2 cleanup dependencies; add missing qscintilla api Modified: pyqt/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2010-07-14 10:44:08 UTC (rev 85476) +++ PKGBUILD 2010-07-14 10:50:41 UTC (rev 85477) @@ -5,14 +5,14 @@ pkgname=pyqt pkgver=4.7.4 -pkgrel=1 +pkgrel=2 pkgdesc="A set of Python bindings for the Qt toolkit" arch=('i686' 'x86_64') url="http://riverbankcomputing.co.uk/software/pyqt/intro" license=('GPL') -depends=('sip' 'qscintilla' 'dbus-python' 'openssl') +depends=('sip' 'qt' 'dbus-python') makedepends=('phonon' 'python-opengl') -optdepends=('phonon' 'python-opengl') +optdepends=('phonon' 'python-opengl' 'qscintilla') provides=('pyqt4') replaces=('pyqt4') conflicts=('pyqt4') @@ -22,10 +22,10 @@ build() { cd ${srcdir}/PyQt-x11-gpl-${pkgver} - python configure.py --confirm-license \ - -b /usr/bin \ - -d /usr/lib/python2.6/site-packages \ - -v /usr/share/sip + python configure.py \ + --confirm-license \ + -v /usr/share/sip \ + --qsci-api # Thanks Gerardo for the rpath fix find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g' @@ -36,5 +36,5 @@ package(){ cd ${srcdir}/PyQt-x11-gpl-${pkgver} # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use DESTDIR - make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install + make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install }