diff qt/qtbase/qtbase.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 25a95c53d800
line wrap: on
line diff
--- a/qt/qtbase/qtbase.sh	Mon Aug 26 20:45:00 2019 +0200
+++ b/qt/qtbase/qtbase.sh	Mon Aug 26 12:14:53 2019 +0200
@@ -16,7 +16,7 @@
 #
 
 # TODO: add option for PostgreSQL and mariadb.
-# TODO: add optional dependencies for Qt modules (e.g. qt/qtwayland)
+# TODO: add optional dependencies for Qt modules (e.g. qtwayland)
 
 PKGNAME=qtbase
 PKGVERSION=5.13.0
@@ -24,7 +24,7 @@
 PKGLICENSE="GPLv3 LGPLv21"
 PKGSUMMARY="cross platform SDK for developing applications"
 PKGDOWNLOAD="http://download.qt-project.org/official_releases/qt/${PKGVERSION%.*}/$PKGVERSION/submodules/$PKGNAME-everywhere-src-$PKGVERSION.tar.xz"
-PKGDEPENDS="lib/pcre2"
+PKGDEPENDS="pcre2"
 PKGOPTIONS="CUPS
             DATABASES
             DBUS
@@ -80,7 +80,7 @@
 fi
 
 if [ "$CUPS" = "yes" ]; then
-	PKGDEPENDS="print/cups $PKGDEPENDS"
+	PKGDEPENDS="cups $PKGDEPENDS"
 	with_cups="-cups"
 else
 	with_cups="-no-cups"
@@ -101,14 +101,14 @@
                 -no-sql-tds"
 
 if echo $DATABASES | grep -q "sqlite"; then
-	PKGDEPENDS="databases/sqlite $PKGDEPENDS"
+	PKGDEPENDS="sqlite $PKGDEPENDS"
 	with_databases="-sql-sqlite -system-sqlite $with_databases"
 else
 	with_databases="-no-sql-sqlite $with_databases"
 fi
 
 if [ "$DBUS" = "yes" ]; then
-	PKGDEPENDS="network/dbus $PKGDEPENDS"
+	PKGDEPENDS="dbus $PKGDEPENDS"
 	with_dbus="-dbus-linked"
 else
 	with_dbus="-no-dbus"
@@ -121,28 +121,28 @@
 fi
 
 if [ "$FONTCONFIG" = "yes" ]; then
-	PKGDEPENDS="fonts/fontconfig $PKGDEPENDS"
+	PKGDEPENDS="fontconfig $PKGDEPENDS"
 	with_fontconfig="-fontconfig"
 else
 	with_fontconfig="-no-fontconfig"
 fi
 
 if [ "$FREETYPE" = "yes" ]; then
-	PKGDEPENDS="fonts/freetype $PKGDEPENDS"
+	PKGDEPENDS="freetype $PKGDEPENDS"
 	with_freetype="-system-freetype"
 else
 	with_freetype="-no-freetype"
 fi
 
 if [ "$GLIB" = "yes" ]; then
-	PKGDEPENDS="lib/glib $PKGDEPENDS"
+	PKGDEPENDS="glib $PKGDEPENDS"
 	with_glib="-glib"
 else
 	with_glib="-no-glib"
 fi
 
 if [ "$GTK" = "yes" ]; then
-	PKGDEPENDS="graphics/gtk $PKGDEPENDS"
+	PKGDEPENDS="gtk $PKGDEPENDS"
 	with_gtk="-gtk"
 else
 	with_gtk="-no-gtk"
@@ -159,35 +159,35 @@
 fi
 
 if [ "$HARFBUZZ" = "yes" ]; then
-	PKGDEPENDS="fonts/harfbuzz $PKGDEPENDS"
+	PKGDEPENDS="harfbuzz $PKGDEPENDS"
 	with_harfbuzz="-system-harfbuzz"
 else
 	with_harfbuzz="-no-harfbuzz"
 fi
 
 if [ "$ICU" = "yes" ]; then
-	PKGDEPENDS="lib/icu $PKGDEPENDS"
+	PKGDEPENDS="icu $PKGDEPENDS"
 	with_icu="-icu"
 else
 	with_icu="-no-icu"
 fi
 
 if [ "$KMS" = "yes" ]; then
-	PKGDEPENDS="graphics/libdrm $PKGDEPENDS"
+	PKGDEPENDS="libdrm $PKGDEPENDS"
 	with_kms="-kms"
 else
 	with_kms="-no-kms"
 fi
 
 if [ "$LIBINPUT" = "yes" ]; then
-	PKGDEPENDS="lib/libinput $PKGDEPENDS"
+	PKGDEPENDS="libinput $PKGDEPENDS"
 	with_libinput="-libinput"
 else
 	with_libinput="-no-libinput"
 fi
 
 if [ "$MTDEV" = "yes" ]; then
-	PKGDEPENDS="lib/mtdev $PKGDEPENDS"
+	PKGDEPENDS="mtdev $PKGDEPENDS"
 	with_mtdev="-mtdev"
 else
 	with_mtdev="-no-mtdev"
@@ -214,7 +214,7 @@
 fi
 
 if [ "$SSL" = "yes" ]; then
-	PKGDEPENDS="crypto/libressl $PKGDEPENDS"
+	PKGDEPENDS="libressl $PKGDEPENDS"
 	with_ssl="-ssl -openssl-linked"
 else
 	with_ssl="-no-openssl"
@@ -227,7 +227,7 @@
 fi
 
 if [ "$UDEV" = "yes" ]; then
-	PKGDEPENDS="core/eudev $PKGDEPENDS"
+	PKGDEPENDS="eudev $PKGDEPENDS"
 	with_udev="-libudev"
 else
 	with_udev="-no-libudev"
@@ -240,7 +240,7 @@
 fi
 
 if [ "$ZLIB" = "yes" ]; then
-	PKGDEPENDS="compression/zlib $PKGDEPENDS"
+	PKGDEPENDS="zlib $PKGDEPENDS"
 	with_zlib="-system-zlib"
 else
 	with_zlib="-no-zlib"