diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2015-09-05 09:51:09 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2015-09-05 09:51:09 +0000 |
commit | 89b9d424178a9aaef93edd9403e742b07bb2d6ee (patch) | |
tree | 73d7c164a8af1adc695791d36d234f2ea6401c08 | |
parent | net-mail/Freemail: EAPI 5 bump. Bump bcprov SLOT to 1.38. (diff) | |
download | gentoo-89b9d424178a9aaef93edd9403e742b07bb2d6ee.tar.gz gentoo-89b9d424178a9aaef93edd9403e742b07bb2d6ee.tar.bz2 gentoo-89b9d424178a9aaef93edd9403e742b07bb2d6ee.zip |
dev-java/bcprov: Clean up old.
Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
-rw-r--r-- | dev-java/bcprov/bcprov-1.38-r2.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-java/bcprov/bcprov-1.38-r2.ebuild b/dev-java/bcprov/bcprov-1.38-r2.ebuild deleted file mode 100644 index 38f288d55309..000000000000 --- a/dev-java/bcprov/bcprov-1.38-r2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -MY_P="${PN}-jdk14-${PV/./}" -DESCRIPTION="Java cryptography APIs" -HOMEPAGE="http://www.bouncycastle.org/java.html" -SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" - -# The src_unpack find needs a new find -# https://bugs.gentoo.org/show_bug.cgi?id=182276 -DEPEND=">=virtual/jdk-1.4 - userland_GNU? ( >=sys-apps/findutils-4.3 ) - app-arch/unzip" -RDEPEND=">=virtual/jre-1.4" - -IUSE="userland_GNU" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - unpack ./src.zip - - # so that we don't need junit - echo "Removing testcases' sources:" - find . -path '*test/*.java' -print -delete \ - || die "Failed to delete testcases." - find . -name '*Test*.java' -print -delete \ - || die "Failed to delete testcases." -} - -src_compile() { - mkdir "${S}/classes" - - find . -name "*.java" > "${T}/src.list" - ejavac -encoding ISO-8859-1 -d "${S}/classes" "@${T}/src.list" - - cd "${S}/classes" - jar -cf "${S}/${PN}.jar" * || die "failed to create jar" -} - -src_install() { - java-pkg_dojar "${S}/${PN}.jar" - - use source && java-pkg_dosrc org - use doc && java-pkg_dojavadoc docs -} |