diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-28 22:23:36 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-28 22:23:36 +0000 |
commit | c395a515c091435a1570d6a396b814a567d41896 (patch) | |
tree | 517c126c23e7e1f7bd5c7f919e82a43167586df4 /media-sound | |
parent | fix for the kde3/autoconf problem, see gentoo-user post, thanks Azarah! (diff) | |
download | gentoo-2-c395a515c091435a1570d6a396b814a567d41896.tar.gz gentoo-2-c395a515c091435a1570d6a396b814a567d41896.tar.bz2 gentoo-2-c395a515c091435a1570d6a396b814a567d41896.zip |
USE flag will be oggvorbis now instead
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/lame/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/lame/lame-3.91.ebuild | 10 |
2 files changed, 12 insertions, 6 deletions
diff --git a/media-sound/lame/ChangeLog b/media-sound/lame/ChangeLog index 334130bcb63f..822b2229f474 100644 --- a/media-sound/lame/ChangeLog +++ b/media-sound/lame/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/lame # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.1 2002/02/01 21:53:31 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.2 2002/03/28 22:23:36 seemant Exp $ + +*lame-3.91 (28 Mar 2002) + + 28 Mar 2002; Seemant Kulleen <seemant@gentoo.org> lame-3.91.ebuild : + + Changed the USE flag to "oggvorbis" instead of just "vorbis" *lame-3.91 (1 Feb 2002) diff --git a/media-sound/lame/lame-3.91.ebuild b/media-sound/lame/lame-3.91.ebuild index 8ee4f2eb6fd8..f2f3881f522e 100644 --- a/media-sound/lame/lame-3.91.ebuild +++ b/media-sound/lame/lame-3.91.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.91.ebuild,v 1.1 2002/01/06 00:03:03 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.91.ebuild,v 1.2 2002/03/28 22:23:36 seemant Exp $ S=${WORKDIR}/lame-${PV} DESCRIPTION="LAME Ain't an Mp3 Encoder" @@ -12,18 +12,18 @@ DEPEND="virtual/glibc dev-lang/nasm >=sys-libs/ncurses-5.2 gtk? ( >=x11-libs/gtk+-1.2.10-r4 )" -# vorbis? ( >=media-libs/libvorbis-1.0_beta4 )" +# oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 )" RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2 gtk? ( >=x11-libs/gtk+-1.2.10-r4 )" -# vorbis? ( >=media-libs/libvorbis-1.0_beta4 )" +# oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 )" src_compile() { local myconf="" - if [ "`use vorbis`" ] ; then + if [ "`use oggvorbis`" ] ; then # myconf="--with-vorbis" myconf="--without-vorbis" else @@ -57,6 +57,6 @@ src_install () { install || die dodoc API COPYING HACKING PRESETS.draft LICENSE README* TODO USAGE - docinto html + dohtml -r ./ } |