diff options
author | Ben Lutgens <lamer@gentoo.org> | 2002-07-02 03:08:33 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2002-07-02 03:08:33 +0000 |
commit | eb4e235cd8798d90e67242e6415dc7dccf0c156d (patch) | |
tree | a9b83222c01d69c3dd4e0d5166feead42e250b6f /media-sound/gogo | |
parent | See the changelog (diff) | |
download | gentoo-2-eb4e235cd8798d90e67242e6415dc7dccf0c156d.tar.gz gentoo-2-eb4e235cd8798d90e67242e6415dc7dccf0c156d.tar.bz2 gentoo-2-eb4e235cd8798d90e67242e6415dc7dccf0c156d.zip |
crap forgot to cvs add
Diffstat (limited to 'media-sound/gogo')
-rw-r--r-- | media-sound/gogo/gogo-3.10-r1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/media-sound/gogo/gogo-3.10-r1.ebuild b/media-sound/gogo/gogo-3.10-r1.ebuild new file mode 100644 index 000000000000..58ae53744bb4 --- /dev/null +++ b/media-sound/gogo/gogo-3.10-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Michael Cohen <mjc@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/gogo/gogo-3.10-r1.ebuild,v 1.1 2002/07/02 03:08:33 lamer Exp $ + +S=${WORKDIR}/petit310pl3 +DESCRIPTION="GoGo is an assembly optimized version of LAME 3.91" +SRC_URI="http://member.nifty.ne.jp/~pen/free/gogo3/down/petit310pl3.tgz" +HOMEPAGE="http://member.nifty.ne.jp/~pen/free/gogo3/mct_gogo.htm" + +DEPEND="virtual/glibc + dev-lang/nasm" +# >=sys-libs/ncurses-5.H2 +# 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* )" +# oggvorbis? ( >=media-libs/libvorbis-1.0_rc3 )" + +src_compile() { + + local myconf="" +# if [ "`use oggvorbis`" ] ; 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 + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-shared \ + --enable-nasm \ + --enable-extopt=full \ + $myconf || die + + emake || die +} + +src_install () { + + cd /var/tmp/portage/gogo-${PV}/work/petit310pl3 + patch -p0 < ${FILESDIR}/make-work-3.10pl3.patch || die + mkdir ${D}/usr + mkdir ${D}/usr/bin + mkdir ${D}/usr/share + mkdir ${D}/usr/share/man + mkdir ${D}/usr/share/doc + make exec_prefix=${D}usr \ + mandir=${D}usr/share/man \ + install || die + + dodoc COPYING readme_e.txt + dohtml -r ./ +} |