diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-01-16 14:53:45 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-01-16 14:53:45 +0000 |
commit | 69bbc7e9220f75806d73962938c22c5ff12c4743 (patch) | |
tree | 139a27053f5b9f0915c77aeeb35d7490c19b575f /media-libs/libextractor/libextractor-0.5.19a.ebuild | |
parent | Version bump and remove old versions but leave one behind for mips. (diff) | |
download | historical-69bbc7e9220f75806d73962938c22c5ff12c4743.tar.gz historical-69bbc7e9220f75806d73962938c22c5ff12c4743.tar.bz2 historical-69bbc7e9220f75806d73962938c22c5ff12c4743.zip |
Version bump
Package-Manager: portage-2.1.4
Diffstat (limited to 'media-libs/libextractor/libextractor-0.5.19a.ebuild')
-rw-r--r-- | media-libs/libextractor/libextractor-0.5.19a.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-libs/libextractor/libextractor-0.5.19a.ebuild b/media-libs/libextractor/libextractor-0.5.19a.ebuild new file mode 100644 index 000000000000..abae5dfacc2f --- /dev/null +++ b/media-libs/libextractor/libextractor-0.5.19a.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 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.1 2008/01/16 14:53:44 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 ~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" +} + |