From 64fa009fea7ae65a9a0a5ac32109ba1b66b7c94d Mon Sep 17 00:00:00 2001 From: Stefan Schweizer Date: Sat, 23 Sep 2006 09:25:26 +0000 Subject: version bump, remove old (Portage version: 2.1.2_pre1) --- .../poppler-bindings/poppler-bindings-0.5.4.ebuild | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 app-text/poppler-bindings/poppler-bindings-0.5.4.ebuild (limited to 'app-text/poppler-bindings/poppler-bindings-0.5.4.ebuild') diff --git a/app-text/poppler-bindings/poppler-bindings-0.5.4.ebuild b/app-text/poppler-bindings/poppler-bindings-0.5.4.ebuild new file mode 100644 index 000000000000..4f7a18c9aef6 --- /dev/null +++ b/app-text/poppler-bindings/poppler-bindings-0.5.4.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/poppler-bindings/poppler-bindings-0.5.4.ebuild,v 1.1 2006/09/23 09:25:26 genstef Exp $ + +inherit autotools eutils multilib + +MY_P=${P/-bindings/} +DESCRIPTION="Poppler bindings are rendering bindings for GUI toolkits for poppler" +HOMEPAGE="http://poppler.freedesktop.org" +SRC_URI="http://poppler.freedesktop.org/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="gtk qt3 cairo qt4" + +RDEPEND="~app-text/poppler-${PV} + cairo? ( >=x11-libs/cairo-0.5 ) + gtk? ( + >=x11-libs/gtk+-2.6 + >=gnome-base/libglade-2 + ) + qt3? ( =x11-libs/qt-3* ) + qt4? ( =x11-libs/qt-4* )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + >=sys-devel/automake-1.9.6" + +S="${WORKDIR}/${MY_P}" + +src_unpack(){ + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/poppler-0.5.2-bindings.patch + epatch ${FILESDIR}/glib-2.0.fix + + AT_M4DIR="m4" eautoreconf + sed -i s:/usr/lib/qt:/usr/lib/qt4: configure +} + +src_compile() { + # Configure needs help finding qt libs on multilib systems + export QTLIB="${QTDIR}/$(get_libdir)" + echo $QTLIB + + econf --enable-opi \ + $(use_enable cairo cairo-output) \ + $(use_enable gtk poppler-glib) \ + $(use_enable qt3 poppler-qt) \ + $(use_enable qt4 poppler-qt4) \ + || die "configuration failed" + cd poppler + if use cairo; then + emake libpoppler-cairo.la || die "cairo failed" + fi + if use qt4; then + emake libpoppler-arthur.la || die "arthur failed" + fi + cd .. + emake || die "compilation failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" +} + +pkg_postinst() { + ewarn "You need to rebuild everything depending on poppler, use revdep-rebuild" +} -- cgit v1.2.3-65-gdbad