You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libextractor/libextractor-0.5.19a.ebuild

39 lines
1.0 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libextractor/libextractor-0.5.19a.ebuild,v 1.5 2009/12/29 17:43:47 armin76 Exp $
inherit libtool
DESCRIPTION="A simple library for keyword extraction"
HOMEPAGE="http://www.gnunet.org/libextractor/"
SRC_URI="http://gnunet.org/${PN}/download/${P}.tar.gz"
IUSE="gtk nls vorbis zlib"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 sparc x86"
# Disabled tests because they dont work (tester@g.o)
RESTRICT="test"
DEPEND=">=sys-devel/libtool-1.4.1
>=dev-libs/glib-2.0.0
media-libs/libmpeg2
nls? ( virtual/libintl )
gtk? ( >=x11-libs/gtk+-2.6.10 )
zlib? ( sys-libs/zlib )
vorbis? ( >=media-libs/libvorbis-1.0_beta4 )"
RDEPEND=""
src_compile() {
elibtoolize
#bug #188169 -> --disable-xpdf
econf --enable-glib --enable-exiv2 \
--disable-xpdf \
$(use_enable nls) || die "econf failed"
emake -j1 || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
}