diff audio/pulseaudio/pulseaudio.sh @ 1023:60d881a89c6a

vanilla: fix many dependencies
author David Demelier <markand@malikania.fr>
date Thu, 29 Aug 2019 23:55:00 +0200
parents ddab65a5b3f5
children 3dece1f7570b
line wrap: on
line diff
--- a/audio/pulseaudio/pulseaudio.sh	Thu Aug 29 23:50:00 2019 +0200
+++ b/audio/pulseaudio/pulseaudio.sh	Thu Aug 29 23:55:00 2019 +0200
@@ -32,7 +32,7 @@
 : ${LDFLAGS:=}
 : ${LIBS:=}
 : ${ALSA:=yes}
-: ${AVAHI:=no}          # TODO: set to yes once avahi is there
+: ${AVAHI:=yes}
 : ${BLUETOOTH:=no}      # TODO: set to on once sbc is there (for bluez)
 : ${GTK:=yes}
 : ${IPV6:=yes}
@@ -51,7 +51,7 @@
 fi
 
 if [ "$AVAHI" = "yes" ]; then
-	PKGDEPENDS="network/avahi $PKGDEPENDS"
+	PKGDEPENDS="avahi $PKGDEPENDS"
 	with_avahi="--enable-avahi"
 else
 	with_avahi="--disable-avahi"
@@ -78,7 +78,7 @@
 fi
 
 if [ "$JACK" = "yes" ]; then
-	PKGDEPENDS="audio/jack $PKGDEPENDS"
+	PKGDEPENDS="jack2 $PKGDEPENDS"
 	with_jack="--enable-jack"
 else
 	with_jack="--disable-jack"
@@ -98,7 +98,7 @@
 fi
 
 if [ "$SSL" = "yes" ]; then
-	PKGDEPENDS="crypto/openssl $PKGDEPENDS"
+	PKGDEPENDS="libressl $PKGDEPENDS"
 	with_ssl="--enable-openssl"
 else
 	with_ssl="--disable-openssl"
@@ -112,7 +112,7 @@
 fi
 
 if [ "$X" = "yes" ]; then
-	PKGDEPENDS="libx11 libxcb libice libsm libxtst"
+	PKGDEPENDS="libx11 libxcb libice libsm libxtst $PKGDEPENDS"
 	with_x="--enable-x11"
 else
 	with_x="--disable-x11"