summaryrefslogtreecommitdiff
path: root/dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2024-06-05 09:49:30 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2024-06-17 10:58:46 +0200
commitf1b06e6b7b9ba5e501d7085ffaeb0a03356fce88 (patch)
treec8dc87cd8361627bac398f4b7813f3d389cda83c /dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild
parent76a6702789850826c9be5f6f34cbeb6e31e72fc1 (diff)
downloadgentoo-f1b06e6b7b9ba5e501d7085ffaeb0a03356fce88.tar.gz
gentoo-f1b06e6b7b9ba5e501d7085ffaeb0a03356fce88.tar.bz2
gentoo-f1b06e6b7b9ba5e501d7085ffaeb0a03356fce88.zip
dev-java/cpptasks: rewrite with java-pkg-simple, #852956
Bug: https://bugs.gentoo.org/852920 Bug: https://bugs.gentoo.org/852956 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/36770/commits/3fefd512ff4d9716fc9f7af3b1d7e6c07f7cae52 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild')
-rw-r--r--dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild50
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild b/dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild
new file mode 100644
index 000000000000..c588ecf5dcc6
--- /dev/null
+++ b/dev-java/cpptasks/cpptasks-1.0_beta5-r3.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc examples source test"
+JAVA_TESTING_FRAMEWORKS="junit"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Ant-tasks to compile various source languages and produce executables"
+HOMEPAGE="https://ant-contrib.sourceforge.net"
+SRC_URI="https://downloads.sourceforge.net/ant-contrib/ant-contrib/${P/_/-}/${P/_beta/b}.tar.gz"
+S="${WORKDIR}/${P/_beta/b}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+CP_DEPEND="
+ >=dev-java/ant-1.10.14:0
+ dev-java/xerces:2
+"
+
+DEPEND="${CP_DEPEND}
+ >=virtual/jdk-1.8:*
+ test? (
+ >=dev-java/ant-1.10.14:0[junit]
+ dev-java/junit:0
+ )
+"
+
+RDEPEND="${CP_DEPEND}
+ >=virtual/jre-1.8:*
+"
+
+DOCS=( NOTICE )
+
+JAVA_RESOURCE_DIRS="src/main/resources"
+JAVA_SRC_DIR="src/main/java"
+JAVA_TEST_GENTOO_CLASSPATH="junit"
+JAVA_TEST_RESOURCE_DIRS="src/test/resources"
+JAVA_TEST_RUN_ONLY=( net.sf.antcontrib.cpptasks.TestAllClasses )
+JAVA_TEST_SRC_DIR="src/test/java"
+
+src_install() {
+ java-pkg-simple_src_install
+ java-pkg_register-ant-task
+ use examples && java-pkg_doexamples src/samples/*
+}