blob: 98d18d436fb06604e2c9d15d2b615967ee80e886 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gtk+3.0
pkgver=3.6.1
pkgrel=0
pkgdesc="The GTK+ Toolkit (v3)"
url="http://www.gtk.org/"
install="$pkgname.post-install $pkgname.post-upgrade $pkgname.post-deinstall"
triggers="$pkgname.trigger=/usr/share/icons/*"
arch="all"
license="LGPL"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
depends="shared-mime-info"
replaces="gtk+"
replaces_dev="gtk+-dev"
replaces_doc="gtk+-doc"
# depend on gtk+2.0 for update-icon-cache
depends="gtk+2.0"
depends_dev="
atk-dev
at-spi2-atk-dev
cairo-dev
fontconfig-dev
gdk-pixbuf-dev
glib-dev
intltool
libx11-dev
libxext-dev
libxi-dev
pango-dev
libxcomposite-dev
libxcursor-dev
libxdamage-dev
libxfixes-dev
libxrandr-dev
"
makedepends="pkgconfig
$depends_dev
cups-dev
expat-dev
gettext-dev
gnutls-dev
gobject-introspection-dev
libice-dev
libiconv-dev
jpeg-dev>=8
tiff-dev
zlib-dev"
source="http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz"
_builddir="$srcdir"/gtk+-$pkgver
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
|| return 1
# the configure script checks if isnan is a function. In uclibc
# isnan is there, but as a macro
# https://bugzilla.gnome.org/show_bug.cgi?id=676087
echo "#define HAVE_ISNAN 1" >> config.h
echo "#define HAVE_ISINF 1" >> config.h
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
# use gtk+2.0's for now
rm "$pkgdir"/usr/bin/gtk-update-icon-cache
find "$pkgdir" -name *.la -delete
}
md5sums="2f5905dd721321fc1586b0843417339d gtk+-3.6.1.tar.xz"
|