diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-09-29 14:52:52 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-09-29 14:52:52 +0000 |
commit | 1905570e489091aa34b4d9129d16ccbfbf984a99 (patch) | |
tree | d1ebce36466fbe6e836a864d3637ec544b278d80 /media-sound | |
parent | new bugfix release (diff) | |
download | gentoo-2-1905570e489091aa34b4d9129d16ccbfbf984a99.tar.gz gentoo-2-1905570e489091aa34b4d9129d16ccbfbf984a99.tar.bz2 gentoo-2-1905570e489091aa34b4d9129d16ccbfbf984a99.zip |
libtoolize
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/lame/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/lame/lame-3.92.ebuild | 33 |
2 files changed, 19 insertions, 19 deletions
diff --git a/media-sound/lame/ChangeLog b/media-sound/lame/ChangeLog index e6a481385431..8e2f2dad4728 100644 --- a/media-sound/lame/ChangeLog +++ b/media-sound/lame/ChangeLog @@ -1,8 +1,11 @@ # 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.6 2002/09/09 00:04:48 jmorgan Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.7 2002/09/29 14:52:52 azarah Exp $ *lame-3.92 (23 Apr 2002) + 29 Sep 2002; Martin Schlemmer <azarah@gentoo.org> : + Libtoolize to fix bug #5638. + 09 Sep 2002; Jack Morgan <jmorgan@gentoo.org> : Added sparc/saprc64 keywords diff --git a/media-sound/lame/lame-3.92.ebuild b/media-sound/lame/lame-3.92.ebuild index bb7c256e29a7..bba7e6179992 100644 --- a/media-sound/lame/lame-3.92.ebuild +++ b/media-sound/lame/lame-3.92.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.92.ebuild,v 1.7 2002/09/23 19:46:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.92.ebuild,v 1.8 2002/09/29 14:52:52 azarah Exp $ + +inherit libtool S=${WORKDIR}/lame-${PV} DESCRIPTION="LAME Ain't an Mp3 Encoder" @@ -10,41 +12,36 @@ HOMEPAGE="http://www.mp3dev.org/mp3/" DEPEND="virtual/glibc x86? ( dev-lang/nasm ) >=sys-libs/ncurses-5.2 - gtk? ( =x11-libs/gtk+-1.2* )" + gtk? ( =x11-libs/gtk+-1.2* )" # oggvorbis? ( >=media-libs/libvorbis-1.0_rc3 )" # Oggvorbis support breaks with -rc3 RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2 - gtk? ( =x11-libs/gtk+-1.2* )" + gtk? ( =x11-libs/gtk+-1.2* )" # oggvorbis? ( >=media-libs/libvorbis-1.0_rc3 )" - -SLOT="0" LICENSE="LGPL-2.1" +SLOT="0" KEYWORDS="x86 ppc sparc sparc64" -src_unpack() { - unpack ${A} -# cd ${S} -# patch -p1 < ${FILESDIR}/lame-3.91-gcc3.diff || die -} src_compile() { + elibtoolize local myconf="" if [ "`use oggvorbis`" ] ; then -# myconf="--with-vorbis" - myconf="--without-vorbis" +# myconf="${myconf} --with-vorbis" + myconf="${myconf} --without-vorbis" else - myconf="--without-vorbis" + myconf="${myconf} --without-vorbis" fi if [ "`use gtk`" ] ; then - myconf="$myconf --enable-mp3x" + myconf="${myconf} --enable-mp3x" fi - if [ "$DEBUG" ] ; then - myconf="$myconf --enable-debug=yes" + if [ "${DEBUG}" ] ; then + myconf="${myconf} --enable-debug=yes" else - myconf="$myconf --enable-debug=no" + myconf="${myconf} --enable-debug=no" fi ./configure --prefix=/usr \ @@ -53,7 +50,7 @@ src_compile() { --enable-nasm \ --enable-mp3rtp \ --enable-extopt=full \ - $myconf || die + ${myconf} || die emake || die } |