dev-java/jsap: Convert to java-pkg-simple eclass. Fixes bug 567772.
authorPatrice Clement <monsieurp@gentoo.org>
Fri, 11 Dec 2015 22:53:58 +0000 (22:53 +0000)
committerPatrice Clement <monsieurp@gentoo.org>
Fri, 11 Dec 2015 22:56:39 +0000 (22:56 +0000)
Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
dev-java/jsap/jsap-2.1-r2.ebuild [new file with mode: 0644]

diff --git a/dev-java/jsap/jsap-2.1-r2.ebuild b/dev-java/jsap/jsap-2.1-r2.ebuild
new file mode 100644 (file)
index 0000000..4f35b4e
--- /dev/null
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_PN="JSAP"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Java Simple Arguments Parser (JSAP)"
+HOMEPAGE="http://sourceforge.net/projects/jsap"
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+CDEPEND="
+       dev-java/xstream:0
+       dev-java/ant-core:0"
+
+DEPEND="
+       ${CDEPEND}
+       >=virtual/jdk-1.6"
+
+RDEPEND="
+       ${CDEPEND}
+       >=virtual/jre-1.6"
+
+S="${WORKDIR}/${MY_P}"
+
+JAVA_GENTOO_CLASSPATH="
+       xstream
+       ant-core
+"
+
+java_prepare() {
+       java-pkg_clean
+       find . -type f -name "Test*.java" -delete || die
+}