blob: bb0b07561aae3026784f319034b35bb9f8da0682 (
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
|
# Copyright 1999-2010 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-3.0-r1.ebuild,v 1.6 2010/02/09 10:03:16 caster Exp $
EAPI=2
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="A backport of java.util.concurrent API, from Java 5.0, to 1.4, and from Java 6.0 to 5.0"
HOMEPAGE="http://www.mathcs.emory.edu/dcl/util/backport-util-concurrent/"
SRC_URI="http://dcl.mathcs.emory.edu/util/${PN}/dist/${P}/Java50/${PN}-Java50-${PV}-src.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
DEPEND="=virtual/jdk-1.5*
test? ( =dev-java/junit-3* )
app-arch/unzip"
RDEPEND="=virtual/jre-1.5*"
S="${WORKDIR}/${PN}-Java50-${PV}-src"
java_prepare() {
if use test; then
# make test not dependo n make
epatch "${FILESDIR}/${P}-test.patch"
else
# don't compile test classes
epatch "${FILESDIR}/${P}-notest.patch"
fi
cd "${S}/external"
rm -v *.jar || die
use test && java-pkg_jar-from --build-only junit
}
EANT_BUILD_TARGET="javacompile archive"
src_test() {
eant test
}
src_install() {
java-pkg_dojar ${PN}.jar
dohtml README.html || die
use doc && java-pkg_dojavadoc doc/api
use source && java-pkg_dosrc src/*
}
|