summaryrefslogtreecommitdiff
blob: 46d102ee59a36eb3c3c44e52fb9275aa163d3d45 (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
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/kaffe/kaffe-1.1.4.ebuild,v 1.4 2004/03/29 03:54:18 zx Exp $

inherit java

DESCRIPTION="A cleanroom, open source Java VM and class libraries"
SRC_URI="http://www.kaffe.org/ftp/pub/kaffe/v1.1.x-development/${P/_/-}.tar.gz"
HOMEPAGE="http://www.kaffe.org/"
DEPEND=">=dev-libs/gmp-3.1
		>=media-libs/jpeg-6b
		>=media-libs/libpng-1.2.1
		virtual/glibc
		virtual/x11
		>=dev-java/java-config-0.2.4"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc ~hppa"

PROVIDE="virtual/jdk-1.4
		virtual/jre-1.4
		virtual/java-scheme-2"

src_compile() {
	./configure \
		--prefix=/opt/${P} \
		--host=${CHOST} \
		`use_enable alsa`\
		`use_enable esd`
	# --with-bcel
	# --with-profiling
	make || die
}

src_install () {
	make DESTDIR=${D} install || die
	set_java_env ${FILESDIR}/${VMHANDLE} || die
}

pkg_postinst() {
	ewarn
	ewarn "-------------------------------------------------------"
	ewarn "WARNING WARNING WARNING WARNING WARNING WARNING WARNING"
	ewarn "-------------------------------------------------------"
	ewarn "By all means, do not use Kaffe as your default JDK/JRE!"
	ewarn "Kaffe is currently meant for testing... it should be"
	ewarn "only be used by developers or bug-hunters willing to deal"
	ewarn "with oddities that are bound to come up while using Kaffe!"
	ewarn "-------------------------------------------------------"
	ewarn
}