pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Added more options, fixed pulseaudio option, updated TODO file



Module Name:	pkgsrc-wip
Committed By:	weabot <weabot%protonmail.com@localhost>
Pushed By:	weabot
Date:		Mon Jan 16 16:18:07 2017 -0500
Changeset:	1c550858b97106b2d9da0b5497c2c0dd4fe42e5d

Modified Files:
	clementine/TODO
	clementine/options.mk

Log Message:
Added more options, fixed pulseaudio option, updated TODO file

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=1c550858b97106b2d9da0b5497c2c0dd4fe42e5d

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 clementine/TODO       |  4 ++--
 clementine/options.mk | 34 +++++++++++++++++++++++++---------
 2 files changed, 27 insertions(+), 11 deletions(-)

diffs:
diff --git a/clementine/TODO b/clementine/TODO
index 2ea868f..c82f899 100644
--- a/clementine/TODO
+++ b/clementine/TODO
@@ -1,2 +1,2 @@
--Get the AudioCD option to compile
--Fix coredump/segfaults when clementine starts
+- Fix no sound output
+- Add more audio codecs to dependencies (for ogg, for example)
diff --git a/clementine/options.mk b/clementine/options.mk
index ae8e155..0dad048 100644
--- a/clementine/options.mk
+++ b/clementine/options.mk
@@ -14,14 +14,10 @@ PKG_SUPPORTED_OPTIONS=	wiimote \
 			google-drive \
 			amazon-cloud-drive \
 			skydrive \
+			seafile \
+			vk \
 			pulseaudio
-PKG_SUGGESTED_OPTIONS=	devicekit libmtp libgpod moodbar visualisations box dropbox google-drive amazon-cloud-drive skydrive
-ARCH=			`uname -m`
-
-
-.if  ${ARCH} == "x86"  ||  ${ARCH} == "x86_64"
-PKG_SUGGESTED_OPTIONS+=	lastfm
-.endif
+PKG_SUGGESTED_OPTIONS=	devicekit libmtp libgpod moodbar visualisations box dropbox google-drive amazon-cloud-drive skydrive seafile vk audiocd
 
 .include "../../mk/bsd.prefs.mk"
 .include "../../mk/bsd.options.mk"
@@ -175,12 +171,32 @@ CMAKE_ARGS+=	-DENABLE_SKYDRIVE=OFF
 .endif
 
 ###
+### seafile
+###
+
+.if !empty(PKG_OPTIONS:Mseafile)
+CMAKE_ARGS+=	-DENABLE_SEAFILE=ON
+.else
+CMAKE_ARGS+=	-DENABLE_SEAFILE=OFF
+.endif
+
+###
+### vk
+###
+
+.if !empty(PKG_OPTIONS:Mvk)
+CMAKE_ARGS+=	-DENABLE_VK=ON
+.else
+CMAKE_ARGS+=	-DENABLE_VK=OFF
+.endif
+
+###
 ### pulseaudio
 ###
 
 .if !empty(PKG_OPTIONS:Mpulseaudio)
 .	include "../../audio/pulseaudio/buildlink3.mk"
-CMAKE_ARGS+=	-DENABLE_PULSEAUDIO=ON
+CMAKE_ARGS+=	-DENABLE_LIBPULSE=ON
 .else
-CMAKE_ARGS+=	-DENABLE_PULSEAUDIO=OFF
+CMAKE_ARGS+=	-DENABLE_LIBPULSE=OFF
 .endif


Home | Main Index | Thread Index | Old Index