diff options
-rw-r--r-- | media-sound/libmad/ChangeLog | 10 | ||||
-rw-r--r-- | media-sound/libmad/files/digest-libmad-0.15.0b | 1 | ||||
-rw-r--r-- | media-sound/libmad/libmad-0.15.0b.ebuild | 41 |
3 files changed, 0 insertions, 52 deletions
diff --git a/media-sound/libmad/ChangeLog b/media-sound/libmad/ChangeLog deleted file mode 100644 index b3996d7e78da..000000000000 --- a/media-sound/libmad/ChangeLog +++ /dev/null @@ -1,10 +0,0 @@ -# ChangeLog for media-sound/libmad -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/libmad/ChangeLog,v 1.1 2003/07/17 09:22:39 raker Exp $ - -*libmad-0.15.0b (17 Jul 2003) - - 17 Jul 2003; Nick Hadaway <raker@gentoo.org> libmad-0.15.0b.ebuild: - New ebuild. Conflicts with media-sound/mad as this does not contain - any userland binaries but just a library. libmad will most likely - replace mad in the near future as this is the newer code base. diff --git a/media-sound/libmad/files/digest-libmad-0.15.0b b/media-sound/libmad/files/digest-libmad-0.15.0b deleted file mode 100644 index f47a2e32caa8..000000000000 --- a/media-sound/libmad/files/digest-libmad-0.15.0b +++ /dev/null @@ -1 +0,0 @@ -MD5 2e4487cdf922a6da2546bad74f643205 libmad-0.15.0b.tar.gz 401829 diff --git a/media-sound/libmad/libmad-0.15.0b.ebuild b/media-sound/libmad/libmad-0.15.0b.ebuild deleted file mode 100644 index 10ff49b06000..000000000000 --- a/media-sound/libmad/libmad-0.15.0b.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/libmad/libmad-0.15.0b.ebuild,v 1.1 2003/07/17 09:22:39 raker Exp $ - -IUSE="debug" - -DESCRIPTION="\"M\"peg \"A\"udio \"D\"ecoder library" -HOMEPAGE="http://mad.sourceforge.net/ - http://www.underbit.com/products/mad/" -SRC_URI="mirror://sourceforge/mad/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" - -DEPEND="virtual/glibc - !media-sound/mad" - -S=${WORKDIR}/${P} - -src_compile() { - local myconf - - myconf="--with-gnu-ld" - # --enable-speed optimize for speed over accuracy - # --enable-accuracy optimize for accuracy over speed - # --enable-experimental enable code using the EXPERIMENTAL - # preprocessor define - - use debug && myconf="${myconf} --enable-debugging" \ - || myconf="${myconf} --disable-debugging" - - econf ${myconf} || die - emake || die -} - -src_install() { - einstall || die - - dodoc CHANGES COPYRIGHT CREDITS README TODO VERSION -} |