diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-04-29 13:45:24 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-04-29 13:45:24 +0000 |
commit | f30efb5c1849ba0a46d75d5856da4a4296f76369 (patch) | |
tree | f0593866bc74e210659ccc1465bb33a2648bacf4 /media-sound/easytag | |
parent | version bump (diff) | |
download | gentoo-2-f30efb5c1849ba0a46d75d5856da4a4296f76369.tar.gz gentoo-2-f30efb5c1849ba0a46d75d5856da4a4296f76369.tar.bz2 gentoo-2-f30efb5c1849ba0a46d75d5856da4a4296f76369.zip |
Force --enable-ogg when USE speex is selected wrt #211086, thanks to Vasileios P. Lourdas for reporting.
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'media-sound/easytag')
-rw-r--r-- | media-sound/easytag/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/easytag/easytag-2.1.5.ebuild | 20 |
2 files changed, 19 insertions, 7 deletions
diff --git a/media-sound/easytag/ChangeLog b/media-sound/easytag/ChangeLog index c15cc83aa6a6..b0d48499660d 100644 --- a/media-sound/easytag/ChangeLog +++ b/media-sound/easytag/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/easytag # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.113 2008/01/27 14:55:05 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.114 2008/04/29 13:45:24 drac Exp $ + + 29 Apr 2008; Samuli Suominen <drac@gentoo.org> easytag-2.1.5.ebuild: + Force --enable-ogg when USE speex is selected wrt #211086, thanks to + Vasileios P. Lourdas for reporting. *easytag-2.1.5 (27 Jan 2008) diff --git a/media-sound/easytag/easytag-2.1.5.ebuild b/media-sound/easytag/easytag-2.1.5.ebuild index 578fbbe1d081..54171e321014 100644 --- a/media-sound/easytag/easytag-2.1.5.ebuild +++ b/media-sound/easytag/easytag-2.1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.1.5.ebuild,v 1.1 2008/01/27 14:55:05 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.1.5.ebuild,v 1.2 2008/04/29 13:45:24 drac Exp $ DESCRIPTION="GTK+ utility for editing MP2, MP3, MP4, FLAC, Ogg and other media tags" HOMEPAGE="http://easytag.sourceforge.net" @@ -14,24 +14,32 @@ IUSE="aac flac mp3 speex vorbis wavpack" RDEPEND=">=x11-libs/gtk+-2.4.1 mp3? ( >=media-libs/id3lib-3.8.3-r6 media-libs/libid3tag ) - flac? ( >=media-libs/flac-1.1 >=media-libs/libvorbis-1 ) - vorbis? ( >=media-libs/libvorbis-1.0.1 - >=media-libs/libogg-1 ) + flac? ( media-libs/flac + media-libs/libvorbis ) + vorbis? ( media-libs/libvorbis ) aac? ( media-libs/libmp4v2 ) wavpack? ( media-sound/wavpack ) - speex? ( media-libs/speex )" + speex? ( media-libs/speex + media-libs/libvorbis )" DEPEND="${RDEPEND} dev-util/pkgconfig sys-devel/gettext" src_compile() { + local myconf + + # Speex support fails to build without vorbis wrt #211086 + use speex && myconf="--enable-ogg" + econf $(use_enable mp3) \ $(use_enable mp3 id3v23) \ $(use_enable vorbis ogg) \ $(use_enable flac) \ $(use_enable aac mp4) \ $(use_enable wavpack) \ - $(use_enable speex) + $(use_enable speex) \ + ${myconf} + emake || die "emake failed." } |