diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-09 17:31:11 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-09 17:31:11 +0000 |
commit | d39567756246e789578349b3f7ef826c63b599ba (patch) | |
tree | 29976a5053fc6855416691f49874d75ffbb46d0e /media-libs/libextractor | |
parent | Initial commit of greenbone-security-assistant, part of openvas 4. (diff) | |
download | gentoo-2-d39567756246e789578349b3f7ef826c63b599ba.tar.gz gentoo-2-d39567756246e789578349b3f7ef826c63b599ba.tar.bz2 gentoo-2-d39567756246e789578349b3f7ef826c63b599ba.zip |
Version bump wrt #269050 by Arfrever Frehtes Taifersar Arahesis. This one is using external exiv2 wrt #383039 and doesn't fail to build against zlib >= 1.2.5.1-r1 wrt #383585.
(Portage version: 2.2.0_alpha64/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libextractor')
-rw-r--r-- | media-libs/libextractor/ChangeLog | 12 | ||||
-rw-r--r-- | media-libs/libextractor/libextractor-0.6.2.ebuild | 60 |
2 files changed, 70 insertions, 2 deletions
diff --git a/media-libs/libextractor/ChangeLog b/media-libs/libextractor/ChangeLog index 38781d19139f..ec00a538fb31 100644 --- a/media-libs/libextractor/ChangeLog +++ b/media-libs/libextractor/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for media-libs/libextractor -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libextractor/ChangeLog,v 1.58 2009/12/29 17:43:47 armin76 Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libextractor/ChangeLog,v 1.59 2011/10/09 17:31:11 ssuominen Exp $ + +*libextractor-0.6.2 (09 Oct 2011) + + 09 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> + +libextractor-0.6.2.ebuild: + Version bump wrt #269050 by Arfrever Frehtes Taifersar Arahesis. This one is + using external exiv2 wrt #383039 and doesn't fail to build against zlib >= + 1.2.5.1-r1 wrt #383585. 29 Dec 2009; Raúl Porcel <armin76@gentoo.org> libextractor-0.5.19a.ebuild, libextractor-0.5.20a.ebuild, diff --git a/media-libs/libextractor/libextractor-0.6.2.ebuild b/media-libs/libextractor/libextractor-0.6.2.ebuild new file mode 100644 index 000000000000..f7c12547b6bf --- /dev/null +++ b/media-libs/libextractor/libextractor-0.6.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libextractor/libextractor-0.6.2.ebuild,v 1.1 2011/10/09 17:31:11 ssuominen Exp $ + +EAPI=4 + +DESCRIPTION="A library used to extract metadata from files of arbitrary type" +HOMEPAGE="http://www.gnu.org/software/libextractor/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" +IUSE="gnome ffmpeg" # qt4 test + +RDEPEND="app-arch/bzip2 + app-text/iso-codes + app-text/poppler[cairo] + dev-libs/glib:2 + gnome-extra/libgsf[gnome?] + media-gfx/exiv2 + media-libs/flac + media-libs/libmpeg2 + media-libs/libogg + media-libs/libvorbis + >=sys-devel/libtool-2.2.6b + sys-libs/zlib + virtual/libintl + x11-libs/gtk+:2 + ffmpeg? ( virtual/ffmpeg )" +# qt4? ( x11-libs/qt-gui:4 x11-libs/qt-svg:4 ) +DEPEND="${RDEPEND} + dev-util/pkgconfig + sys-devel/gettext" +# test? ( app-forensics/zzuf ) + +# Disabled tests because they dont work (tester@g.o) +RESTRICT="test" + +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +src_configure() { + econf \ + --enable-glib \ + --enable-gsf \ + $(use_enable gnome) \ + $(use_enable ffmpeg) \ + --without-qt +} + +src_compile() { + emake -j1 +} + +src_install() { + default + + # keeping these for libltdl to load plugins + find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} + +} |