diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2008-09-26 17:52:13 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2008-09-26 17:52:13 +0000 |
commit | 63fbd67115afbd13613a3dbe676c23a41c9863cc (patch) | |
tree | 07fb9bf3b5f2b78498bfa73b52091f6ee96c4e28 | |
parent | Set PROPERTIES=interactive since src_unpack() calls cdrom_get_cds(). (diff) | |
download | gentoo-2-63fbd67115afbd13613a3dbe676c23a41c9863cc.tar.gz gentoo-2-63fbd67115afbd13613a3dbe676c23a41c9863cc.tar.bz2 gentoo-2-63fbd67115afbd13613a3dbe676c23a41c9863cc.zip |
version bump for cairo-1.8
(Portage version: 2.2_rc9/cvs/Linux 2.6.27-rc3-git3 i686)
-rw-r--r-- | app-text/poppler/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/poppler/poppler-0.9.2.ebuild | 45 |
2 files changed, 52 insertions, 1 deletions
diff --git a/app-text/poppler/ChangeLog b/app-text/poppler/ChangeLog index b43f9a6a8b3b..9bbbad68f6c2 100644 --- a/app-text/poppler/ChangeLog +++ b/app-text/poppler/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/poppler # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.168 2008/09/03 20:20:22 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.169 2008/09/26 17:52:13 compnerd Exp $ + +*poppler-0.9.2 (26 Sep 2008) + + 26 Sep 2008; Saleem Abdulrasool <compnerd@gentoo.org> + +poppler-0.9.2.ebuild: + Version bump for cairo 1.8 *poppler-0.8.7 (03 Sep 2008) diff --git a/app-text/poppler/poppler-0.9.2.ebuild b/app-text/poppler/poppler-0.9.2.ebuild new file mode 100644 index 000000000000..597199564b55 --- /dev/null +++ b/app-text/poppler/poppler-0.9.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.9.2.ebuild,v 1.1 2008/09/26 17:52:13 compnerd Exp $ + +inherit libtool eutils + +DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base" +HOMEPAGE="http://poppler.freedesktop.org/" +SRC_URI="http://poppler.freedesktop.org/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="doc cjk jpeg zlib" + +RDEPEND=">=media-libs/freetype-2.1.8 + >=media-libs/fontconfig-2 + cjk? ( app-text/poppler-data ) + jpeg? ( >=media-libs/jpeg-6b ) + zlib? ( sys-libs/zlib ) + dev-libs/libxml2 + !app-text/pdftohtml" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( >=dev-util/gtk-doc-1.0 )" + +src_compile() { + econf \ + --disable-poppler-qt4 \ + --disable-poppler-glib \ + --disable-poppler-qt \ + --disable-gtk-test \ + --disable-cairo-output \ + --enable-xpdf-headers \ + $(use_enable doc gtk-doc) \ + $(use_enable jpeg libjpeg) \ + $(use_enable zlib) \ + || die "configuration failed" + emake || die "compilation failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc README AUTHORS ChangeLog NEWS README-XPDF TODO +} |