blob: 2911c896f02e99a553a4441035cd647563e6cbe3 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-classpath/gnu-classpath-0.90.ebuild,v 1.10 2006/06/24 20:57:16 betelgeuse Exp $
inherit eutils
MY_P=${P/gnu-/}
DESCRIPTION="Free core class libraries for use with virtual machines and compilers for the Java programming language"
SRC_URI="mirror://gnu/classpath/${MY_P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/classpath"
LICENSE="GPL-2-with-linking-exception"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86"
# Add the doc use flag after the upstream build system is improved
# See their bug 24025
IUSE="alsa cairo debug dssi examples gtk xml"
RDEPEND="alsa? ( media-libs/alsa-lib )
dssi? ( >=media-libs/dssi-0.9 )
gtk? ( >=x11-libs/gtk+-2.4
>=dev-libs/glib-2.0
|| ( (
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXtst
)
virtual/x11
)
cairo? ( >=x11-libs/cairo-0.5.0 )
)
xml? ( >=dev-libs/libxml2-2.6.8 >=dev-libs/libxslt-1.1.11 )"
DEPEND="app-arch/zip
dev-java/jikes
gtk? ( || ( (
x11-libs/libXrender
x11-proto/xextproto
x11-proto/xproto
)
virtual/x11
)
)
${REPEND}"
S=${WORKDIR}/${MY_P}
src_compile() {
# Note: This is written in a way to easily support GCJ and other compilers
# at a later point. Currently Gentoo uses mainly GCJ 3.3 (from the
# corresponding GCC) which cannot compile GNU Classpath correctly.
# Another possibility would be ECJ (from Eclipse).
local compiler="--with-jikes"
# Now this detects fastjar automatically and some people have broken
# wrappers in /usr/bin by eselect-compiler. Unfortunately
# --without-fastjar does not seem to work.
# http://bugs.gentoo.org/show_bug.cgi?id=135688
econf ${compiler} \
$(use_enable alsa) \
$(use_enable cairo gtk-cairo) \
$(use_enable debug ) \
$(use_enable examples) \
$(use_enable gtk gtk-peer) \
$(use_enable xml xmlj) \
$(use_enable dssi ) \
--enable-jni \
--disable-dependency-tracking \
|| die "configure failed"
# disabled for now... see above.
# $(use_with doc gjdoc) \
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS BUGS ChangeLog* HACKING NEWS README THANKYOU TODO
}
pkg_postinst() {
if use gtk && use cairo; then
einfo "GNU Classpath was compiled with preliminary cairo support."
einfo "To use that functionality set the system property"
einfo "gnu.java.awt.peer.gtk.Graphics to Graphics2D at runtime."
fi
}
|