blob: fbfe66f5cf32fcc64c3b8bd7ac2b6f4f3efd5ee7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jython/jython-2.1-r1.ebuild,v 1.5 2004/06/24 22:37:17 agriffis 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 -*"
IUSE=""
DEPEND=">=virtual/jdk-1.2"
src_unpack() {
addwrite .hotspot
cd ${DISTDIR}
java ${PN}-${MY_PV} -o ${S}/ demo lib source
}
src_install() {
dojar jython.jar
dodoc README.txt NEWS ACKNOWLEDGMENTS LICENSE.txt
dohtml -A .css .jpg .gif -r Doc
dobin ${FILESDIR}/jython
dobin ${FILESDIR}/jythonc
mkdir -p ${D}/var/jython/
chmod a+w ${D}/var/jython/
cp -R ${S}/Tools ${D}/var/jython/
cp -R ${S}/Lib ${D}/var/jython/
}
|