diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-21 03:07:47 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-21 03:07:47 +0000 |
commit | bdcb0499ae169a86158e041e3052e6547fc09714 (patch) | |
tree | 4747819c5a3efb0dbae3284aa0c21b68630c5608 /media-sound/mad | |
parent | added ppc keyword (diff) | |
download | historical-bdcb0499ae169a86158e041e3052e6547fc09714.tar.gz historical-bdcb0499ae169a86158e041e3052e6547fc09714.tar.bz2 historical-bdcb0499ae169a86158e041e3052e6547fc09714.zip |
repoman'd
Diffstat (limited to 'media-sound/mad')
-rw-r--r-- | media-sound/mad/files/digest-mad-0.13.0b | 1 | ||||
-rw-r--r-- | media-sound/mad/files/digest-mad-0.14.2b | 1 | ||||
-rw-r--r-- | media-sound/mad/files/digest-mad-0.14.2b-r2 | 1 | ||||
-rw-r--r-- | media-sound/mad/mad-0.13.0b.ebuild | 31 | ||||
-rw-r--r-- | media-sound/mad/mad-0.14.2b-r1.ebuild | 31 | ||||
-rw-r--r-- | media-sound/mad/mad-0.14.2b-r2.ebuild | 45 | ||||
-rw-r--r-- | media-sound/mad/mad-0.14.2b.ebuild | 24 |
7 files changed, 18 insertions, 116 deletions
diff --git a/media-sound/mad/files/digest-mad-0.13.0b b/media-sound/mad/files/digest-mad-0.13.0b deleted file mode 100644 index afcee984d012..000000000000 --- a/media-sound/mad/files/digest-mad-0.13.0b +++ /dev/null @@ -1 +0,0 @@ -MD5 46c6b090e534b2a710a96c6dfc1d95fe mad-0.13.0b.tar.gz 552379 diff --git a/media-sound/mad/files/digest-mad-0.14.2b b/media-sound/mad/files/digest-mad-0.14.2b deleted file mode 100644 index 4d4bba1ea629..000000000000 --- a/media-sound/mad/files/digest-mad-0.14.2b +++ /dev/null @@ -1 +0,0 @@ -MD5 eb3bfbe634ba9d5b4928aa11e0f6819d mad-0.14.2b.tar.gz 721345 diff --git a/media-sound/mad/files/digest-mad-0.14.2b-r2 b/media-sound/mad/files/digest-mad-0.14.2b-r2 deleted file mode 100644 index 4d4bba1ea629..000000000000 --- a/media-sound/mad/files/digest-mad-0.14.2b-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 eb3bfbe634ba9d5b4928aa11e0f6819d mad-0.14.2b.tar.gz 721345 diff --git a/media-sound/mad/mad-0.13.0b.ebuild b/media-sound/mad/mad-0.13.0b.ebuild deleted file mode 100644 index cb078eaf0708..000000000000 --- a/media-sound/mad/mad-0.13.0b.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2001 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.13.0b.ebuild,v 1.3 2002/07/11 06:30:40 drobbins Exp $ - -S=${WORKDIR}/${P} -SRC_URI="ftp://ftp.mars.org/pub/mpeg/${P}.tar.gz" - -HOMEPAGE="http://www.mars.org/home/rob/proj/mpeg/" -DESCRIPTION="A high-quality mp3 decoder" - -DEPEND="sys-devel/gcc virtual/glibc sys-devel/ld.so" -RDEPEND="virtual/glibc sys-devel/ld.so" - -src_compile() { - - confopts="--infodir=/usr/share/info --mandir=/usr/share/man \ - --prefix=/usr --host=${CHOST} --enable-static \ - --disable-debugging --enable-shared --enable-fpm=intel" - - try ./configure ${confopts} - - try emake - -} - -src_install () { - - try make DESTDIR=${D} install - -} - diff --git a/media-sound/mad/mad-0.14.2b-r1.ebuild b/media-sound/mad/mad-0.14.2b-r1.ebuild index b74842c65dce..8d5eb1fd7816 100644 --- a/media-sound/mad/mad-0.14.2b-r1.ebuild +++ b/media-sound/mad/mad-0.14.2b-r1.ebuild @@ -1,30 +1,35 @@ # 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-r1.ebuild,v 1.3 2002/07/11 06:30:40 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mad/mad-0.14.2b-r1.ebuild,v 1.4 2002/07/21 03:07:46 seemant Exp $ S=${WORKDIR}/${P} -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - HOMEPAGE="http://mad.sourceforge.net/" DESCRIPTION="A high-quality MP3 decoder" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -DEPEND="sys-devel/gcc - virtual/glibc - sys-devel/ld.so - nls? ( sys-devel/gettext )" -RDEPEND="virtual/glibc sys-devel/ld.so" +DEPEND="sys-devel/ld.so + esd? ( media-sound/esound )" +RDEPEND="nls? ( sys-devel/gettext )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc" src_compile() { - confopts="--infodir=/usr/share/info --mandir=/usr/share/man \ - --prefix=/usr --host=${CHOST} --enable-static \ - --disable-debugging --enable-shared --enable-fpm=intel" + local myconf - use nls || confopts="${confopts} --disable-nls" + use esd || myconf="${myconf} --without-esd" + use nls || myconf="${myconf} --disable-nls" - ./configure ${confopts} || die + econf \ + --enable-static \ + --enable-shared \ + ${myconf} || die emake || die } src_install () { make DESTDIR=${D} install || die + + dodoc CHANGES COPY* CREDITS README TODO VERSION } 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 -} diff --git a/media-sound/mad/mad-0.14.2b.ebuild b/media-sound/mad/mad-0.14.2b.ebuild deleted file mode 100644 index 98d88044575e..000000000000 --- a/media-sound/mad/mad-0.14.2b.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2001 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.ebuild,v 1.3 2002/07/11 06:30:40 drobbins 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" -RDEPEND="virtual/glibc sys-devel/ld.so" - -src_compile() { - confopts="--infodir=/usr/share/info --mandir=/usr/share/man \ - --prefix=/usr --host=${CHOST} --enable-static \ - --disable-debugging --enable-shared --enable-fpm=intel" - ./configure ${confopts} || die - emake || die -} - -src_install () { - make DESTDIR=${D} install || die -} |