diff audio/pulseaudio/pulseaudio.sh @ 741:ddd41f0f18ee

vanilla: disable some non-available options yet
author David Demelier <markand@malikania.fr>
date Tue, 06 Aug 2019 20:55:00 +0200
parents 6f1b622c15ef
children 149d4199e052
line wrap: on
line diff
--- a/audio/pulseaudio/pulseaudio.sh	Tue Aug 06 20:45:00 2019 +0200
+++ b/audio/pulseaudio/pulseaudio.sh	Tue Aug 06 20:55:00 2019 +0200
@@ -21,7 +21,7 @@
 PKGLICENSE="LGPLv21+"
 PKGSUMMARY="general-purpose sound server"
 PKGDOWNLOAD="https://www.freedesktop.org/software/$PKGNAME/releases/$PKGNAME-$PKGVERSION.tar.xz"
-PKGOPTIONS="ALSA AVAHI BLUEZ GTK IPV6 JACK NLS OSS SSL UDEV X"
+PKGOPTIONS="ALSA AVAHI BLUETOOTH GTK IPV6 JACK NLS OSS SSL UDEV X"
 PKGUIDS="pulse:102"
 PKGGIDS="pulse:102 pulse-rt:103 pulse-access:104"
 
@@ -32,8 +32,8 @@
 : ${LDFLAGS:=}
 : ${LIBS:=}
 : ${ALSA:=yes}
-: ${AVAHI:=yes}
-: ${BLUEZ:=yes}
+: ${AVAHI:=no}          # TODO: set to yes once avahi is there
+: ${BLUETOOTH:=yes}
 : ${GTK:=yes}
 : ${IPV6:=yes}
 : ${JACK:=yes}
@@ -57,11 +57,11 @@
 	with_avahi="--disable-avahi"
 fi
 
-if [ "$BLUEZ" = "yes" ]; then
+if [ "$BLUETOOTH" = "yes" ]; then
 	PKGDEPENDS="bluetooth/bluez $PKGDEPENDS"
-	with_bluez="--enable-bluez5"
+	with_bluetooth="--enable-bluez5"
 else
-	with_bluez="--disable-bluez5"
+	with_bluetooth="--disable-bluez5"
 fi
 
 if [ "$GTK" = "yes" ]; then
@@ -135,7 +135,7 @@
 		--disable-bluez4 \
 		$with_alsa \
 		$with_avahi \
-		$with_bluez \
+		$with_bluetooth \
 		$with_gtk \
 		$with_ipv6 \
 		$with_jack \