summaryrefslogtreecommitdiff
blob: 5c7d523ab1dc5a19461a6b08fd610768a1e61ab5 (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
# 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.2.ebuild,v 1.4 2006/06/11 19:17:33 corsair 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="~ppc ppc64 x86"
IUSE="debug"

DEPEND=">=dev-java/gnu-classpath-0.19"
RDEPEND="${DEPEND}"

src_compile() {
	filter-flags "-fomit-frame-pointer"

	# configure adds "/share/classpath" itself
	# includedir puts jni.h in a package dependent folder
	local myc="--with-classpath-install-dir=/usr
			   --includedir=/usr/include/${PN}"
	use debug && myc="${myc} --enable-trace"
	econf ${myc} || die "configure failed."
	emake || die "make failed."
}

src_install() {
	make install DESTDIR="${D}" || die "installation failed."

	dodoc ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS README \
		|| die "dodoc failed"
}