diff options
Diffstat (limited to 'extra/gtk3/PKGBUILD')
-rw-r--r-- | extra/gtk3/PKGBUILD | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/extra/gtk3/PKGBUILD b/extra/gtk3/PKGBUILD index 582870046..b011bda16 100644 --- a/extra/gtk3/PKGBUILD +++ b/extra/gtk3/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 169935 2012-10-30 22:45:43Z heftig $ +# $Id: PKGBUILD 170567 2012-11-08 21:26:53Z jgc $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=gtk3 pkgver=3.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="GObject-based multi-platform GUI toolkit (v3)" arch=('i686' 'x86_64') url="http://www.gtk.org/" @@ -14,16 +14,22 @@ options=('!libtool') backup=(etc/gtk-3.0/settings.ini) license=('LGPL') source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz + git-fixes.patch settings.ini wacom.patch) sha256sums=('fe6c89ae40145b077d7291105e81d4f876be01bf21ddfb9cba449f6be49d7996' + '7a6c2597faf616302455597f4720a8a8b151ffbea700e45affc4818620f31f36' 'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621' '86bda95a14a99d0f596c4ecb2ed715689f71c207c65dfc90a39d4ae7f1c0c0f5') build() { cd "gtk+-$pkgver" + # Apply fixes from upstream git. Mainly memleak and rendering fixes + patch -Np1 -i ../git-fixes.patch # Partially revert BGO#673440 in order to fix BGO#674157 patch -Np1 -i ../wacom.patch + autoreconf -fi + CXX=/bin/false ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ |