changeset 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 2ce096b6b601
children aa3c1de1780a
files audio/pulseaudio/pulseaudio.sh dev/llvm/llvm.sh network/libsoup/libsoup.sh
diffstat 3 files changed, 9 insertions(+), 9 deletions(-) [+]
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 \
--- a/dev/llvm/llvm.sh	Tue Aug 06 20:45:00 2019 +0200
+++ b/dev/llvm/llvm.sh	Tue Aug 06 20:55:00 2019 +0200
@@ -36,7 +36,7 @@
 : ${XML:=yes}
 : ${LLD:=yes}
 : ${NCURSES:=yes}
-: ${SPHINX:=yes}
+: ${SPHINX:=no}         # TODO: set to on once sphinx is there.
 : ${STATIC:=no}
 : ${TARGETS:=all}
 : ${ZLIB:=yes}
--- a/network/libsoup/libsoup.sh	Tue Aug 06 20:45:00 2019 +0200
+++ b/network/libsoup/libsoup.sh	Tue Aug 06 20:55:00 2019 +0200
@@ -28,7 +28,7 @@
 : ${CFLAGS:=-O2}
 : ${LDFLAGS:=}
 : ${GNOME:=yes}
-: ${KERBEROS:=yes}
+: ${KERBEROS:=no}       # TODO: enable once kerberos is there.
 : ${VALA:=yes}
 
 if [ "$GNOME" = "yes" ]; then