blob: 733e5424caf26150d6125d2c9a85ee1ab4dafc75 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/backport-util-concurrent/backport-util-concurrent-1.1.01.ebuild,v 1.1.1.1 2005/11/30 09:47:28 chriswhite Exp $
inherit java-pkg
MY_PV="1.1_01"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="This package is the backport of java.util.concurrent API, introduced in Java 5.0, to Java 1.4"
HOMEPAGE="http://www.mathcs.emory.edu/dcl/util/backport-util-concurrent/"
SRC_URI="http://www.mathcs.emory.edu/dcl/util/${PN}/dist/${MY_P}/${MY_P}-src.tar.bz2"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="jikes doc"
DEPEND=">=virtual/jdk-1.4
dev-java/ant-core
dev-java/junit
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jre-1.4"
S="${WORKDIR}/${MY_P}-src"
src_unpack() {
unpack ${A}
cd ${S}/external
rm -f *.jar
java-pkg_jar-from junit
}
src_compile() {
local antflags="javacompile archive"
use jikes && antflags="-Dbuild.compiler=jikes ${antflags}"
use doc && antflags="${antflags} javadoc"
ant ${antflags} || die "Compilation failed"
}
src_install() {
java-pkg_dojar ${PN}.jar
use doc && java-pkg_dohtml -r doc/api
java-pkg_dohtml README.html
}
|