commit: 09e0550990ea6cf5232ba3c0a11c933aa01d52d6 Author: charIes17 <charles17 <AT> arcor <DOT> de> AuthorDate: Fri Mar 30 14:40:11 2018 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Sun Apr 8 22:42:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09e05509
app-text/pdftk: add live ebuild with different upstream. Bug: https://bugs.gentoo.org/562568 See https://forums.gentoo.org/viewtopic-p-8187088.html#8187088 Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/7712 app-text/pdftk/pdftk-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-text/pdftk/pdftk-9999.ebuild b/app-text/pdftk/pdftk-9999.ebuild new file mode 100644 index 00000000000..38734756ceb --- /dev/null +++ b/app-text/pdftk/pdftk-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit git-r3 java-pkg-2 java-ant-2 + +DESCRIPTION="gcj-free version of pdftk written in Java" +HOMEPAGE="https://gitlab.com/marcvinyals/pdftk" +EGIT_REPO_URI="https://gitlab.com/marcvinyals/pdftk/" + +LICENSE="GPL-2" +SLOT="0" + +JAVA_PKG_STRICT="yes" +EANT_GENTOO_CLASSPATH="bcprov,commons-lang-3.6" +JAVA_ANT_REWRITE_CLASSPATH="true" + +CDEPEND=" + dev-java/bcprov:0 + dev-java/commons-lang:3.6" + +RDEPEND=" + ${CDEPEND} + >=virtual/jre-1.7" + +DEPEND=" + ${CDEPEND} + >=virtual/jdk-1.7" + +src_install() { + java-pkg_newjar "build/jar/pdftk.jar" + java-pkg_dolauncher +}
