blob: b1fcaca3631e399a2893432fd7892cd59df3ed3d (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xpdf/xpdf-2.02.ebuild,v 1.3 2003/03/25 22:00:18 seemant Exp $
IUSE="motif"
S=${WORKDIR}/${P}
DESCRIPTION="An X Viewer for PDF Files"
HOMEPAGE="http://www.foolabs.com/xpdf/xpdf.html"
SRC_URI="ftp://ftp.foolabs.com/pub/xpdf/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha ~mips ~hppa ~arm"
DEPEND="motif? ( virtual/x11
virtual/motif )
>=media-libs/freetype-2.0.5
>=media-libs/t1lib-1.3
app-text/ghostscript"
src_compile() {
econf \
--enable-freetype2 \
--with-freetype2-includes=/usr/include/freetype2 \
--with-gzip || die
make ${MAKEOPTS} || die
}
src_install() {
# don't use builtin make install, as it doesn't compress manpages
make DESTDIR=${D} install || die
prepallman
# into /usr
dodoc README ANNOUNCE CHANGES
# doman doc/*.[1-8]
# dobin xpdf/pdfimages xpdf/pdfinfo xpdf/pdftopbm
# dobin xpdf/pdftops xpdf/pdftotext xpdf/xpdf
insinto /etc
doins ${FILESDIR}/xpdfrc
}
pkg_postinst() {
einfo
einfo "HINT: To have even nicer results add these lines to your ~/.xpdfrc"
einfo
einfo " include /etc/xpdfrc"
einfo " t1libControl high"
einfo " freetypeControl high"
einfo
}
|