blob: ffba9fe7d2f19e0fa1dd053024709471b22b41fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
pkgname=pygtk
pkgver=2.24.0
pkgrel=9
pkgdesc="Python bindings for the GTK widget set"
url="http://www.pygtk.org/"
arch=(armv7h i686 x86_64)
license=('LGPL')
depends=('libglade' 'python2-cairo' 'python2-gobject2')
makedepends=('python2-numpy' 'pygobject2-devel')
optdepends=('python2-numpy')
source=(https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
python27.patch
fix-leaks-of-pango-objects.patch
drop-pangofont-find_shaper-virtual-method.patch)
sha256sums=('cd1c1ea265bd63ff669e92a2d3c2a88eb26bcd9e5363e0f82c896e649f206912'
'39a30456cba055a452bb55c74ef1ff2f5f7bfaad22855b4dd569ab009b56b682'
'0ca9e910e9bb88897089dd19752a419aa78de15463df766cb19a1d0c2dd45bcb'
'31a2cec9151ae49307d1c307f33f78e49bfcae800f92643c93e0e1b1d29dca80')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
# https://bugzilla.gnome.org/show_bug.cgi?id=623965
# marked upstream as 'WONTFIX'
patch -Np1 -i "${srcdir}/python27.patch"
# https://bugzilla.gnome.org/show_bug.cgi?id=660216
# merged upstream, but not in any stable release
patch -Np1 -i "${srcdir}/fix-leaks-of-pango-objects.patch"
# https://gitlab.gnome.org/Archive/pygtk/-/merge_requests/1
# merged upstream, but not in any stable release
patch -Np1 -i "${srcdir}/drop-pangofont-find_shaper-virtual-method.patch"
# Python 2
sed -i -e 's#env python$#env python2#' examples/pygtk-demo/{,demos/}*.py
# No docs
sed -i '/^SUBDIRS =/s/docs//' Makefile.in
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-docs
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -m644 gtk/gtk-extrafuncs.defs "${pkgdir}/usr/share/pygtk/2.0/defs/"
}
|