diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2021-04-20 20:39:03 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-04-21 10:25:01 +0200 |
commit | 233db0af1fa87bd2b53903ea16931c9604758dc1 (patch) | |
tree | adb7b993a0a3567868dc32474e86a450d140a88f /dev-java/iso-relax | |
parent | dev-java/aspectj: remove obsolete (diff) | |
download | gentoo-233db0af1fa87bd2b53903ea16931c9604758dc1.tar.gz gentoo-233db0af1fa87bd2b53903ea16931c9604758dc1.tar.bz2 gentoo-233db0af1fa87bd2b53903ea16931c9604758dc1.zip |
dev-java/iso-relax: EAPI 7, min java 1.8
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/20476
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/iso-relax')
-rw-r--r-- | dev-java/iso-relax/iso-relax-20050331-r5.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-java/iso-relax/iso-relax-20050331-r5.ebuild b/dev-java/iso-relax/iso-relax-20050331-r5.ebuild new file mode 100644 index 000000000000..9c24faee8b29 --- /dev/null +++ b/dev-java/iso-relax/iso-relax-20050331-r5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Interfaces useful for applications which support RELAX Core" +HOMEPAGE="http://www.xml.gr.jp/relax/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + +RESTRICT="test" + +CDEPEND="dev-java/ant-core:0" + +DEPEND=" + ${CDEPEND} + >=virtual/jdk-1.8:*" + +RDEPEND=" + ${CDEPEND} + >=virtual/jre-1.8:*" + +S="${WORKDIR}/${P}" + +JAVA_GENTOO_CLASSPATH="ant-core" + +JAVA_SRC_DIR="src" + +src_prepare() { + default + java-pkg_clean +} |