diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-25 08:02:43 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-25 08:02:43 +0000 |
commit | 4dc477da0074024990d5bf600e5ebb5ed398f021 (patch) | |
tree | 3a43e1e81678ac9a3f8c23cd1d83ee1841c0084c /media-sound/kid3/kid3-0.6.ebuild | |
parent | Bump to 3.5.4 (pre-release). (diff) | |
download | gentoo-2-4dc477da0074024990d5bf600e5ebb5ed398f021.tar.gz gentoo-2-4dc477da0074024990d5bf600e5ebb5ed398f021.tar.bz2 gentoo-2-4dc477da0074024990d5bf600e5ebb5ed398f021.zip |
Remove musicbrainz support as per bug #140184.
(Portage version: 2.1.1_pre3-r3)
Diffstat (limited to 'media-sound/kid3/kid3-0.6.ebuild')
-rw-r--r-- | media-sound/kid3/kid3-0.6.ebuild | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/media-sound/kid3/kid3-0.6.ebuild b/media-sound/kid3/kid3-0.6.ebuild index 27173f6f07f8..2342ca649a1b 100644 --- a/media-sound/kid3/kid3-0.6.ebuild +++ b/media-sound/kid3/kid3-0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kid3/kid3-0.6.ebuild,v 1.3 2006/05/21 23:35:34 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/kid3/kid3-0.6.ebuild,v 1.4 2006/07/25 08:02:43 flameeyes Exp $ inherit kde @@ -11,12 +11,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="flac musicbrainz vorbis" +IUSE="flac vorbis" DEPEND=">=media-libs/id3lib-3.8.3 vorbis? ( media-libs/libvorbis ) - flac? ( media-libs/flac ) - musicbrainz? ( media-libs/tunepimp )" + flac? ( media-libs/flac )" need-kde 3 @@ -24,19 +23,11 @@ need-kde 3 # but the configure step that detects them # cannot be avoided. So KDE support is forced on. -src_unpack() { - unpack ${A} - cd "${S}" - - has_version '>=media-libs/tunepimp-0.4.0' && \ - epatch "${FILESDIR}/${P}-tunepimp04.patch" -} - src_compile() { local myconf="--with-kde - $(use_with vorbis) - $(use_with flac) - $(use_with musicbrainz)" + $(use_with vorbis) + $(use_with flac) + --without-musicbrainz" kde_src_compile } |