summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/mad/mad-0.14.2b-r2.ebuild')
-rw-r--r--media-sound/mad/mad-0.14.2b-r2.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/media-sound/mad/mad-0.14.2b-r2.ebuild b/media-sound/mad/mad-0.14.2b-r2.ebuild
deleted file mode 100644
index 3f82513ee781..000000000000
--- a/media-sound/mad/mad-0.14.2b-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# 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/mad/mad-0.14.2b-r2.ebuild,v 1.1 2002/07/07 19:22:51 gerk Exp $
-
-S=${WORKDIR}/${P}
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-HOMEPAGE="http://mad.sourceforge.net/"
-DESCRIPTION="A high-quality MP3 decoder"
-
-DEPEND="sys-devel/gcc
- virtual/glibc
- sys-devel/ld.so
- nls? ( sys-devel/gettext )"
-RDEPEND="virtual/glibc sys-devel/ld.so"
-SLOT="0"
-LICENSE="GPL-2"
-
-src_compile() {
- confopts="--infodir=/usr/share/info --mandir=/usr/share/man \
- --prefix=/usr --host=${CHOST} --enable-static \
- --disable-debugging --enable-shared"
-
- use nls || confopts="${confopts} --disable-nls"
-
- # set proper ARCH in configure options
- case ${ARCH} in
- x86)
- confopts="${confopts} --enable-fpm=intel"
- ;;
- ppc)
- confopts="${confopts} --enable-fpm=ppc"
- ;;
- sparc*)
- confopts="${confopts} --enable-fpm=sparc"
- ;;
- esac
-
- ./configure ${confopts} || die
- emake || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-}