diff options
author | Michael Weber <xmw@gentoo.org> | 2010-11-27 22:16:40 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2010-11-27 22:16:40 +0000 |
commit | a12554acdd9e2eb00dc95c8a1ee7a883be765c63 (patch) | |
tree | 98d7e9e28e072510919b7b28e377856b945a6dfe /app-text/pdftk/pdftk-1.41-r2.ebuild | |
parent | Add deblob use flag (diff) | |
download | gentoo-2-a12554acdd9e2eb00dc95c8a1ee7a883be765c63.tar.gz gentoo-2-a12554acdd9e2eb00dc95c8a1ee7a883be765c63.tar.bz2 gentoo-2-a12554acdd9e2eb00dc95c8a1ee7a883be765c63.zip |
Revision bump to fix gcc:4.5 problems (bug 339345).
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'app-text/pdftk/pdftk-1.41-r2.ebuild')
-rw-r--r-- | app-text/pdftk/pdftk-1.41-r2.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/app-text/pdftk/pdftk-1.41-r2.ebuild b/app-text/pdftk/pdftk-1.41-r2.ebuild new file mode 100644 index 000000000000..3a2a09dcfb9b --- /dev/null +++ b/app-text/pdftk/pdftk-1.41-r2.ebuild @@ -0,0 +1,67 @@ +# 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-r2.ebuild,v 1.1 2010/11/27 22:16:39 xmw Exp $ + +EAPI="2" + +inherit eutils toolchain-funcs + +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 + http://aur.archlinux.org/packages/pdftk/pdftk/makefile.patch -> ${P}-makefile.patch" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nodrm" + +DEPEND=">=sys-devel/gcc-4.3.1[gcj]" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${P}/${PN} + +src_prepare() { + cd "${WORKDIR}" || die + + #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" + + cd "${S}"/.. || die + #bug 339345 + epatch "${DISTDIR}/${P}-makefile.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 + + sed -e '/^export GCJ=/d' -e '/^export GCJH=/d' \ + -i "${WORKDIR}"/${P}/${PN}/Makefile.Generic || die +} + +src_compile() { + # java-config settings break compilation by gcj. + unset CLASSPATH + unset JAVA_HOME + + tc-export GCJ + export GCJH="${GCJ}"h + + # parallel make fails + emake -j1 -f Makefile.Generic || die "Compilation failed." +} + +src_install() { + dobin pdftk || die + newman ../debian/pdftk.1 pdftk.1 || die + dohtml ../pdftk.1.html || die +} |