comparison text/libxml2/libxml2.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 0e6c54d47dfb
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
33 : ${LZMA:=no} 33 : ${LZMA:=no}
34 : ${PYTHON:=yes} 34 : ${PYTHON:=yes}
35 : ${ZLIB:=no} 35 : ${ZLIB:=no}
36 36
37 if [ "$ICU" = "yes" ]; then 37 if [ "$ICU" = "yes" ]; then
38 PKGDEPENDS="lib/icu $PKGDEPENDS" 38 PKGDEPENDS="icu $PKGDEPENDS"
39 with_icu="--with-icu" 39 with_icu="--with-icu"
40 else 40 else
41 with_icu="--without-icu" 41 with_icu="--without-icu"
42 fi 42 fi
43 43
44 if [ "$LZMA" = "yes" ]; then 44 if [ "$LZMA" = "yes" ]; then
45 PKGDEPENDS="compression/xz $PKGDEPENDS" 45 PKGDEPENDS="xz $PKGDEPENDS"
46 with_lzma="--with-lzma" 46 with_lzma="--with-lzma"
47 else 47 else
48 with_lzma="--without-lzma" 48 with_lzma="--without-lzma"
49 fi 49 fi
50 50
51 if [ "$PYTHON" = "yes" ]; then 51 if [ "$PYTHON" = "yes" ]; then
52 PKGDEPENDS="python/python $PKGDEPENDS" 52 PKGDEPENDS="python $PKGDEPENDS"
53 with_python="--with-python" 53 with_python="--with-python"
54 else 54 else
55 with_python="--without-python" 55 with_python="--without-python"
56 fi 56 fi
57 57
58 if [ "$ZLIB" = "yes" ]; then 58 if [ "$ZLIB" = "yes" ]; then
59 PKGDEPENDS="compression/zlib $PKGDEPENDS" 59 PKGDEPENDS="zlib $PKGDEPENDS"
60 with_zlib="--with-zlib" 60 with_zlib="--with-zlib"
61 else 61 else
62 with_zlib="--without-zlib" 62 with_zlib="--without-zlib"
63 fi 63 fi
64 64