diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-04-30 17:20:56 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-04-30 17:20:56 (GMT) |
commit | a1e995a84b1f462b26608f12d6ff3a20031f2579 (patch) | |
tree | a32ed32f234257b59ed81fa68f66ecf28c8cb9d5 /abs/extra-testing/gnome-python-extras | |
parent | 492623758d38a102bc70255c7522cdd4bf751631 (diff) | |
download | linhes_pkgbuild-a1e995a84b1f462b26608f12d6ff3a20031f2579.zip linhes_pkgbuild-a1e995a84b1f462b26608f12d6ff3a20031f2579.tar.gz linhes_pkgbuild-a1e995a84b1f462b26608f12d6ff3a20031f2579.tar.bz2 |
Latest needed for Miro.
Diffstat (limited to 'abs/extra-testing/gnome-python-extras')
-rw-r--r-- | abs/extra-testing/gnome-python-extras/PKGBUILD | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/abs/extra-testing/gnome-python-extras/PKGBUILD b/abs/extra-testing/gnome-python-extras/PKGBUILD index d169b8f..297ef68 100644 --- a/abs/extra-testing/gnome-python-extras/PKGBUILD +++ b/abs/extra-testing/gnome-python-extras/PKGBUILD @@ -1,29 +1,23 @@ -# $Id: PKGBUILD 16741 2008-10-22 03:06:30Z allan $ +# $Id: PKGBUILD 35285 2009-04-11 20:46:50Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gnome-python-extras -pkgver=2.19.1 -pkgrel=3 +pkgver=2.25.3 +pkgrel=1 pkgdesc="Gnome Python interfaces for libraries not part of the core platform" arch=(i686 x86_64) license=('GPL' 'LGPL') depends=('gnome-python>=2.22.1') -makedepends=('libgtkhtml' 'gtkspell' 'gdl' 'xulrunner>=1.9' 'libgksu' 'pkgconfig') +makedepends=('libgtkhtml' 'gtkspell' 'gdl' 'xulrunner>=1.9' 'libgksu' 'pkgconfig' 'libgnomeui' 'libgda') +optdepends=('libgtkhtml' 'gtkspell' 'gdl' 'xulrunner' 'libgksu' 'libgnomeui' 'libgda') options=('!libtool') -source=(http://ftp.gnome.org/pub/gnome/sources/gnome-python-extras/2.19/gnome-python-extras-${pkgver}.tar.bz2 - gnome-python-extras-2.19.1-pkg-config.patch - gnome-python-extras-2.19.1-xulrunner.patch) +source=(http://ftp.gnome.org/pub/gnome/sources/gnome-python-extras/2.25/gnome-python-extras-${pkgver}.tar.bz2) url="http://www.daa.com.au/~james/pygtk/" -md5sums=('08896c63d71ce44d20fafbaf9c0edc78' - 'be993cc1e60c090c58db8317a1862213' - '73657335e522f361d08ccc4899d279d6') +md5sums=('9f3b7ec5c57130b96061cb486b79c076') build() { - cd ${startdir}/src/gnome-python-extras-${pkgver} - patch -Np1 -i ${srcdir}/gnome-python-extras-2.19.1-pkg-config.patch || return 1 - patch -Np1 -i ${srcdir}/gnome-python-extras-2.19.1-xulrunner.patch || return 1 - sed -i "s|#include <gdl/gdl-icons.h>||" gdl/gdl.override || return 1 - ./configure --prefix=/usr --with-gtkmozembed=xulrunner || return 1 + cd "${srcdir}/gnome-python-extras-${pkgver}" + ./configure --prefix=/usr || return 1 make MOZILLA_HOME=/usr/lib/xulrunner-1.9 || return 1 - make DESTDIR=${startdir}/pkg install || return 1 + make DESTDIR="${pkgdir}" install || return 1 } |