summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-06-21 21:51:26 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-06-21 21:51:26 +0000
commit6f840707da359e9b31388e045ba1992b0e842eee (patch)
treeeb1e4d4a3241ecbf49e1f4e35afa5152b2b4d78d /media-sound/mp3c
parentnew package. fixes #3690 (diff)
downloadhistorical-6f840707da359e9b31388e045ba1992b0e842eee.tar.gz
historical-6f840707da359e9b31388e045ba1992b0e842eee.tar.bz2
historical-6f840707da359e9b31388e045ba1992b0e842eee.zip
new package. fixes #3841
Diffstat (limited to 'media-sound/mp3c')
-rw-r--r--media-sound/mp3c/Changelog8
-rw-r--r--media-sound/mp3c/files/digest-mp3c-0.271
-rw-r--r--media-sound/mp3c/mp3c-0.27.ebuild31
3 files changed, 40 insertions, 0 deletions
diff --git a/media-sound/mp3c/Changelog b/media-sound/mp3c/Changelog
new file mode 100644
index 000000000000..22484520ebc1
--- /dev/null
+++ b/media-sound/mp3c/Changelog
@@ -0,0 +1,8 @@
+# ChangeLog for media-sound/mp3c
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+
+*mp3c-0.27 (18 Jun 2002)
+
+ 18 Jun 2002; Felix Kurth <felix@fkurth.de>
+ initial release
+
diff --git a/media-sound/mp3c/files/digest-mp3c-0.27 b/media-sound/mp3c/files/digest-mp3c-0.27
new file mode 100644
index 000000000000..b3ab6fc08e63
--- /dev/null
+++ b/media-sound/mp3c/files/digest-mp3c-0.27
@@ -0,0 +1 @@
+MD5 6afabf4c266effa498cd0bd7d25063c9 mp3c-0.27.tar.gz 423772
diff --git a/media-sound/mp3c/mp3c-0.27.ebuild b/media-sound/mp3c/mp3c-0.27.ebuild
new file mode 100644
index 000000000000..4f7517090013
--- /dev/null
+++ b/media-sound/mp3c/mp3c-0.27.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# Author: Felix Kurth <felix@fkurth.de>
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3c/mp3c-0.27.ebuild,v 1.1 2002/06/21 21:51:26 rphillips Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="console based mp3 ripper, with cddb support"
+HOMEPAGE="http://mp3c.wspse.de/WSPse/Linux-MP3c.php3?lang=en"
+LICENSE="GPL­2"
+SRC_URI="ftp://excelsior.kullen.rwth-aachen.de/pub/linux/wspse/${P}.tar.gz"
+DEPEND=">=media-sound/bladeenc-0.94.2 \
+ >=media-sound/cdparanoia-3.9.8 \
+ >=media-sound/mp3info-0.8.4-r1"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make \
+ prefix=${D}/usr \
+ mandir=${D}/usr/share/man \
+ infodir=${D}/usr/share/info \
+ install || die
+ dodoc ABOUT-NLS AUTHORS BATCH.README BUGS CDDB_HOWTO COPYING ChangeLog FAQ INSTALL NEWS OTHERS README TODO
+}