diff options
author | Dane Smith <c1pher@gentoo.org> | 2010-12-17 15:27:41 +0000 |
---|---|---|
committer | Dane Smith <c1pher@gentoo.org> | 2010-12-17 15:27:41 +0000 |
commit | 54f482f791535246f39366ab3575cf001922d856 (patch) | |
tree | cf9ff2a9f61fc28526dadf177eae5f73ddf041f4 /media-sound | |
parent | Add a caps USE flag to avoid automagic dependency over libcap-ng. Thanks to J... (diff) | |
download | gentoo-2-54f482f791535246f39366ab3575cf001922d856.tar.gz gentoo-2-54f482f791535246f39366ab3575cf001922d856.tar.bz2 gentoo-2-54f482f791535246f39366ab3575cf001922d856.zip |
Fixed a typo in mpd wrt bug 348881.
(Portage version: 2.2.0_alpha4/cvs/Linux i686)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mpd/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/mpd/mpd-0.15.15.ebuild | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/media-sound/mpd/ChangeLog b/media-sound/mpd/ChangeLog index 6ae4efd82e5b..0e771ff3ab8e 100644 --- a/media-sound/mpd/ChangeLog +++ b/media-sound/mpd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/mpd # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.226 2010/12/17 11:59:57 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.227 2010/12/17 15:27:41 c1pher Exp $ + + 17 Dec 2010; Dane Smith <c1pher@gentoo.org> mpd-0.15.15.ebuild: + Fixed the obvious typo in my patch wrt bug 348881. Missing "&&". Thanks + for + spotting it Tove. 17 Dec 2010; Markos Chandras <hwoarang@gentoo.org> mpd-0.15.15.ebuild: Patch from Dane Smith <c1pher@gentoo.org> to disable lastfm when curl is not diff --git a/media-sound/mpd/mpd-0.15.15.ebuild b/media-sound/mpd/mpd-0.15.15.ebuild index 111be63d8ecb..119b1e9373f6 100644 --- a/media-sound/mpd/mpd-0.15.15.ebuild +++ b/media-sound/mpd/mpd-0.15.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.15.15.ebuild,v 1.2 2010/12/17 11:59:57 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.15.15.ebuild,v 1.3 2010/12/17 15:27:41 c1pher Exp $ EAPI=2 inherit eutils flag-o-matic multilib @@ -56,8 +56,7 @@ DEPEND="${RDEPEND} pkg_setup() { use network || ewarn "Icecast and Shoutcast streaming needs networking." use fluidsynth && ewarn "Using fluidsynth is discouraged by upstream." - use lastfmradio ! use curl && ewarn "Lastfm requires curl support. Disabling \ - lastfm" + use lastfmradio && ! use curl && ewarn "Lastfm requires curl support. Disabling lastfm" enewuser mpd "" "" "/var/lib/mpd" audio } |