diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2021-04-28 19:42:21 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-04-28 19:42:28 +0200 |
commit | d3e69d61220970bded06187ae0204d134144db65 (patch) | |
tree | 9aa5ff3ca7fbebf4b34ac91e304579bcc035dd83 /dev-java/jta | |
parent | dev-java/jta: min java 1.8 (diff) | |
download | gentoo-d3e69d61220970bded06187ae0204d134144db65.tar.gz gentoo-d3e69d61220970bded06187ae0204d134144db65.tar.bz2 gentoo-d3e69d61220970bded06187ae0204d134144db65.zip |
dev-java/jta: dropped obsolete 1.1
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jta')
-rw-r--r-- | dev-java/jta/jta-1.1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-java/jta/jta-1.1.ebuild b/dev-java/jta/jta-1.1.ebuild deleted file mode 100644 index 6826cc091f2f..000000000000 --- a/dev-java/jta/jta-1.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JTA_ZIP="jta-1_1-classes.zip" - -inherit java-pkg-2 - -DESCRIPTION="The Java Transaction API" -HOMEPAGE="http://www.oracle.com/technetwork/java/javaee/jta/index.html" -SRC_URI="${JTA_ZIP}" -LICENSE="sun-bcla-jta" -SLOT=0 -KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux" - -DEPEND=" >=virtual/jdk-1.5" -RDEPEND=">=virtual/jre-1.5" - -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 -} |