blob: 4e0f9774da30d985ce6b43ef1f88277d1bd79cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jython-bin/jython-bin-2.1-r2.ebuild,v 1.1 2004/07/30 11:53:15 karltk Exp $
DESCRIPTION="An implementation of Python written in Java"
HOMEPAGE="http://www.jython.org"
MY_PV="21"
SRC_URI="mirror://sourceforge/jython/jython-${MY_PV}.class"
LICENSE="JPython"
SLOT="0"
KEYWORDS="~x86 ~ppc sparc amd64"
IUSE=""
S=${WORKDIR}/jython-${PV}
DEPEND=">=virtual/jdk-1.2"
src_unpack() {
addwrite .hotspot
cd ${DISTDIR}
java jython-${MY_PV} -o ${S}/ demo lib source
}
src_install() {
dojar jython.jar
dodoc {README,LICENSE}.txt NEWS ACKNOWLEDGMENTS
dohtml -A .css .jpg .gif -r Doc
dobin ${FILESDIR}/jython
dobin ${FILESDIR}/jythonc
cp -R Lib/* ${D}/usr/share/${PN}/lib/
mkdir ${D}/usr/share/${PN}/tools/
cp -R Tools/* ${D}/usr/share/${PN}/tools/
dosym /usr/share/jython-bin /usr/share/jython
}
|