blob: badf72370af1ce66a1c3e0c1720f1419e442afb3 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/kaffe/kaffe-1.1.5-r1.ebuild,v 1.8 2006/07/06 11:01:41 nelchael Exp $
inherit eutils java flag-o-matic
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/"
#robilad recommned in bug 103978 that we leave the X and QT
#awt backends disabled for now. Please check the status of these
#backends with new upstream versions.
# X?( virtual/x11 )
# qt?( =x11-libs/qt-3.3* )
DEPEND="
>=media-libs/jpeg-6b
>=media-libs/libpng-1.2.1
app-arch/zip
dev-java/jikes
dev-libs/libxml2
sys-libs/zlib
gtk? (
>=dev-libs/glib-2.0
>=x11-libs/gtk+-2.0
>=media-libs/libart_lgpl-2.0 )
esd? ( >=media-sound/esound-0.2.1 )
alsa? ( >=media-libs/alsa-lib-1.0.1 )
gmp? ( >=dev-libs/gmp-3.1 )"
RDEPEND=${DEPEND}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 -ppc sparc ~x86"
#X qt
IUSE="alsa esd gmp gtk nls"
#S=${WORKDIR}/kaffe-${date}
pkg_setup() {
if ! use gmp; then
ewarn "You have don't have the gmp use flag set."
ewarn "Using gmp is the default upstream setting."
epause 3
fi
if ! use gtk; then
ewarn ""
ewarn "The gtk use flag is needed for a awt implementation."
ewarn "Don't file bugs for awt not working when you have"
ewarn "gtk use flag turned off."
epause 3
fi
}
src_compile() {
local confargs=""
# see #88330
strip-flags "-fomit-frame-pointer"
if ! use alsa && ! use esd; then
confargs="${confargs} --disable-sound"
fi
! use gmp && confargs="${confargs} --enable-pure-java-math"
# $(use_with X x) \
# $(use_with X kaffe-x-awt) \
# $(use_with qt kaffe-qt-awt ) \
./configure \
--prefix=/opt/${P} \
--host=${CHOST} \
$(use_with alsa)\
$(use_with esd) \
$(use_with gmp) \
$(use_enable nls) \
$(use_with gtk classpath-gtk-awt) \
${confargs} \
--with-jikes || die "Failed to configure"
# --with-bcel
# --with-profiling
make || die "Failed to compile"
}
src_install() {
make DESTDIR=${D} install || die "Failed to install"
set_java_env ${FILESDIR}/${VMHANDLE} || die "Failed to install environment files"
}
pkg_postinst() {
ewarn "Please, 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!"
}
|