comparison accessibility/at-spi2-core/at-spi2-core.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 e91fbcb3d1ef
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=2.32.0 19 PKGVERSION=2.32.0
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="LGPLv20" 21 PKGLICENSE="LGPLv20"
22 PKGSUMMARY="core definitions for at-spi" 22 PKGSUMMARY="core definitions for at-spi"
23 PKGDOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/$PKGNAME/2.32/$PKGNAME-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/$PKGNAME/2.32/$PKGNAME-$PKGVERSION.tar.xz"
24 PKGDEPENDS="dev/meson:build" 24 PKGDEPENDS="meson:build"
25 PKGOPTIONS="X" 25 PKGOPTIONS="X"
26 26
27 : ${CC:=clang} 27 : ${CC:=clang}
28 : ${CFLAGS:=-O2} 28 : ${CFLAGS:=-O2}
29 : ${CXX:=clang++} 29 : ${CXX:=clang++}
30 : ${CXXFLAGS:=-O2} 30 : ${CXXFLAGS:=-O2}
31 : ${LDFLAGS:=} 31 : ${LDFLAGS:=}
32 : ${X:=yes} 32 : ${X:=yes}
33 33
34 if [ "$X" = "yes" ]; then 34 if [ "$X" = "yes" ]; then
35 PKGDEPENDS="x11/libx11 x11/libxtst x11/libxi $PKGDEPENDS" 35 PKGDEPENDS="libx11 libxtst libxi $PKGDEPENDS"
36 with_x="-D x11=true" 36 with_x="-D x11=true"
37 else 37 else
38 with_x="-D x11=false" 38 with_x="-D x11=false"
39 fi 39 fi
40 40