From d2e1589874d2c6c75cb969dcf47c06d074d9f868 Mon Sep 17 00:00:00 2001 From: "Volkmar W. Pogatzki" Date: Wed, 28 Apr 2021 17:49:02 +0200 Subject: dev-java/jta: min java 1.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki Closes: https://github.com/gentoo/gentoo/pull/20578 Signed-off-by: Miroslav Ć ulc --- dev-java/jta/jta-1.1-r1.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 dev-java/jta/jta-1.1-r1.ebuild (limited to 'dev-java/jta') diff --git a/dev-java/jta/jta-1.1-r1.ebuild b/dev-java/jta/jta-1.1-r1.ebuild new file mode 100644 index 000000000000..4d3770f9bca4 --- /dev/null +++ b/dev-java/jta/jta-1.1-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +JTA_ZIP="jta-1_1-classes.zip" + +inherit java-pkg-2 + +DESCRIPTION="The Java Transaction API" +HOMEPAGE="https://www.oracle.com/java/technologies/jta.html" +SRC_URI="${JTA_ZIP}" + +LICENSE="sun-bcla-jta" +SLOT=0 +KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux" + +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" +BDEPEND="app-arch/unzip" + +RESTRICT="fetch" + +S="${WORKDIR}" + +pkg_nofetch() { + einfo + einfo " Due to license restrictions, we cannot fetch the" + einfo " distributables automagically." + einfo + einfo " 1. Visit ${HOMEPAGE}" + einfo " 2. Select 'Java Transaction API Specification 1.1 Maintenance Release'" + einfo " 3. Download ${JTA_ZIP}" + einfo " 4. Move file to your DISTDIR directory" + einfo " 5. Restart the emerge process" + einfo +} + +src_unpack() { + unzip -qq "${DISTDIR}"/${JTA_ZIP} || die "failed to unpack" +} + +src_compile() { + jar cvf jta.jar javax/ || die "failed to create jar" +} + +src_install() { + java-pkg_dojar jta.jar +} -- cgit v1.2.3-65-gdbad