comparison xfce/libxfce4ui/libxfce4ui.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=4.14.1 19 PKGVERSION=4.14.1
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="LGPLv20" 21 PKGLICENSE="LGPLv20"
22 PKGSUMMARY="Xfce user interface library" 22 PKGSUMMARY="Xfce user interface library"
23 PKGDOWNLOAD="http://archive.xfce.org/xfce/${PKGVERSION%.*}/src/$PKGNAME-$PKGVERSION.tar.bz2" 23 PKGDOWNLOAD="http://archive.xfce.org/xfce/${PKGVERSION%.*}/src/$PKGNAME-$PKGVERSION.tar.bz2"
24 PKGDEPENDS="graphics/gtk 24 PKGDEPENDS="gtk
25 lib/glib 25 glib
26 x11/libsm 26 libsm
27 x11/libx11 27 libx11
28 xfce/libxfce4util 28 libxfce4util
29 xfce/xfconf" 29 xfconf"
30 PKGOPTIONS="INTROSPECTION NLS STARTUP VALA" 30 PKGOPTIONS="INTROSPECTION NLS STARTUP VALA"
31 31
32 : ${CHOST:=$(uname -m)-linux-musl} 32 : ${CHOST:=$(uname -m)-linux-musl}
33 : ${CBUILD:=$(uname -m)-linux-musl} 33 : ${CBUILD:=$(uname -m)-linux-musl}
34 : ${CC:=clang} 34 : ${CC:=clang}
39 : ${NLS:=yes} 39 : ${NLS:=yes}
40 : ${STARTUP:=yes} 40 : ${STARTUP:=yes}
41 : ${VALA:=yes} 41 : ${VALA:=yes}
42 42
43 if [ "$INTROSPECTION" = "yes" ]; then 43 if [ "$INTROSPECTION" = "yes" ]; then
44 PKGDEPENDS="dev/gobject-introspection:build $PKGDEPENDS" 44 PKGDEPENDS="gobject-introspection:build $PKGDEPENDS"
45 with_introspection="--enable-introspection" 45 with_introspection="--enable-introspection"
46 else 46 else
47 with_introspection="--disable-introspection" 47 with_introspection="--disable-introspection"
48 fi 48 fi
49 49
50 if [ "$NLS" = "yes" ]; then 50 if [ "$NLS" = "yes" ]; then
51 PKGDEPENDS="core/gettext $PKGDEPENDS" 51 PKGDEPENDS="gettext $PKGDEPENDS"
52 with_nls="--enable-nls" 52 with_nls="--enable-nls"
53 else 53 else
54 with_nls="--disable-nls" 54 with_nls="--disable-nls"
55 fi 55 fi
56 56
57 if [ "$STARTUP" = "yes" ]; then 57 if [ "$STARTUP" = "yes" ]; then
58 PKGDEPENDS="desktop/startup-notification $PKGDEPENDS" 58 PKGDEPENDS="startup-notification $PKGDEPENDS"
59 with_startup="--enable-startup-notification" 59 with_startup="--enable-startup-notification"
60 else 60 else
61 with_startup="--disable-startup-notification" 61 with_startup="--disable-startup-notification"
62 fi 62 fi
63 63
64 if [ "$VALA" = "yes" ]; then 64 if [ "$VALA" = "yes" ]; then
65 PKGDEPENDS="lang/vala $PKGDEPENDS" 65 PKGDEPENDS="vala $PKGDEPENDS"
66 with_vala="--enable-vala" 66 with_vala="--enable-vala"
67 else 67 else
68 with_vala="--disable-vala" 68 with_vala="--disable-vala"
69 fi 69 fi
70 70