blob: 02bd8c6c166e9073fcdda657703fd53b136874b3 (
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 Foundation
# 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.9 2004/07/02 04:20:59 eradicator 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/libc
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
}
|