diff options
Diffstat (limited to 'extra/gtk3/PKGBUILD')
-rw-r--r-- | extra/gtk3/PKGBUILD | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/extra/gtk3/PKGBUILD b/extra/gtk3/PKGBUILD index 1e3fe6829..78c720d81 100644 --- a/extra/gtk3/PKGBUILD +++ b/extra/gtk3/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 170567 2012-11-08 21:26:53Z jgc $ +# $Id: PKGBUILD 170745 2012-11-10 22:04:15Z heftig $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=gtk3 -pkgver=3.6.1 -pkgrel=2 +pkgver=3.6.2 +pkgrel=1 pkgdesc="GObject-based multi-platform GUI toolkit (v3)" arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" @@ -14,29 +14,25 @@ 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' +sha256sums=('aaccf2e1576338acf37816290578e8f19888935f381665b3847076be25fe513c' '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 \ --enable-gtk2-dependency \ --disable-schemas-compile + #https://bugzilla.gnome.org/show_bug.cgi?id=655517 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make } |