summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/id3lib/id3lib-3.8.0.ebuild')
-rw-r--r--media-libs/id3lib/id3lib-3.8.0.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/media-libs/id3lib/id3lib-3.8.0.ebuild b/media-libs/id3lib/id3lib-3.8.0.ebuild
deleted file mode 100644
index bf6d830898b4..000000000000
--- a/media-libs/id3lib/id3lib-3.8.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/id3lib-3.8.0.ebuild,v 1.11 2004/07/01 07:56:24 eradicator Exp $
-
-MY_P=${P/_/}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Id3 library for C/C++"
-SRC_URI="mirror://sourceforge/id3lib/${MY_P}.tar.gz"
-HOMEPAGE="http://id3lib.sourceforge.net/"
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="x86 ppc sparc "
-
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_unpack() {
-
- unpack ${A}
-
- if [ "`gcc --version | cut -f1 -d.`" == "3" ] ||
- ([ -n "${CXX}" ] && [ "`${CXX} --version | cut -f1 -d.`" == "3" ]) ||
- [ "`gcc --version|grep gcc|cut -f1 -d.|cut -f3 -d\ `" == "3" ]
- then
- cd ${S}
- # Removed azarah's patch for _pre2 (doesn't seem to be
- # necessary for gcc3.2), added the following for 3.8.0 from
- # Michael Best <gentoo@pendragon.org> (Bug #6840)
- patch -p0 <${FILESDIR}/${P}-gcc3.patch || die
- fi
-}
-
-src_compile() {
-
- export CPPFLAGS="${CPPFLAGS} -Wno-deprecated"
-
- econf || die
- emake || die
-}
-
-src_install() {
-
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS COPYING ChangeLog HISTORY INSTALL README THANKS TODO
-# some example programs to be placed in docs dir.
- make clean
- cp -a examples ${D}/usr/share/doc/${PF}/examples
-}