diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-03-22 18:12:53 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-03-22 18:12:53 +0000 |
commit | 6a529515626acfe48ecab6fe2fb63d05ba1dbd34 (patch) | |
tree | 6ab531d15b2189398aec9f5a4b0ceb369ffcc1a2 /media-sound | |
parent | Now install a working library, bug #359975 (diff) | |
download | gentoo-2-6a529515626acfe48ecab6fe2fb63d05ba1dbd34.tar.gz gentoo-2-6a529515626acfe48ecab6fe2fb63d05ba1dbd34.tar.bz2 gentoo-2-6a529515626acfe48ecab6fe2fb63d05ba1dbd34.zip |
lastfmradio's dependency on curl is already enforced by REQUIRED_USE, so removed the block
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mpd/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/mpd/mpd-0.16.2.ebuild | 13 |
2 files changed, 9 insertions, 10 deletions
diff --git a/media-sound/mpd/ChangeLog b/media-sound/mpd/ChangeLog index f384f4883409..76c61d61da6f 100644 --- a/media-sound/mpd/ChangeLog +++ b/media-sound/mpd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/mpd # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.242 2011/03/19 08:59:00 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.243 2011/03/22 18:12:53 angelos Exp $ + + 22 Mar 2011; Christoph Mende <angelos@gentoo.org> mpd-0.16.2.ebuild: + lastfmradio's dependency on curl is already enforced by REQUIRED_USE, so + removed the block *mpd-0.16.2 (19 Mar 2011) diff --git a/media-sound/mpd/mpd-0.16.2.ebuild b/media-sound/mpd/mpd-0.16.2.ebuild index dc6c0d7910ce..af59cf4a5952 100644 --- a/media-sound/mpd/mpd-0.16.2.ebuild +++ b/media-sound/mpd/mpd-0.16.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.16.2.ebuild,v 1.1 2011/03/19 08:59:00 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.16.2.ebuild,v 1.2 2011/03/22 18:12:53 angelos Exp $ EAPI=4 inherit eutils flag-o-matic linux-info multilib @@ -104,12 +104,6 @@ src_configure() { mpdconf+=" --disable-oggflac" fi - if use lastfmradio && use curl; then - mpdconf+=" --enable-lastfm" - else - mpdconf+=" --disable-lastfm" - fi - append-lfs-flags append-ldflags "-L/usr/$(get_libdir)/sidplay/builders" @@ -120,7 +114,6 @@ src_configure() { $(use_enable alsa) \ $(use_enable ao) \ $(use_enable audiofile) \ - $(use_with zeroconf zeroconf avahi) \ $(use_enable bzip2) \ $(use_enable cdio iso9660) \ $(use_enable cue) \ @@ -130,10 +123,11 @@ src_configure() { $(use_enable fifo) \ $(use_enable flac) \ $(use_enable fluidsynth) \ - $(use_enable jack) \ $(use_enable id3) \ $(use_enable inotify) \ $(use_enable ipv6) \ + $(use_enable jack) \ + $(use_enable lastfmradio lastfm) \ $(use_enable libmms mms) \ $(use_enable libsamplerate lsr) \ $(use_enable mad) \ @@ -154,6 +148,7 @@ src_configure() { $(use_enable wavpack) \ $(use_enable wildmidi) \ $(use_enable zip zzip) \ + $(use_with zeroconf zeroconf avahi) \ ${mpdconf} } |