blob: 524315012531258034ebc7ce6f925394c41169a5 (
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
37
38
39
40
41
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jamvm/jamvm-1.4.1.ebuild,v 1.2 2006/02/04 18:19:45 wormo Exp $
inherit eutils flag-o-matic
DESCRIPTION="An extremely small and specification-compliant virtual machine."
HOMEPAGE="http://jamvm.sourceforge.net/"
SRC_URI="mirror://sourceforge/jamvm/jamvm-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="debug"
DEPEND=">=dev-java/gnu-classpath-0.19"
RDEPEND="${DEPEND}"
src_compile() {
filter-flags "-fomit-frame-pointer"
# configure adds "/share/classpath" itself
local myc="--with-classpath-install-dir=/usr"
use debug && myc="${myc} --enable-tracelock"
econf ${myc} || die "configure failed."
emake || die "make failed."
}
src_install() {
make install-strip DESTDIR="${D}" || die "installation failed."
# puts jni.h in a package dependent folder
cd "${D}/usr/include"
mkdir ${PN}
mv jni.h ${PN} || die "moving jni.h to package dependet folder failed"
cd "${S}"
dodoc ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS README \
|| die "dodoc failed"
}
|