Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Dec 2013 19:29:05 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r335589 - head/audio/clementine-player
Message-ID:  <201312031929.rB3JT5oN056839@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312031929.rB3JT5oN056839>