svn commit: r335589 - head/audio/clementine-player
Sean Bruno
sbruno at FreeBSD.org
Tue Dec 3 19:29:05 UTC 2013
Author: sbruno (src committer)
Date: Tue Dec 3 19:29:05 2013
New Revision: 335589
URL: http://svnweb.freebsd.org/changeset/ports/335589
Log:
Pointyhat to me.
SPOTIFY support references the built in clementine library support module
for the service that requires qca2 support.
SPOTIFY_BLOB references some magical external library (from the vendor),
that can be used in its place.
There isn't a clearly obvious way to disable SPOTIFY support alltogether
and the original, pre svn r335260 version of the SPOTIFY logic is correct
Reported by: Jimmy Olgeni <olgeni at olgeni.com>
Modified:
head/audio/clementine-player/Makefile
Modified: head/audio/clementine-player/Makefile
==============================================================================
--- head/audio/clementine-player/Makefile Tue Dec 3 19:12:34 2013 (r335588)
+++ head/audio/clementine-player/Makefile Tue Dec 3 19:29:05 2013 (r335589)
@@ -3,7 +3,7 @@
PORTNAME= clementine
PORTVERSION= 1.2.0
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= audio
MASTER_SITES= GOOGLE_CODE
PKGNAMESUFFIX= -player
@@ -60,7 +60,7 @@ WIIMOTEDEV_DESC= Wiimote support
MOODBAR_DESC= Moodbar Support
USE_BUILTIN_TAGLIB= Use Clementine builtin taglib support
-OPTIONS_DEFAULT= AUDIOCD DEVICEKIT GIO LASTFM MTP VISUALISATION \
+OPTIONS_DEFAULT= AUDIOCD DEVICEKIT GIO LASTFM MTP SPOTIFY VISUALISATION \
WIIMOTEDEV MOODBAR
.include <bsd.port.options.mk>
@@ -132,10 +132,10 @@ CMAKE_ARGS+= -DENABLE_LIBMTP=OFF
.endif
.if ${PORT_OPTIONS:MSPOTIFY}
-CMAKE_ARGS+= -DENABLE_SPOTIFY_BLOB=ON
+CMAKE_ARGS+= -DENABLE_SPOTIFY=ON
LIB_DEPENDS+= qca:${PORTSDIR}/devel/qca
.else
-CMAKE_ARGS+= -DENABLE_SPOTIFY_BLOB=OFF
+CMAKE_ARGS+= -DENABLE_SPOTIFY=OFF -DENABLE_SPOTIFY_BLOB=OFF
.endif
.if ${PORT_OPTIONS:MVISUALISATION}
More information about the svn-ports-all
mailing list