blob: 9297acc5c0aa2ce2f3a0180f28c6042ce695fb69 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/concurrent-util/concurrent-util-1.3.4.ebuild,v 1.2 2005/01/01 18:20:38 eradicator Exp $
inherit java-pkg
DESCRIPTION="Doug Lea's concurrency utilities provide standardized, efficient versions of utility classes commonly encountered in concurrent Java programming."
SRC_URI="mirrors://gentoo/gentoo-concurrent-util-1.3.4.tar.bz2"
HOMEPAGE="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RDEPEND=">=virtual/jre-1.2"
DEPEND=">=virtual/jdk-1.2
>=dev-java/ant-core-1.5 "
IUSE="doc jikes"
src_compile() {
local antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} doc"
ant ${antflags} || die "failed to build"
}
src_install() {
java-pkg_dojar build/lib/concurrent.jar
dodoc sun-u.c.license.pdf
if use doc ; then
cd build
java-pkg_dohtml -r javadoc
insinto /usr/share/doc/${PF}/demo
doins demo/*
fi
}
|