summaryrefslogtreecommitdiff
blob: f108834f19a4daf8812d5245cde0def3a926938b (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/japhar/japhar-0.10.ebuild,v 1.7 2004/03/19 01:15:03 zx Exp $

DESCRIPTION="A Free Java Virtual Machine (JVM)"
SRC_URI="ftp://ftp.japhar.org/pub/hungry/japhar/source/${P}.tar.gz"
HOMEPAGE="http://www.japhar.org/"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/glibc
		virtual/x11
		>=sys-libs/zlib-1.1.3
		>=dev-libs/nspr-4.1.2"

src_compile() {
	./configure \
		--host=${CHOST} \
		--prefix=/usr \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man || die "./configure failed"
	emake || die
}

src_install () {
	make DESTDIR=${D} install || die
}