blob: 14e73ef50d361fda63a89e90c8f6c88706550e4d (
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
58
59
60
61
62
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jgroups/jgroups-2.2.7-r1.ebuild,v 1.6 2006/09/14 19:50:08 nichoj Exp $
inherit java-pkg
DESCRIPTION="JGroups is a toolkit for reliable multicast communication."
SRC_URI="mirror://sourceforge/javagroups/JGroups-${PV}.src.zip"
HOMEPAGE="http://www.jgroups.org/javagroupsnew/docs/"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
RDEPEND=">=virtual/jre-1.4
dev-java/bsh
dev-java/commons-logging
dev-java/concurrent-util
dev-java/sun-jms"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
>=dev-java/ant-core-1.5
app-arch/unzip
junit? ( dev-java/ant-tasks )
jikes? ( dev-java/jikes )"
IUSE="doc junit jikes"
S=${WORKDIR}/JGroups-${PV}.src
src_unpack() {
unpack ${A}
cd ${S}/lib
rm *.jar
java-pkg_jar-from bsh
java-pkg_jar-from commons-logging
java-pkg_jar-from concurrent-util
java-pkg_jar-from sun-jms
use junit && java-pkg_jar-from junit
# Removing so it doesn't get installed with all the other files
rm ${S}/doc/LICENSE
}
src_compile() {
local antflags="compile-1.4 jgroups-core.jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
use junit && antflags="${antflags} unittests"
ant ${antflags} || die "build failed"
}
src_install() {
java-pkg_dojar dist/jgroups-core.jar
dodoc doc/* CREDITS README
if use doc ; then
cd dist
java-pkg_dohtml -r javadoc
fi
}
|