summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Berman <tberman@gentoo.org>2003-04-29 22:15:38 +0000
committerTodd Berman <tberman@gentoo.org>2003-04-29 22:15:38 +0000
commitde469315219e12c1864c50d8cff0d2440b3aa93b (patch)
tree4cd7b96b1329a47e32fdfb506a7124b9cec786a4 /dev-java/jython
parentInitial import. (diff)
downloadhistorical-de469315219e12c1864c50d8cff0d2440b3aa93b.tar.gz
historical-de469315219e12c1864c50d8cff0d2440b3aa93b.tar.bz2
historical-de469315219e12c1864c50d8cff0d2440b3aa93b.zip
Initial import.
Diffstat (limited to 'dev-java/jython')
-rw-r--r--dev-java/jython/Manifest4
-rw-r--r--dev-java/jython/files/digest-jython-2.11
-rw-r--r--dev-java/jython/jython-2.1.ebuild28
3 files changed, 31 insertions, 2 deletions
diff --git a/dev-java/jython/Manifest b/dev-java/jython/Manifest
index 9a3d9a81fa1a..12808ba869ba 100644
--- a/dev-java/jython/Manifest
+++ b/dev-java/jython/Manifest
@@ -1,3 +1,3 @@
-MD5 8d6cefab49f948bcb43668a15d882a1e jython-2.1.ebuild 629
-MD5 66ea07cbd3855e78c114e86b1227230f ChangeLog 237
+MD5 ab25b200977282e12ca79a2b46099d9d jython-2.1.ebuild 726
+MD5 cfa2a2cf3e8f67948f01eca2ce3210c8 ChangeLog 326
MD5 6b146a799308d0793ac04ee93bebfad2 files/digest-jython-2.1 61
diff --git a/dev-java/jython/files/digest-jython-2.1 b/dev-java/jython/files/digest-jython-2.1
new file mode 100644
index 000000000000..de8e46ef8258
--- /dev/null
+++ b/dev-java/jython/files/digest-jython-2.1
@@ -0,0 +1 @@
+MD5 e3e6be56646fb7cd6d19a6a69bd76e2f jython-21.class 2780547
diff --git a/dev-java/jython/jython-2.1.ebuild b/dev-java/jython/jython-2.1.ebuild
new file mode 100644
index 000000000000..4318ede63308
--- /dev/null
+++ b/dev-java/jython/jython-2.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jython/jython-2.1.ebuild,v 1.1 2003/04/29 22:15:33 tberman Exp $
+
+DESCRIPTION="Java Python implementation"
+
+# Homepage, not used by Portage directly but handy for developer reference
+HOMEPAGE="http://www.jython.org"
+MY_PV="21"
+SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.class"
+LICENSE="JPython"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc"
+IUSE=""
+
+DEPEND=">=virtual/jdk-1.2"
+
+src_unpack() {
+
+ unzip ${DISTDIR}/${PN}-${MY_PV}.class -d ${S}/
+
+}
+
+src_install() {
+ dojar jython.jar
+ dodoc README.txt NEWS ACKNOWLEDGMENTS LICENSE.txt
+ dohtml -A .css .jpg .gif -r Doc
+}