comparison graphics/gtk2/gtk2.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents ae55d9077f70
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=2.24.32 19 PKGVERSION=2.24.32
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="LGPLv20" 21 PKGLICENSE="LGPLv20"
22 PKGSUMMARY="multiplatform toolkit" 22 PKGSUMMARY="multiplatform toolkit"
23 PKGDOWNLOAD="https://download.gnome.org/sources/gtk+/2.24/gtk+-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="https://download.gnome.org/sources/gtk+/2.24/gtk+-$PKGVERSION.tar.xz"
24 PKGDEPENDS="accessibility/atk 24 PKGDEPENDS="atk
25 fonts/fontconfig 25 fontconfig
26 graphics/gdk-pixbuf 26 gdk-pixbuf
27 fonts/pango 27 pango
28 lib/glib 28 glib
29 x11/libx11 29 libx11
30 x11/libxcomposite 30 libxcomposite
31 x11/libxcursor 31 libxcursor
32 x11/libxdamage 32 libxdamage
33 x11/libxext 33 libxext
34 x11/libxfixes 34 libxfixes
35 x11/libxi 35 libxi
36 x11/libxinerama 36 libxinerama
37 x11/libxrandr" 37 libxrandr"
38 PKGOPTIONS="CUPS NLS" 38 PKGOPTIONS="CUPS NLS"
39 39
40 : ${CC:=clang} 40 : ${CC:=clang}
41 : ${CFLAGS:=-O2} 41 : ${CFLAGS:=-O2}
42 : ${CXX:=clanclang++} 42 : ${CXX:=clanclang++}
44 : ${LDFLAGS:=} 44 : ${LDFLAGS:=}
45 : ${CUPS:=yes} 45 : ${CUPS:=yes}
46 : ${NLS:=yes} 46 : ${NLS:=yes}
47 47
48 if [ "$CUPS" = "yes" ]; then 48 if [ "$CUPS" = "yes" ]; then
49 PKGDEPENDS="print/cups $PKGDEPENDS" 49 PKGDEPENDS="cups $PKGDEPENDS"
50 with_cups="--enable-cups" 50 with_cups="--enable-cups"
51 else 51 else
52 with_cups="--disable-cups" 52 with_cups="--disable-cups"
53 fi 53 fi
54 54
55 if [ "$NLS" = "yes" ]; then 55 if [ "$NLS" = "yes" ]; then
56 PKGDEPENDS="core/gettext $PKGDEPENDS" 56 PKGDEPENDS="gettext $PKGDEPENDS"
57 with_nls="--enable-nls" 57 with_nls="--enable-nls"
58 else 58 else
59 with_nls="--disable-nls" 59 with_nls="--disable-nls"
60 fi 60 fi
61 61