summaryrefslogtreecommitdiff
path: root/extra/gnome-python-extras
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-29 01:05:02 -0700
committerroot <root@rshg054.dnsready.net>2013-10-29 01:05:02 -0700
commit38b1ce25596ae456fefb3214a73c3d1005da568f (patch)
tree5cb69842c94bdd2b34b01be22f97b5949237550f /extra/gnome-python-extras
parent1a32448c2c53b0e66ce0fe14c5dd2057afd432bc (diff)
Tue Oct 29 01:04:23 PDT 2013
Diffstat (limited to 'extra/gnome-python-extras')
-rw-r--r--extra/gnome-python-extras/PKGBUILD60
1 files changed, 24 insertions, 36 deletions
diff --git a/extra/gnome-python-extras/PKGBUILD b/extra/gnome-python-extras/PKGBUILD
index 6c6fc9594..ef582b32c 100644
--- a/extra/gnome-python-extras/PKGBUILD
+++ b/extra/gnome-python-extras/PKGBUILD
@@ -1,63 +1,51 @@
-# $Id: PKGBUILD 150866 2012-02-23 13:12:25Z ibiru $
+# $Id: PKGBUILD 197692 2013-10-28 14:46:28Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgbase=gnome-python-extras
-pkgname=('gnome-python-extras' 'python2-egg' 'python2-gksu2' 'python2-gtkhtml2' 'python2-gtkspell')
+pkgname=('gnome-python-extras' 'python2-egg' 'python2-gtkspell')
pkgver=2.25.3
-pkgrel=12
+pkgrel=13
arch=('i686' 'x86_64')
url="http://www.daa.com.au/~james/pygtk/"
license=('GPL' 'LGPL')
-makedepends=('libgtkhtml' 'gtkspell' 'libgksu' 'libgnomeui' 'python2' 'pygtk' 'gnome-python')
+makedepends=('gtkspell' 'libgnomeui' 'python2' 'pygtk' 'gnome-python')
options=('!libtool')
source=(http://ftp.gnome.org/pub/gnome/sources/gnome-python-extras/2.25/gnome-python-extras-${pkgver}.tar.bz2
gnome-python-extras-2.25.3-update-for-2.27.2.patch)
md5sums=('9f3b7ec5c57130b96061cb486b79c076' '0b0a4d93016d14f2306682301de3bda3')
sha1sums=('e69e5288466c960ed6f985bb10c9969b21ed85a4' 'b065efb7f7f5baa7b95b63bcadb6a4623d1bc9e5')
+prepare() {
+ cd $pkgbase-$pkgver
+ patch -Np1 -i ../gnome-python-extras-2.25.3-update-for-2.27.2.patch
+}
+
build() {
- cd "${srcdir}/gnome-python-extras-${pkgver}"
- patch -Np1 -i "${srcdir}"/gnome-python-extras-2.25.3-update-for-2.27.2.patch
- PYTHON=/usr/bin/python2 ./configure --prefix=/usr
- make
+ cd $pkgbase-$pkgver
+ PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-gksu --disable-gtkhtml2 --disable-gksu2 --disable-gksuui
+ make
}
package_gnome-python-extras() {
- pkgdesc="Gnome Python interfaces for libraries not part of the core platform"
- depends=('python2-egg' 'python2-gksu2' 'python2-gtkhtml2' 'python2-gtkspell')
+ pkgdesc="Gnome Python interfaces for libraries not part of the core platform"
+ depends=('python2-egg' 'python2-gtkspell')
- cd "${srcdir}/gnome-python-extras-${pkgver}"
- make install-pkgconfigDATA DESTDIR="${pkgdir}"
+ cd $pkgbase-$pkgver
+ make install-pkgconfigDATA DESTDIR="${pkgdir}"
}
package_python2-egg(){
- pkgdesc="Python bindings for interacting with egg"
- depends=('libgnomeui' 'pygtk')
-
- cd "${srcdir}/gnome-python-extras-${pkgver}"
- make -C egg install DESTDIR="${pkgdir}"
-}
-
-package_python2-gksu2() {
- pkgdesc="Python bindings for the gksu2"
- depends=('libgksu' 'pygtk')
-
- cd "${srcdir}/gnome-python-extras-${pkgver}"
- make -C gksu2 install DESTDIR="${pkgdir}"
-}
-
-package_python2-gtkhtml2() {
- pkgdesc="Python bindings for the gtkhtml2"
- depends=('libgtkhtml' 'pygtk')
+ pkgdesc="Python bindings for interacting with egg"
+ depends=('libgnomeui' 'pygtk')
- cd "${srcdir}/gnome-python-extras-${pkgver}"
- make -C gtkhtml2 install DESTDIR="${pkgdir}"
+ cd $pkgbase-$pkgver
+ make -C egg install DESTDIR="${pkgdir}"
}
package_python2-gtkspell() {
- pkgdesc="Python bindings for the gtkspell"
- depends=('gtkspell' 'pygtk')
+ pkgdesc="Python bindings for the gtkspell"
+ depends=('gtkspell' 'pygtk')
- cd "${srcdir}/gnome-python-extras-${pkgver}"
- make -C gtkspell install DESTDIR="${pkgdir}"
+ cd $pkgbase-$pkgver
+ make -C gtkspell install DESTDIR="${pkgdir}"
}