diff options
author | Vlastimil Babka <caster@gentoo.org> | 2010-03-28 22:07:51 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2010-03-28 22:07:51 +0000 |
commit | 0252c650880ac2c6f9b31699737fdb95e4444bae (patch) | |
tree | 2309a41322aa91914c49a3ea5c1e219366d406fc /dev-java/bcprov/bcprov-1.40.ebuild | |
parent | Version bump, bug #283770. Switch to jdk15 sources. (diff) | |
download | gentoo-2-0252c650880ac2c6f9b31699737fdb95e4444bae.tar.gz gentoo-2-0252c650880ac2c6f9b31699737fdb95e4444bae.tar.bz2 gentoo-2-0252c650880ac2c6f9b31699737fdb95e4444bae.zip |
Bump 1.3 slot to the latest version that vuze can compile with.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-java/bcprov/bcprov-1.40.ebuild')
-rw-r--r-- | dev-java/bcprov/bcprov-1.40.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-java/bcprov/bcprov-1.40.ebuild b/dev-java/bcprov/bcprov-1.40.ebuild new file mode 100644 index 000000000000..2617f8a3d1dd --- /dev/null +++ b/dev-java/bcprov/bcprov-1.40.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/bcprov/bcprov-1.40.ebuild,v 1.1 2010/03/28 22:07:51 caster Exp $ + +EAPI=2 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +MY_P="${PN}-jdk15-${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="1.3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" + +# The src_unpack find needs a new find +# https://bugs.gentoo.org/show_bug.cgi?id=182276 +DEPEND=">=virtual/jdk-1.5 + userland_GNU? ( >=sys-apps/findutils-4.3 ) + app-arch/unzip" +RDEPEND=">=virtual/jre-1.5" + +IUSE="userland_GNU" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + default + 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 +} |