diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-06-05 18:34:46 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-06-05 18:34:46 +0000 |
commit | 561c11bf99989a2097de3c2a1b772f6f0d6a5bbe (patch) | |
tree | e2ca5a1cbd435a63a2c0873558dadc0bf4fdb945 /app-text/pdftk/pdftk-0.94.1.ebuild | |
parent | removing old ebuilds (Manifest recommit) (diff) | |
download | gentoo-2-561c11bf99989a2097de3c2a1b772f6f0d6a5bbe.tar.gz gentoo-2-561c11bf99989a2097de3c2a1b772f6f0d6a5bbe.tar.bz2 gentoo-2-561c11bf99989a2097de3c2a1b772f6f0d6a5bbe.zip |
Version bumped. Corrected pkg_setup() message, thanks to antoine marmingnon <antoine.marmingnon@wanadoo.fr>. Closing bug #52898
Diffstat (limited to 'app-text/pdftk/pdftk-0.94.1.ebuild')
-rw-r--r-- | app-text/pdftk/pdftk-0.94.1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-text/pdftk/pdftk-0.94.1.ebuild b/app-text/pdftk/pdftk-0.94.1.ebuild new file mode 100644 index 000000000000..f8f77694498a --- /dev/null +++ b/app-text/pdftk/pdftk-0.94.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdftk/pdftk-0.94.1.ebuild,v 1.1 2004/06/05 18:34:46 usata Exp $ + +MY_P="${PN}-${PV%.*}${PV##*.}" # 0.94.1 -> 0.941 + +DESCRIPTION="A tool for manipulating PDF documents" +HOMEPAGE="http://www.accesspdf.com/pdftk" +SRC_URI="http://www.accesspdf.com/pdftk/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc + >=sys-devel/gcc-3.3" +S=${WORKDIR}/${MY_P}/${PN} + +pkg_setup() { + if [ -z "$(which gcj 2>/dev/null)" ]; then + eerror "It seems that your system doesn't provides a Java compiler." + eerror "Re-emerge sys-devel/gcc with \"java\" and \"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 +} + +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 ../pdftk.1.manpage.txt pdftk.1 +} |