blob: 54c0255b2b37887635cd7ce0baa0032d5634e781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.6.ebuild,v 1.1 2007/09/04 06:53:53 genstef Exp $
inherit libtool
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="cjk jpeg zlib"
RDEPEND=">=media-libs/freetype-2.1.8
media-libs/fontconfig
cjk? ( app-text/poppler-data )
jpeg? ( >=media-libs/jpeg-6b )
dev-libs/libxml2
!app-text/pdftohtml"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf \
--disable-poppler-qt4 \
--disable-poppler-glib \
--disable-poppler-qt \
--disable-gtk-test \
--enable-opi \
--disable-cairo-output \
--enable-xpdf-headers \
$(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 pdf2xml.dtd
}
|