comparison graphics/libwebp/libwebp.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
42 else 42 else
43 with_jpeg="--disable-jpeg" 43 with_jpeg="--disable-jpeg"
44 fi 44 fi
45 45
46 if [ "$PNG" = "yes" ]; then 46 if [ "$PNG" = "yes" ]; then
47 PKGDEPENDS="graphics/libpng $PKGDEPENDS" 47 PKGDEPENDS="libpng $PKGDEPENDS"
48 with_png="--enable-png" 48 with_png="--enable-png"
49 else 49 else
50 with_png="--disable-png" 50 with_png="--disable-png"
51 fi 51 fi
52 52
53 if [ "$TIFF" = "yes" ]; then 53 if [ "$TIFF" = "yes" ]; then
54 PKGDEPENDS="graphics/libtiff $PKGDEPENDS" 54 PKGDEPENDS="libtiff $PKGDEPENDS"
55 with_tiff="--enable-tiff" 55 with_tiff="--enable-tiff"
56 else 56 else
57 with_tiff="--disable-tiff" 57 with_tiff="--disable-tiff"
58 fi 58 fi
59 59