diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-12-06 11:37:33 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-12-06 11:37:33 +0100 |
commit | 17c6e2bdcf31868f1352702eb70ec33e6e7427f2 (patch) | |
tree | 755b2c11c65762ddc3db6ca5283348138ae4ae3a | |
parent | profiles: add eapi (diff) | |
download | java-17c6e2bdcf31868f1352702eb70ec33e6e7427f2.tar.gz java-17c6e2bdcf31868f1352702eb70ec33e6e7427f2.tar.bz2 java-17c6e2bdcf31868f1352702eb70ec33e6e7427f2.zip |
dev-java/sun-jce-bin: treeclean
Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rw-r--r-- | dev-java/sun-jce-bin/Manifest | 1 | ||||
-rw-r--r-- | dev-java/sun-jce-bin/metadata.xml | 8 | ||||
-rw-r--r-- | dev-java/sun-jce-bin/sun-jce-bin-1.5.0.ebuild | 43 |
3 files changed, 0 insertions, 52 deletions
diff --git a/dev-java/sun-jce-bin/Manifest b/dev-java/sun-jce-bin/Manifest deleted file mode 100644 index 32a10db1..00000000 --- a/dev-java/sun-jce-bin/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jce_policy-1_5_0.zip 8826 SHA256 4de78da737c6d66b74eb6caebf6bdb0648825a95e2909e815678a0d306bf6d8b diff --git a/dev-java/sun-jce-bin/metadata.xml b/dev-java/sun-jce-bin/metadata.xml deleted file mode 100644 index 952a4b9b..00000000 --- a/dev-java/sun-jce-bin/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>java@gentoo.org</email> - <name>Java</name> - </maintainer> -</pkgmetadata> diff --git a/dev-java/sun-jce-bin/sun-jce-bin-1.5.0.ebuild b/dev-java/sun-jce-bin/sun-jce-bin-1.5.0.ebuild deleted file mode 100644 index 15e1cad7..00000000 --- a/dev-java/sun-jce-bin/sun-jce-bin-1.5.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -jcefile="jce_policy-1_5_0.zip" - -S="${WORKDIR}/jdk${MY_PVL}" -DESCRIPTION="Sun's J2SE Cryptographic extensions, version ${PV}" -HOMEPAGE="http://java.sun.com/j2se/1.5.0/" -SRC_URI="${jcefile}" -SLOT="1.5" -LICENSE="sun-bcla-java-vm" -KEYWORDS="~amd64 ~x86" -RESTRICT="fetch" -IUSE="" - -DEPEND="app-arch/unzip" -RDEPEND="" - -FETCH_JCE="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jce_policy-1.5.0-oth-JPR@CDS-CDS_Developer" - -pkg_nofetch() { - einfo "Please download ${jcefile} from:" - einfo ${FETCH_JCE} - einfo "Java(TM) Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files" - einfo "and move it to ${DISTDIR}" -} - -src_unpack() { - if [ ! -r "${DISTDIR}"/${jcefile} ]; then - die "cannot read ${jcefile}. Please check the permission and try again." - fi -} - -src_install() { - - dodir /opt/${P}/jre/lib/security - - cd "${D}"/opt/${P}/jre/lib/security - unzip "${DISTDIR}"/${jcefile} || die "failed to unzip jce" - mv jce unlimited-jce - dodir /opt/${P}/jre/lib/security/strong-jce -} |