blob: 35c817e88f66502815c4e742da7d353e25e08ead (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/kissme/kissme-0.0.32.ebuild,v 1.3 2004/06/24 22:37:49 agriffis Exp $
DESCRIPTION="Tiny, JITless JVM"
SRC_URI="mirror://sourceforge/kissme/${P}.tar.gz"
HOMEPAGE="http://kissme.sourceforge.net/"
DEPEND="virtual/glibc
virtual/x11
>=dev-libs/gmp-3.1.1
>=dev-java/jikes-1.19
>=dev-java/gnu-classpath-0.08_rc1"
RDEPEND=""
IUSE="doc"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
src_compile() {
econf \
--with-java-compiler=/usr/bin/jikes || die "conf failed"
emake || die "make failed"
}
src_install () {
einstall || die "install failed"
dodoc AUTHORS COPYING NEWS
dodoc doc/*.txt
dodoc doc/{TAGS,TIMING}
use doc && dohtml -r doc/*
exeinto /usr/bin
newexe ${FILESDIR}/kissme.sh kissme
}
|