summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2007-01-21 20:57:39 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2007-01-21 20:57:39 +0000
commit6c01003da973a2c97d92e33d86fd401597ce699a (patch)
tree8ae20dc99e069bc10872e821d346097334398d23 /media-sound/id3v2/id3v2-0.1.10.ebuild
parentFixed bug #152785. (diff)
downloadgentoo-2-6c01003da973a2c97d92e33d86fd401597ce699a.tar.gz
gentoo-2-6c01003da973a2c97d92e33d86fd401597ce699a.tar.bz2
gentoo-2-6c01003da973a2c97d92e33d86fd401597ce699a.zip
Remove old versions.
(Portage version: 2.1.2-r1)
Diffstat (limited to 'media-sound/id3v2/id3v2-0.1.10.ebuild')
-rw-r--r--media-sound/id3v2/id3v2-0.1.10.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/media-sound/id3v2/id3v2-0.1.10.ebuild b/media-sound/id3v2/id3v2-0.1.10.ebuild
deleted file mode 100644
index 9f0adc7610bb..000000000000
--- a/media-sound/id3v2/id3v2-0.1.10.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/id3v2-0.1.10.ebuild,v 1.5 2005/09/04 10:34:44 flameeyes Exp $
-
-inherit eutils
-
-IUSE=""
-
-DESCRIPTION="A command line editor for id3v2 tags."
-HOMEPAGE="http://id3v2.sourceforge.net/"
-SRC_URI="mirror://sourceforge/id3v2/${P}.tar.gz"
-RESTRICT="nomirror"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ~ppc sparc ~alpha ~hppa amd64"
-
-DEPEND="media-libs/id3lib"
-
-src_unpack()
-{
- unpack ${A} && cd ${S} || die "unpack failed"
-
- # The tarball came with a compiled binary. ;^)
- make clean
-
- # Use our own CXXFLAGS
- sed -i -e "/g++/ s|-g|${CXXFLAGS}|" Makefile || die "sed failed"
-
- # Fix segfault on alpha (and probably other architectures)
- epatch ${FILESDIR}/${PN}-0.1.9-alpha.patch
-
- # Fix global functions being declared inline
- epatch ${FILESDIR}/${P}-noinline.patch
-}
-
-src_compile()
-{
- emake || die
-}
-
-src_install()
-{
- dobin id3v2
- doman id3v2.1
- dodoc README
-}