2013-05-04 07:55:24 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2014-03-08 23:03:45 +08:00
|
|
|
# maintainer almack@chakra-project.org
|
2013-05-04 07:55:24 +08:00
|
|
|
|
|
|
|
pkgbase=gtk2
|
|
|
|
pkgname=('gtk2' 'gtk-update-icon-cache')
|
2014-03-08 23:03:45 +08:00
|
|
|
pkgver=2.24.22
|
|
|
|
pkgrel=1
|
2013-05-04 07:55:24 +08:00
|
|
|
arch=('x86_64')
|
|
|
|
url="http://www.gtk.org/"
|
|
|
|
makedepends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage'
|
|
|
|
'shared-mime-info' 'cairo' 'libcups' 'gdk-pixbuf2' 'gobject-introspection')
|
2014-03-08 23:03:45 +08:00
|
|
|
options=('!docs')
|
2013-05-04 07:55:24 +08:00
|
|
|
license=('LGPL')
|
|
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-$pkgver.tar.xz"
|
|
|
|
'xid-collision-debug.patch')
|
2014-03-08 23:03:45 +08:00
|
|
|
md5sums=('5fbbfb7637bbd571a572a2dae0e736d2'
|
2013-05-04 07:55:24 +08:00
|
|
|
'22355df723f6ca358e30e6b8f0baace5')
|
|
|
|
|
2013-11-11 02:40:09 +08:00
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/gtk+-${pkgver}"
|
|
|
|
|
|
|
|
patch -Np1 -i "$srcdir/xid-collision-debug.patch"
|
|
|
|
}
|
|
|
|
|
2013-05-04 07:55:24 +08:00
|
|
|
build() {
|
|
|
|
cd "$srcdir/gtk+-$pkgver"
|
2013-11-11 02:40:09 +08:00
|
|
|
|
|
|
|
CXX=/bin/false ./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
2013-05-04 07:55:24 +08:00
|
|
|
--localstatedir=/var \
|
|
|
|
--with-xinput=yes
|
|
|
|
|
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package_gtk2() {
|
|
|
|
pkgdesc="GTK+ is a multi-platform toolkit (v2)"
|
|
|
|
install=gtk2.install
|
|
|
|
depends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' 'shared-mime-info' 'cairo' 'libcups' 'gtk-update-icon-cache')
|
2013-05-06 02:13:44 +08:00
|
|
|
backup=('etc/gtk-2.0/gtkrc' 'extra/etc/gtk-2.0/gtkrc')
|
2013-05-04 07:55:24 +08:00
|
|
|
|
|
|
|
cd "$srcdir/gtk+-$pkgver"
|
|
|
|
|
|
|
|
make DESTDIR="$pkgdir" install
|
2013-11-11 02:40:09 +08:00
|
|
|
sed -i "s#env python#env python2#" $pkgdir/usr/bin/gtk-builder-convert
|
|
|
|
echo 'gtk-fallback-icon-theme = "gnome"' > "$pkgdir/etc/gtk-2.0/gtkrc"
|
2013-05-04 07:55:24 +08:00
|
|
|
#split this out to use with gtk3 too
|
2013-11-11 02:40:09 +08:00
|
|
|
rm $pkgdir/usr/bin/gtk-update-icon-cache
|
2013-05-04 07:55:24 +08:00
|
|
|
}
|
|
|
|
package_gtk-update-icon-cache() {
|
|
|
|
pkgdesc="The GTK+ update icon cache tool"
|
|
|
|
depends=('gdk-pixbuf2')
|
|
|
|
|
|
|
|
cd "$srcdir/gtk+-$pkgver/gtk"
|
|
|
|
|
2013-11-11 02:40:09 +08:00
|
|
|
install -D -m755 gtk-update-icon-cache $pkgdir/usr/bin/gtk-update-icon-cache
|
2013-05-04 07:55:24 +08:00
|
|
|
}
|