# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/pdftk/pdftk-1.41.ebuild,v 1.1 2007/05/07 09:29:31 genstef Exp $ inherit eutils DESCRIPTION="A tool for manipulating PDF documents" HOMEPAGE="http://www.pdfhacks.com/pdftk" SRC_URI="http://www.pdfhacks.com/pdftk/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" DEPEND=">=sys-devel/gcc-3.3" S=${WORKDIR}/${P}/${PN} pkg_setup() { if [ -z "$(type -P gcj 2>/dev/null)" ]; then eerror 'It seems that gcj is not in ${PATH}.' eerror "Re-emerge sys-devel/gcc with \"gcj\" enabled." die "gcj not found." fi } src_unpack() { unpack ${A} # force usage of custom CFLAGS. mv ${S}/Makefile.Generic ${T}/Makefile.Generic.orig sed 's:-O2:\$(CFLAGS):g' \ < ${T}/Makefile.Generic.orig > ${S}/Makefile.Generic epatch "${FILESDIR}"/${P}-honor-ldflags.patch } src_compile() { # java-config settings break compilation by gcj. unset CLASSPATH unset JAVA_HOME make -f Makefile.Generic || die "Compilation failed." } src_install() { dobin pdftk newman ../debian/pdftk.1 pdftk.1 dohtml ../pdftk.1.html }