blob: 9d110f79391d2723fe79a10d93ad10536d55c5a6 (
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
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.4.3-r4.ebuild,v 1.2 2006/01/05 19:18:54 corsair Exp $
inherit eutils autotools
DESCRIPTION="Poppler is a 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
mirror://gentoo/${P}-utils.patch.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="jpeg zlib cairo"
RDEPEND=">=media-libs/freetype-2.1.8
media-libs/fontconfig
virtual/ghostscript
cairo? ( >=x11-libs/cairo-0.5 )
jpeg? ( >=media-libs/jpeg-6b )
zlib? ( sys-libs/zlib )
!<app-text/xpdf-3.01-r4"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=sys-devel/automake-1.9.6"
src_unpack(){
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${P}-utils.patch
epatch ${FILESDIR}/poppler-0.4.1-cairo-ft.patch
epatch ${FILESDIR}/poppler-no-libjpeg.patch
epatch ${FILESDIR}/poppler-0.4.3-gcc41.patch
epatch ${FILESDIR}/poppler-0.4.3-bug117481.patch
eautoreconf
}
src_compile() {
econf --disable-poppler-qt4 --enable-opi \
--disable-poppler-glib --disable-poppler-qt \
$(use_enable cairo cairo-output) \
$(use_enable jpeg libjpeg) \
$(use_enable zlib) \
|| die "configuration failed"
emake || die "compilation failed"
}
src_install() {
make DESTDIR=${D} install || die
dodoc README AUTHORS ChangeLog NEWS README-XPDF TODO
}
|