diff graphics/mesa/mesa.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 6d6b3410c722
children ddab65a5b3f5
line wrap: on
line diff
--- a/graphics/mesa/mesa.sh	Mon Aug 26 20:45:00 2019 +0200
+++ b/graphics/mesa/mesa.sh	Mon Aug 26 12:14:53 2019 +0200
@@ -21,7 +21,7 @@
 PKGLICENSE="CUSTOM"
 PKGSUMMARY="opensource OpenGL implementation"
 PKGDOWNLOAD="https://mesa.freedesktop.org/archive/$PKGNAME-$PKGVERSION.tar.xz"
-PKGDEPENDS="dev/meson:build"
+PKGDEPENDS="meson:build"
 PKGOPTIONS="DRI DRM EGL GALLIUM GLVND LLVM PLATFORMS SELINUX VULKAN WAYLAND X"
 
 : ${CC:=clang}
@@ -47,7 +47,7 @@
 with_vulkan_drivers=""
 
 if [ "$DRM" = "yes" ]; then
-	PKGDEPENDS="graphics/libdrm $PKGDEPENDS"
+	PKGDEPENDS="libdrm $PKGDEPENDS"
 	with_platforms="drm"
 fi
 
@@ -72,7 +72,7 @@
 fi
 
 if [ "$LLVM" = "yes" ]; then
-	PKGDEPENDS="dev/llvm $PKGDEPENDS"
+	PKGDEPENDS="llvm $PKGDEPENDS"
 	with_llvm="-D llvm=true"
 else
 	with_llvm="-D llvm=false"
@@ -83,17 +83,17 @@
 fi
 
 if [ "$WAYLAND" = "yes" ]; then
-	PKGDEPENDS="graphics/wayland graphics/wayland-protocols $PKGDEPENDS"
+	PKGDEPENDS="wayland wayland-protocols $PKGDEPENDS"
 	with_platforms="wayland,$with_platforms"
 fi
 
 if [ "$X" = "yes" ]; then
-	PKGDEPENDS="x11/libx11
-	            x11/libxdamage
-	            x11/libxext
-	            x11/libxrandr
-	            x11/libxshmfence
-	            x11/libxxf86vm
+	PKGDEPENDS="libx11
+	            libxdamage
+	            libxext
+	            libxrandr
+	            libxshmfence
+	            libxxf86vm
 	            $PKGDEPENDS"
 	with_platforms="x11,$with_platforms"
 	with_dri="-D dri3=true"