diff graphics/gdk-pixbuf/gdk-pixbuf.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
line wrap: on
line diff
--- a/graphics/gdk-pixbuf/gdk-pixbuf.sh	Mon Aug 26 20:45:00 2019 +0200
+++ b/graphics/gdk-pixbuf/gdk-pixbuf.sh	Mon Aug 26 12:14:53 2019 +0200
@@ -21,7 +21,7 @@
 PKGLICENSE="LGPLv21"
 PKGSUMMARY="image loading library"
 PKGDOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.38/$PKGNAME-$PKGVERSION.tar.xz"
-PKGDEPENDS="dev/meson:build"
+PKGDEPENDS="meson:build"
 PKGOPTIONS="JASPER JPEG PNG TIFF X"
 
 : ${CC:=clang}
@@ -43,28 +43,28 @@
 fi
 
 if [ "$JPEG" = "yes" ]; then
-	PKGDEPENDS="graphics/libjpeg-turbo $PKGDEPENDS"
+	PKGDEPENDS="libjpeg-turbo $PKGDEPENDS"
 	with_jpeg="-D jpeg=true"
 else
 	with_jpeg="-D jpeg=false"
 fi
 
 if [ "$PNG" = "yes" ]; then
-	PKGDEPENDS="graphics/libpng $PKGDEPENDS"
+	PKGDEPENDS="libpng $PKGDEPENDS"
 	with_png="-D png=true"
 else
 	with_png="-D png=false"
 fi
 
 if [ "$TIFF" = "yes" ]; then
-	PKGDEPENDS="graphics/libtiff $PKGDEPENDS"
+	PKGDEPENDS="libtiff $PKGDEPENDS"
 	with_tiff="-D tiff=true"
 else
 	with_tiff="-D tiff=false"
 fi
 
 if [ "$X" = "yes" ]; then
-	PKGDEPENDS="x11/libx11 $PKGDEPENDS"
+	PKGDEPENDS="libx11 $PKGDEPENDS"
 	with_x="-D x11=true"
 else
 	with_x="-D x11=false"