blob: 41e13e65c4f0c92a53fb0f0f340283ea2bf5973c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/swarmcache/swarmcache-1.0_pre20050106-r1.ebuild,v 1.6 2010/01/03 21:40:07 fauli Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="SwarmCache is a simple but effective distributed cache."
SRC_URI="mirror://gentoo/${P}.tar.bz2"
HOMEPAGE="http://swarmcache.sourceforge.net"
LICENSE="LGPL-2"
SLOT="1.0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
COMMON_DEP=">=dev-java/commons-collections-3
>=dev-java/commons-logging-1.0.4
>=dev-java/jgroups-2.2.7"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEP}
>=dev-java/ant-core-1.5"
src_unpack() {
unpack ${A}
cd "${S}/lib"
java-pkg_jar-from commons-collections
java-pkg_jar-from commons-logging
java-pkg_jar-from jgroups
}
#Tests seem to start a server that just waits
#src_test() {
# eant test
#}
RESTRICT="test"
src_install() {
java-pkg_dojar dist/${PN}.jar
dodoc *.txt
use doc && java-pkg_dojavadoc web/api
use source && java-pkg_dosrc src/net
}
|