comparison graphics/wayland/wayland.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 2a99d51e3ad3
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=1.16.93 19 PKGVERSION=1.16.93
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="MIT" 21 PKGLICENSE="MIT"
22 PKGSUMMARY="displayer server protocol" 22 PKGSUMMARY="displayer server protocol"
23 PKGDOWNLOAD="https://wayland.freedesktop.org/releases/$PKGNAME-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="https://wayland.freedesktop.org/releases/$PKGNAME-$PKGVERSION.tar.xz"
24 PKGDEPENDS="lib/expat" 24 PKGDEPENDS="expat"
25 PKGOPTIONS="DTD DOCS" 25 PKGOPTIONS="DTD DOCS"
26 26
27 : ${CHOST:=$(uname -m)-linux-musl} 27 : ${CHOST:=$(uname -m)-linux-musl}
28 : ${CBUILD:=$(uname -m)-linux-musl} 28 : ${CBUILD:=$(uname -m)-linux-musl}
29 : ${CC:=clang} 29 : ${CC:=clang}
32 : ${LIBS:=} 32 : ${LIBS:=}
33 : ${DTD:=yes} 33 : ${DTD:=yes}
34 : ${DOCS:=yes} 34 : ${DOCS:=yes}
35 35
36 if [ "$DTD" = "yes" ]; then 36 if [ "$DTD" = "yes" ]; then
37 PKGDEPENDS="text/libxml2 $PKGDEPENDS" 37 PKGDEPENDS="libxml2 $PKGDEPENDS"
38 with_dtd="--enable-dtd-validation" 38 with_dtd="--enable-dtd-validation"
39 else 39 else
40 with_dtd="--disable-dtd-validation" 40 with_dtd="--disable-dtd-validation"
41 fi 41 fi
42 42
43 if [ "$DOCS" = "yes" ]; then 43 if [ "$DOCS" = "yes" ]; then
44 PKGDEPENDS="graphics/graphviz:build dev/doxygen:build text/xmlto:build $PKGDEPENDS" 44 PKGDEPENDS="graphviz:build doxygen:build xmlto:build $PKGDEPENDS"
45 with_docs="--enable-documentation" 45 with_docs="--enable-documentation"
46 else 46 else
47 with_docs="--disable-documentation" 47 with_docs="--disable-documentation"
48 fi 48 fi
49 49