diff graphics/graphviz/graphviz.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 6633bc51db0e
children 25a95c53d800
line wrap: on
line diff
--- a/graphics/graphviz/graphviz.sh	Mon Aug 26 20:45:00 2019 +0200
+++ b/graphics/graphviz/graphviz.sh	Mon Aug 26 12:14:53 2019 +0200
@@ -21,7 +21,7 @@
 PKGLICENSE="CUSTOM"
 PKGSUMMARY="graph drawing programs"
 PKGDOWNLOAD="http://files.malikania.fr/distfiles/$PKGNAME-$PKGVERSION.tar.gz"
-PKGDEPENDS="dev/libtool shells/bash:build"
+PKGDEPENDS="libtool bash:build"
 PKGOPTIONS="FONTCONFIG FREETYPE GD GTK PANGO WEBP X XML"
 
 : ${CHOST:=$(uname -m)-linux-musl}
@@ -42,35 +42,35 @@
 : ${XML:=yes}
 
 if [ "$FONTCONFIG" = "yes" ]; then
-	PKGDEPENDS="fonts/fontconfig $PKGDEPENDS"
+	PKGDEPENDS="fontconfig $PKGDEPENDS"
 	with_fontconfig="--with-fontconfig"
 else
 	with_fontconfig="--without-fontconfig"
 fi
 
 if [ "$FREETYPE" = "yes" ]; then
-	PKGDEPENDS="fonts/freetype $PKGDEPENDS"
+	PKGDEPENDS="freetype $PKGDEPENDS"
 	with_freetype="--with-freetype2"
 else
 	with_freetype="--without-freetype2"
 fi
 
 if [ "$GD" = "yes" ]; then
-	PKGDEPENDS="graphics/libgd $PKGDEPENDS"
+	PKGDEPENDS="libgd $PKGDEPENDS"
 	with_gd="--with-libgd"
 else
 	with_gd="--without-libgd"
 fi
 
 if [ "$GTK" = "yes" ]; then
-	PKGDEPENDS="graphics/gtk $PKGDEPENDS"
+	PKGDEPENDS="gtk $PKGDEPENDS"
 	with_gtk="--with-gdk --with-gtk --with-gdk-pixbuf"
 else
 	with_gtk="--without-gdk --without-gtk --without-gdk-pixbuf"
 fi
 
 if [ "$PANGO" = "yes" ]; then
-	PKGDEPENDS="fonts/pango $PKGDEPENDS"
+	PKGDEPENDS="pango $PKGDEPENDS"
 	with_pango="--with-pangocairo"
 else
 	with_pango="--without-pangocairo"
@@ -84,18 +84,18 @@
 fi
 
 if [ "$X" = "yes" ]; then
-	PKGDEPENDS="x11/libx11 $PKGDEPENDS"
-	PKGDEPENDS="x11/libxaw $PKGDEPENDS"
-	PKGDEPENDS="x11/libxmu $PKGDEPENDS"
-	PKGDEPENDS="x11/libxpm $PKGDEPENDS"
-	PKGDEPENDS="x11/libxt $PKGDEPENDS"
+	PKGDEPENDS="libx11 $PKGDEPENDS"
+	PKGDEPENDS="libxaw $PKGDEPENDS"
+	PKGDEPENDS="libxmu $PKGDEPENDS"
+	PKGDEPENDS="libxpm $PKGDEPENDS"
+	PKGDEPENDS="libxt $PKGDEPENDS"
 	with_x="--with-x"
 else
 	with_x="--without-x"
 fi
 
 if [ "$XML" = "yes" ]; then
-	PKGDEPENDS="lib/expat $PKGDEPENDS"
+	PKGDEPENDS="expat $PKGDEPENDS"
 	with_expat="--with-expat"
 else
 	with_expat="--without-expat"