public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/mpd: metadata.xml mpd-0.17.ebuild ChangeLog
@ 2012-07-11  9:55 Christoph Mende (angelos)
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Mende (angelos) @ 2012-07-11  9:55 UTC (permalink / raw
  To: gentoo-commits

angelos     12/07/11 09:55:18

  Modified:             metadata.xml mpd-0.17.ebuild ChangeLog
  Log:
  Enable the recorder plugin conditionally (bug #425168)
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.22                 media-sound/mpd/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/metadata.xml?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/metadata.xml?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/metadata.xml?r1=1.21&r2=1.22

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/metadata.xml,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- metadata.xml	2 Jul 2012 15:18:50 -0000	1.21
+++ metadata.xml	11 Jul 2012 09:55:18 -0000	1.22
@@ -24,6 +24,7 @@
     <flag name="mpg123">Enable support for mp3 decoding over media-sound/mpg123</flag>
 	<flag name="network">Enables network streaming support</flag>
 	<flag name="pipe">Support writing audio to a pipe</flag>
+	<flag name="recorder">Enables output plugin for recording radio streams</flag>
 	<flag name="sid">Build with SID (Commodore 64 Audio) support</flag>
 	<flag name="soundcloud">Build plugin to access soundcloud</flag>
 	<flag name="soup">Use <pkg>net-libs/libsoup</pkg> for HTTP streaming</flag>



1.3                  media-sound/mpd/mpd-0.17.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild?r1=1.2&r2=1.3

Index: mpd-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mpd-0.17.ebuild	2 Jul 2012 15:18:50 -0000	1.2
+++ mpd-0.17.ebuild	11 Jul 2012 09:55:18 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v 1.2 2012/07/02 15:18:50 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v 1.3 2012/07/11 09:55:18 angelos Exp $
 
 EAPI=4
 inherit eutils flag-o-matic linux-info multilib systemd user
@@ -14,14 +14,19 @@
 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos"
 IUSE="aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac
 fluidsynth +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad
-mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio sid
-sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi
+mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder
+sid sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi
 zeroconf zip"
 
-REQUIRED_USE="|| ( alsa ao fifo jack network openal oss pipe pulseaudio )
-	|| ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack
-			ogg flac sid vorbis wavpack wildmidi )
-	network? ( || ( audiofile flac lame twolame vorbis ) )
+OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
+INPUT_PLUGINS="aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123
+	musepack ogg flac sid vorbis wavpack wildmidi"
+ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
+
+REQUIRED_USE="|| ( ${OUTPUT_PLUGINS} )
+	|| ( ${INPUT_PLUGINS} )
+	network? ( || ( ${ENCODER_PLUGINS} ) )
+	recorder? ( || ( ${ENCODER_PLUGINS} ) )
 	lastfmradio? ( curl )"
 
 RDEPEND="!<sys-cluster/mpich2-1.4_rc2
@@ -87,9 +92,8 @@
 
 src_configure() {
 	local mpdconf="--disable-despotify --disable-documentation --disable-ffado
-		--disable-gme --disable-mvp --disable-roar --enable-largefile
-		--enable-recorder-output --enable-tcp --enable-un
-		--docdir=${EPREFIX}/usr/share/doc/${PF}"
+		--disable-gme --disable-mvp --disable-noar --enable-largefile
+		--enable-tcp --enable-un --docdir=${EPREFIX}/usr/share/doc/${PF}"
 
 	if use network; then
 		mpdconf+=" --enable-shout $(use_enable vorbis vorbis-encoder)
@@ -135,6 +139,7 @@
 		$(use_enable oss) \
 		$(use_enable pipe pipe-output) \
 		$(use_enable pulseaudio pulse) \
+		$(use_enable recorder recorder-output) \
 		$(use_enable sid sidplay) \
 		$(use_enable sndfile sndfile) \
 		$(use_enable soundcloud) \



1.287                media-sound/mpd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.287&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.287&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?r1=1.286&r2=1.287

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -r1.286 -r1.287
--- ChangeLog	2 Jul 2012 15:18:50 -0000	1.286
+++ ChangeLog	11 Jul 2012 09:55:18 -0000	1.287
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/mpd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.286 2012/07/02 15:18:50 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.287 2012/07/11 09:55:18 angelos Exp $
+
+  11 Jul 2012; Christoph Mende <angelos@gentoo.org> metadata.xml,
+  mpd-0.17.ebuild:
+  Enable the recorder plugin conditionally (bug #425168)
 
   02 Jul 2012; Christoph Mende <angelos@gentoo.org> -mpd-9999.ebuild,
   metadata.xml, mpd-0.17.ebuild:






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/mpd: metadata.xml mpd-0.17.ebuild ChangeLog
@ 2012-07-11 20:07 Christoph Mende (angelos)
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Mende (angelos) @ 2012-07-11 20:07 UTC (permalink / raw
  To: gentoo-commits

angelos     12/07/11 20:07:18

  Modified:             metadata.xml mpd-0.17.ebuild ChangeLog
  Log:
  Add systemd USE flag, fix typo (noar -> roar)
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 media-sound/mpd/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/metadata.xml?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/metadata.xml?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/metadata.xml?r1=1.22&r2=1.23

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/metadata.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- metadata.xml	11 Jul 2012 09:55:18 -0000	1.22
+++ metadata.xml	11 Jul 2012 20:07:18 -0000	1.23
@@ -20,15 +20,16 @@
 	<flag name="inotify">Use the Linux kernel inotify subsystem to notice changes to mpd music library</flag>
 	<flag name="lame">Support for MP3 streaming via Icecast2</flag>
 	<flag name="lastfmradio">Support listening to last.fm radio stations</flag>
-	<flag name="twolame">Support twolame MPEG-2 encoding</flag>
-    <flag name="mpg123">Enable support for mp3 decoding over media-sound/mpg123</flag>
 	<flag name="network">Enables network streaming support</flag>
 	<flag name="pipe">Support writing audio to a pipe</flag>
 	<flag name="recorder">Enables output plugin for recording radio streams</flag>
 	<flag name="sid">Build with SID (Commodore 64 Audio) support</flag>
 	<flag name="soundcloud">Build plugin to access soundcloud</flag>
 	<flag name="soup">Use <pkg>net-libs/libsoup</pkg> for HTTP streaming</flag>
+	<flag name="systemd">Enable support for systemd socket activation</flag>
+	<flag name="twolame">Support twolame MPEG-2 encoding</flag>
 	<flag name="wildmidi">Enable MIDI support via wildmidi</flag>
 	<flag name="zip">Support for ZIP files</flag>
+    <flag name="mpg123">Enable support for mp3 decoding over media-sound/mpg123</flag>
   </use>
 </pkgmetadata>



1.4                  media-sound/mpd/mpd-0.17.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild?r1=1.3&r2=1.4

Index: mpd-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mpd-0.17.ebuild	11 Jul 2012 09:55:18 -0000	1.3
+++ mpd-0.17.ebuild	11 Jul 2012 20:07:18 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v 1.3 2012/07/11 09:55:18 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v 1.4 2012/07/11 20:07:18 angelos Exp $
 
 EAPI=4
 inherit eutils flag-o-matic linux-info multilib systemd user
@@ -15,8 +15,8 @@
 IUSE="aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac
 fluidsynth +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad
 mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder
-sid sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi
-zeroconf zip"
+sid sndfile soundcloud soup sqlite systemd tcpd twolame unicode vorbis wavpack
+wildmidi zeroconf zip"
 
 OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
 INPUT_PLUGINS="aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123
@@ -42,18 +42,18 @@
 	ffmpeg? ( virtual/ffmpeg )
 	flac? ( media-libs/flac[ogg?] )
 	fluidsynth? ( media-sound/fluidsynth )
-	network? ( >=media-libs/libshout-2
-		!lame? ( !vorbis? ( media-libs/libvorbis ) ) )
 	id3tag? ( media-libs/libid3tag )
 	jack? ( media-sound/jack-audio-connection-kit )
 	lame? ( network? ( media-sound/lame ) )
-	mms? ( media-libs/libmms )
 	libsamplerate? ( media-libs/libsamplerate )
 	mad? ( media-libs/libmad )
 	mikmod? ( media-libs/libmikmod:0 )
+	mms? ( media-libs/libmms )
 	modplug? ( media-libs/libmodplug )
 	mpg123? ( >=media-sound/mpg123-1.12.2 )
 	musepack? ( media-sound/musepack-tools )
+	network? ( >=media-libs/libshout-2
+		!lame? ( !vorbis? ( media-libs/libvorbis ) ) )
 	ogg? ( media-libs/libogg )
 	openal? ( media-libs/openal )
 	pulseaudio? ( media-sound/pulseaudio )
@@ -62,6 +62,7 @@
 	soundcloud? ( >=dev-libs/yajl-2 )
 	soup? ( net-libs/libsoup:2.4 )
 	sqlite? ( dev-db/sqlite:3 )
+	systemd? ( sys-apps/systemd )
 	tcpd? ( sys-apps/tcp-wrappers )
 	twolame? ( media-sound/twolame )
 	vorbis? ( media-libs/libvorbis )
@@ -92,7 +93,7 @@
 
 src_configure() {
 	local mpdconf="--disable-despotify --disable-documentation --disable-ffado
-		--disable-gme --disable-mvp --disable-noar --enable-largefile
+		--disable-gme --disable-mvp --disable-roar --enable-largefile
 		--enable-tcp --enable-un --docdir=${EPREFIX}/usr/share/doc/${PF}"
 
 	if use network; then
@@ -145,6 +146,7 @@
 		$(use_enable soundcloud) \
 		$(use_enable soup) \
 		$(use_enable sqlite) \
+		$(use_enable systemd systemd-daemon) \
 		$(use_enable tcpd libwrap) \
 		$(use_enable vorbis) \
 		$(use_enable wavpack) \



1.288                media-sound/mpd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.288&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.288&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?r1=1.287&r2=1.288

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog	11 Jul 2012 09:55:18 -0000	1.287
+++ ChangeLog	11 Jul 2012 20:07:18 -0000	1.288
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/mpd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.287 2012/07/11 09:55:18 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.288 2012/07/11 20:07:18 angelos Exp $
+
+  11 Jul 2012; Christoph Mende <angelos@gentoo.org> metadata.xml,
+  mpd-0.17.ebuild:
+  Add systemd USE flag, fix typo (noar -> roar)
 
   11 Jul 2012; Christoph Mende <angelos@gentoo.org> metadata.xml,
   mpd-0.17.ebuild:






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-07-11 20:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-11 20:07 [gentoo-commits] gentoo-x86 commit in media-sound/mpd: metadata.xml mpd-0.17.ebuild ChangeLog Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-11  9:55 Christoph Mende (angelos)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox