diff options
Diffstat (limited to 'dev-java/puretls/puretls-0.94_beta4.ebuild')
-rw-r--r-- | dev-java/puretls/puretls-0.94_beta4.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-java/puretls/puretls-0.94_beta4.ebuild b/dev-java/puretls/puretls-0.94_beta4.ebuild new file mode 100644 index 000000000000..fb3736f1a59b --- /dev/null +++ b/dev-java/puretls/puretls-0.94_beta4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/puretls/puretls-0.94_beta4.ebuild,v 1.1 2004/05/17 00:12:30 zx Exp $ + +inherit java-pkg + +DESCRIPTION="PureTLS is a free Java-only implementation of the SSLv3 and TLSv1 (RFC2246) protocols" +HOMEPAGE="http://www.rtfm.com/puretls/" +SRC_URI="mirror://gentoo/puretls-0.9b4.tar.gz + mirror://gentoo/Cryptix-asn1-20011119.tar.gz + mirror://gentoo/cryptix32-20001002-r3.2.0.zip" +LICENSE="puretls" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc" +DEPEND=">=virtual/jdk-1.4" +RDEPEND=">=virtual/jdk-1.4" + +S=${WORKDIR}/${PN}-0.9b4 + +src_unpack() { + unpack puretls-0.9b4.tar.gz + mkdir ${S}/cryptix + cd ${S}/cryptix + unpack cryptix32-20001002-r3.2.0.zip && unpack Cryptix-asn1-20011119.tar.gz + cd ${S} + echo "jdk.version=1.4" >> build.properties + echo "cryptix.jar=cryptix/cryptix32.jar" >> build.properties + echo "cryptix-asn1.jar=cryptix/Cryptix-asn1-20011119/cryptix-asn1.jar" >> build.properties +} + +src_compile() { + ant || die "Unable to compile" +} + +src_install () { + java-pkg_dojar ${S}/build/${PN}.jar + dodoc ChangeLog CREDITS INSTALL LICENSE README + use doc && dohtml -r ${S}/build/doc/* +} |