# 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.4.4.ebuild,v 1.2 2006/01/25 22:48:27 dang Exp $ inherit eutils autotools 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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="gtk qt cairo" RDEPEND=">=app-text/poppler-0.4.4 cairo? ( >=x11-libs/cairo-0.5 ) gtk? ( >=x11-libs/gtk+-2.4 ) qt? ( =x11-libs/qt-3* )" DEPEND="${RDEPEND} dev-util/pkgconfig >=sys-devel/automake-1.9.6" S="${WORKDIR}/${MY_P}" pkg_setup() { if use cairo && ! built_with_use app-text/poppler cairo; then einfo "You have the cairo USE flag set for poppler-bindings but not" einfo "for poppler. Make those use flags match" die "Make cairo use flags for poppler and poppler-bindings match" elif ! use cairo && built_with_use app-text/poppler cairo; then einfo "You have the cairo USE flag set for poppler but not for" einfo "poppler-bindings. Make those use flags match" die "Make cairo use flags for poppler and poppler-bindings match" fi } src_unpack(){ unpack ${A} cd ${S} epatch ${FILESDIR}/poppler-0.4.3-bindings.patch eautoreconf } src_compile() { econf --disable-poppler-qt4 --enable-opi \ $(use_enable cairo cairo-output) \ $(use_enable gtk poppler-glib) \ $(use_enable qt poppler-qt) \ || die "configuration failed" emake || die "compilation failed" } src_install() { make DESTDIR=${D} install || die dodoc README AUTHORS ChangeLog NEWS README-XPDF TODO }