blob: aefb09051c7bf1f617edef49c5d211983a2a0aef (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pdftk/pdftk-1.41-r1.ebuild,v 1.8 2010/10/05 22:48:26 ssuominen Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A tool for manipulating PDF documents"
HOMEPAGE="http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/"
SRC_URI="http://www.pdfhacks.com/pdftk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nodrm"
DEPEND=">=sys-devel/gcc-4.3.1[gcj]"
S=${WORKDIR}/${P}/${PN}
src_unpack() {
unpack ${A}
#bug #225709 and #251796
epatch "${FILESDIR}/${P}-gcc-4.3.patch"
#bug #269312
epatch "${FILESDIR}/${P}-gcc-4.4.patch"
#bug #209802
epatch "${FILESDIR}/${P}-honor-ldflags.patch"
# force usage of custom CFLAGS.
sed -iorig 's:-O2:\$(CFLAGS):g' "${S}"/Makefile.Generic
# nodrm patch, bug 296455
if use nodrm; then
sed -i 's:passwordIsOwner= false:passwordIsOwner= true:' "${WORKDIR}/${P}"/java_libs/com/lowagie/text/pdf/PdfReader.java || die
fi
}
src_compile() {
# java-config settings break compilation by gcj.
unset CLASSPATH
unset JAVA_HOME
# parallel make fails
emake -j1 -f Makefile.Generic || die "Compilation failed."
}
src_install() {
dobin pdftk
newman ../debian/pdftk.1 pdftk.1
dohtml ../pdftk.1.html
}
|