diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-07-21 22:36:54 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-07-21 22:36:54 +0000 |
commit | d7c8b260b835fe2562ee4beba34f1b86fefd396f (patch) | |
tree | 3d1f488b529f5f2c0b3ad98781e8f696126705b9 /media-sound/lame | |
parent | now does updating (diff) | |
download | gentoo-2-d7c8b260b835fe2562ee4beba34f1b86fefd396f.tar.gz gentoo-2-d7c8b260b835fe2562ee4beba34f1b86fefd396f.tar.bz2 gentoo-2-d7c8b260b835fe2562ee4beba34f1b86fefd396f.zip |
Switched to make prefix install to get a proper libmp3lame.la, which is
needed for the kioauidocd slave in kde2.2.
Diffstat (limited to 'media-sound/lame')
-rw-r--r-- | media-sound/lame/files/digest-lame-3.88b-r1 | 1 | ||||
-rw-r--r-- | media-sound/lame/lame-3.88b-r1.ebuild | 71 |
2 files changed, 72 insertions, 0 deletions
diff --git a/media-sound/lame/files/digest-lame-3.88b-r1 b/media-sound/lame/files/digest-lame-3.88b-r1 new file mode 100644 index 000000000000..b36840e9a021 --- /dev/null +++ b/media-sound/lame/files/digest-lame-3.88b-r1 @@ -0,0 +1 @@ +MD5 7884ed84fcb1427aee06c6000cd872df lame3.88beta.tar.gz diff --git a/media-sound/lame/lame-3.88b-r1.ebuild b/media-sound/lame/lame-3.88b-r1.ebuild new file mode 100644 index 000000000000..afd477493542 --- /dev/null +++ b/media-sound/lame/lame-3.88b-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# /home/cvsroot/gentoo-x86/media-sound/lame/lame-3.86b.ebuild,v 1.4 2000/11/02 02:17:12 achim Exp + +A=lame3.88beta.tar.gz +S=${WORKDIR}/lame-3.88 +CATEGORY="media-sound" +DESCRIPTION="LAME Ain't an Mp3 Encoder" +SRC_URI="ftp://lame.sourceforge.net/pub/lame/src/${A}" +HOMEPAGE="http://www.mp3dev.org/mp3/" + +DEPEND="virtual/glibc dev-lang/nasm >=sys-libs/ncurses-5.2 + gtk? ( >=x11-libs/gtk+-1.2.8 )" + #vorbis? ( >=media-libs/libvorbis-1.0_beta4 )" + +RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2 + gtk? ( >=x11-libs/gtk+-1.2.8 )" + #vorbis? ( >=media-libs/libvorbis-1.0_beta4 )" + +src_unpack () { + + unpack ${A} + cd ${S} +# cp Makefile Makefile.orig +# sed -e "s:-O3:${CFLAGS}:" Makefile.orig > Makefile + +} + +src_compile() { + + local myconf + if [ "`use vorbis`" ] ; then + #myconf="--with-vorbis" + myconf="--without-vorbis" + else + myconf="--without-vorbis" + fi + if [ "`use gtk`" ] ; then + myconf="$myconf --enable-mp3x" + fi + if [ "$DEBUG" ] ; then + myconf="$myconf --enable-debug=yes" + else + myconf="$myconf --enable-debug=no" + fi + try ./configure --enable-shared --prefix=/usr --mandir=/usr/share/man --enable-extopt=full $myconf + try make + +} + +src_install () { + + try make prefix=${D}/usr mandir=${D}/usr/share/man install +# if [ "`use gtk`" ] ; then +# dobin frontend/.libs/mp3x +# fi +# dobin frontend/.libs/lame +# dolib.a libmp3lame/.libs/libmp3lame.a libmp3lame/.libs/libmp3lame.la +# dolib.so libmp3lame/.libs/libmp3lame.so* +# insinto /usr/include/lame +# doins include/lame.h +# doman doc/man/lame.1 + dodoc API COPYING HACKING PRESETS.draft LICENSE README* TODO USAGE + docinto html + dodoc doc/html/*.html doc/html/*.css + +} + + + |