blob: 1ad21d9d5d5d6ef03c99c5c361ae4cd20d7b1f19 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jal/jal-20031117.ebuild,v 1.8 2005/02/04 23:30:49 luckyduck Exp $
inherit eutils java-pkg
DESCRIPTION="Jal is a partial port of the STL by the C++ Standard Template Library."
SRC_URI="http://vigna.dsi.unimi.it/jal/${P}-src.tar.gz"
HOMEPAGE="http://vigna.dsi.unimi.it/jal/"
LICENSE="X11"
SLOT="0"
KEYWORDS="x86 ~ppc amd64"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.4
jikes?( >=dev-java/jikes-1.21 )"
RDEPEND=">=virtual/jre-1.4
>=dev-java/fastutil-3.1"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/buildxml.patch
# we have to generate the sources first
./instantiate -n byte bytes
./instantiate -n short shorts
./instantiate -n char chars
./instantiate -n int ints
./instantiate -n long longs
./instantiate -n float floats
./instantiate -n double doubles
./instantiate Object objects
./instantiate String strings
mkdir -p src/jal
mv bytes shorts chars ints longs floats doubles objects strings src/jal
}
src_compile () {
local antflags="jar"
if use doc; then
antflags="${antflags} javadoc"
fi
if use jikes; then
antflags="${antflags} -Dbuild.compiler=jikes"
fi
ant ${antflags}
}
src_install() {
java-pkg_dojar ${PN}.jar
if use doc; then
java-pkg_dohtml -r docs/*
fi
}
|