blob: 3387f7cf36e4d3fc8560328dc2a3fecc6ec104e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libextractor/libextractor-0.1.0.ebuild,v 1.4 2002/10/05 05:39:11 drobbins Exp $
IUSE="oggvorbis"
S=${WORKDIR}/extractor-${PV}
DESCRIPTION="A simple library for keyword extraction"
HOMEPAGE="http://www.ovmj.org/~samanta/libextractor"
SRC_URI="http://www.ovmj.org/~samanta/libextractor/download/extractor-${PV}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="x86 sparc sparc64"
DEPEND=">=sys-devel/libtool-1.4.1
oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 )"
src_compile() {
econf || die "./configure failed"
emake || die
}
src_install () {
make DESTDIR=${D} install || die
}
|