blob: b03fa56e2911c35d9ea778dc45e47bc0b72581e3 (
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-2006 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.6 2006/01/21 14:02:52 hansmi 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
}
|