summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-03-30 01:40:02 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-03-30 01:40:02 +0000
commit98283090f15ac631320d00859b72940e997a77b9 (patch)
tree81027a38e311713dcea4e0bab3391775976c26c9 /media-sound/lame
parentdependency tweaks (diff)
downloadgentoo-2-98283090f15ac631320d00859b72940e997a77b9.tar.gz
gentoo-2-98283090f15ac631320d00859b72940e997a77b9.tar.bz2
gentoo-2-98283090f15ac631320d00859b72940e997a77b9.zip
Removed old ebuilds
Diffstat (limited to 'media-sound/lame')
-rw-r--r--media-sound/lame/files/digest-lame-3.89b-r11
-rw-r--r--media-sound/lame/lame-3.89b-r1.ebuild73
2 files changed, 0 insertions, 74 deletions
diff --git a/media-sound/lame/files/digest-lame-3.89b-r1 b/media-sound/lame/files/digest-lame-3.89b-r1
deleted file mode 100644
index 0902bf810e8d..000000000000
--- a/media-sound/lame/files/digest-lame-3.89b-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b90b549e2a77f980f0d13d7630b8307a lame3.89beta.tar.gz 818839
diff --git a/media-sound/lame/lame-3.89b-r1.ebuild b/media-sound/lame/lame-3.89b-r1.ebuild
deleted file mode 100644
index 7e1ee78b0708..000000000000
--- a/media-sound/lame/lame-3.89b-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# 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.89b.ebuild,v 1 2000/11/02 02:17:12 achim Exp
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.89b-r1.ebuild,v 1.1 2001/10/06 10:08:18 azarah Exp $
-
-
-A=lame3.89beta.tar.gz
-S=${WORKDIR}/lame-3.89
-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.10-r4 )"
- #vorbis? ( >=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 )"
-
-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
-
-}
-
-
-