summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/libextractor/libextractor-0.2.5.ebuild')
-rw-r--r--dev-libs/libextractor/libextractor-0.2.5.ebuild30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-libs/libextractor/libextractor-0.2.5.ebuild b/dev-libs/libextractor/libextractor-0.2.5.ebuild
deleted file mode 100644
index 8ae6cae48f8c..000000000000
--- a/dev-libs/libextractor/libextractor-0.2.5.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libextractor/libextractor-0.2.5.ebuild,v 1.1 2003/10/02 14:00:33 lanius Exp $
-
-inherit libtool
-
-IUSE="oggvorbis static"
-DESCRIPTION="A simple library for keyword extraction"
-HOMEPAGE="http://www.ovmj.org/~samanta/libextractor"
-SRC_URI="http://www.ovmj.org/~samanta/libextractor/download/${P}.tar.bz2"
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="~x86 ~sparc"
-DEPEND=">=sys-devel/libtool-1.4.1
- oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 )"
-
-src_compile() {
- elibtoolize
-
- myconf="--with-gnu-ld"
- use static \
- && myconf="${myconf} --enable-static" \
- || myconf="${myconf} --disable-static"
- econf ${myconf}
- make || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-}