summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArcady Genkin <agenkin@gentoo.org>2002-05-22 20:24:55 +0000
committerArcady Genkin <agenkin@gentoo.org>2002-05-22 20:24:55 +0000
commit26509c07e934f03a406235f0cdee09652b1a184c (patch)
treecf4139616a38cdf3a226b1c860876c116ff97bf1 /media-sound/id3v2
parentMasked the new revision of pppd - need kernel support first. (diff)
downloadhistorical-26509c07e934f03a406235f0cdee09652b1a184c.tar.gz
historical-26509c07e934f03a406235f0cdee09652b1a184c.tar.bz2
historical-26509c07e934f03a406235f0cdee09652b1a184c.zip
Initial ebuild. Closes bug #1124.
Diffstat (limited to 'media-sound/id3v2')
-rw-r--r--media-sound/id3v2/ChangeLog10
-rw-r--r--media-sound/id3v2/files/digest-id3v2-0.1.71
-rw-r--r--media-sound/id3v2/id3v2-0.1.7.ebuild33
3 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/id3v2/ChangeLog b/media-sound/id3v2/ChangeLog
new file mode 100644
index 000000000000..9b95a8d1d427
--- /dev/null
+++ b/media-sound/id3v2/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for media-sound/id3v2
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.1 2002/05/22 20:24:55 agenkin Exp $
+
+*id3v2-0.1.7 (22 May 2002)
+
+ 22 May 2002; Arcady Genkin <agenkin@thpoon.com> id3v2-0.1.7.ebuild :
+
+ Initial ebuild, submitted by smitchell@phoenix-interactive.com (Sean
+ Mitchell). \ No newline at end of file
diff --git a/media-sound/id3v2/files/digest-id3v2-0.1.7 b/media-sound/id3v2/files/digest-id3v2-0.1.7
new file mode 100644
index 000000000000..712894fffab7
--- /dev/null
+++ b/media-sound/id3v2/files/digest-id3v2-0.1.7
@@ -0,0 +1 @@
+MD5 825cf4baf60e2951b7826b947a8f52fa id3v2-0.1.7.tar.gz 54132
diff --git a/media-sound/id3v2/id3v2-0.1.7.ebuild b/media-sound/id3v2/id3v2-0.1.7.ebuild
new file mode 100644
index 000000000000..47e6efdb4a3e
--- /dev/null
+++ b/media-sound/id3v2/id3v2-0.1.7.ebuild
@@ -0,0 +1,33 @@
+# 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/id3v2/id3v2-0.1.7.ebuild,v 1.1 2002/05/22 20:24:55 agenkin Exp $
+
+DESCRIPTION="A command line editor for id3v2 tags."
+HOMEPAGE="http://id3v2.sourceforge.net/"
+
+DEPEND="media-libs/id3lib"
+
+SRC_URI="http://unc.dl.sourceforge.net/sourceforge/id3v2/${P}.tar.gz"
+S=${WORKDIR}/${P}
+
+src_unpack()
+{
+ unpack "${A}"
+ cd "${S}"
+ # The tarball came with a compiled binary. ;^)
+ make clean
+ sed -e "/g++/ s|-g|${CFLAGS}|" < Makefile > Makefile.hacked
+ mv Makefile.hacked Makefile
+}
+
+src_compile()
+{
+ emake || die
+}
+
+src_install ()
+{
+ dobin id3v2
+ doman id3v2.1
+ dodoc COPYING INSTALL README
+}