summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-03-27 09:31:11 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-03-27 09:31:11 +0000
commit20bc651cebe55b4af6902890c20b6dee67aee987 (patch)
treeb399f5a4ef3b537aa118205edf8d0cfe3e7019b5 /media-sound/id3v2
parentrepoman fix (diff)
downloadgentoo-2-20bc651cebe55b4af6902890c20b6dee67aee987.tar.gz
gentoo-2-20bc651cebe55b4af6902890c20b6dee67aee987.tar.bz2
gentoo-2-20bc651cebe55b4af6902890c20b6dee67aee987.zip
version bump
Diffstat (limited to 'media-sound/id3v2')
-rw-r--r--media-sound/id3v2/ChangeLog7
-rw-r--r--media-sound/id3v2/id3v2-0.1.9.ebuild36
2 files changed, 42 insertions, 1 deletions
diff --git a/media-sound/id3v2/ChangeLog b/media-sound/id3v2/ChangeLog
index d0212bfdc8a1..e45b9d934ee0 100644
--- a/media-sound/id3v2/ChangeLog
+++ b/media-sound/id3v2/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/id3v2
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.4 2003/03/26 07:56:57 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.5 2003/03/27 09:31:11 seemant Exp $
+
+*id3v2-0.1.9 (27 Mar 2003)
+
+ 27 Mar 2003; Seemant Kulleen <seemant@gentoo.org> id3v2-0.1.9.ebuild:
+ version bump
18 Jan 2003; Bryon Roche <kain@kain.org> ChangeLog, id3v2-0.1.7.ebuild :
diff --git a/media-sound/id3v2/id3v2-0.1.9.ebuild b/media-sound/id3v2/id3v2-0.1.9.ebuild
new file mode 100644
index 000000000000..e22ea18f74dd
--- /dev/null
+++ b/media-sound/id3v2/id3v2-0.1.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/id3v2-0.1.9.ebuild,v 1.1 2003/03/27 09:31:11 seemant Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="A command line editor for id3v2 tags."
+HOMEPAGE="http://id3v2.sourceforge.net/"
+SRC_URI="http://unc.dl.sourceforge.net/sourceforge/id3v2/${P}.tar.gz"
+
+DEPEND="media-libs/id3lib"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm"
+
+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
+}