diff options
author | 2005-01-06 23:17:04 +0000 | |
---|---|---|
committer | 2005-01-06 23:17:04 +0000 | |
commit | 5a473f38d09f06307d39799dbca157019f8bb25a (patch) | |
tree | d0e2e8a93fc12dbb59f2013647876e3043740349 /dev-java/swarmcache/swarmcache-1.0_pre20050106.ebuild | |
parent | remove calls to EXPORT_SYMBOL_GPL functions from slamr module (#75656) (diff) | |
download | historical-5a473f38d09f06307d39799dbca157019f8bb25a.tar.gz historical-5a473f38d09f06307d39799dbca157019f8bb25a.tar.bz2 historical-5a473f38d09f06307d39799dbca157019f8bb25a.zip |
Initial import. Ebuild based on the contribution of Dan <dan@intuitivelyobvious.net>. Fixes bug #67417.
Diffstat (limited to 'dev-java/swarmcache/swarmcache-1.0_pre20050106.ebuild')
-rw-r--r-- | dev-java/swarmcache/swarmcache-1.0_pre20050106.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-java/swarmcache/swarmcache-1.0_pre20050106.ebuild b/dev-java/swarmcache/swarmcache-1.0_pre20050106.ebuild new file mode 100644 index 000000000000..f0c59a586bd8 --- /dev/null +++ b/dev-java/swarmcache/swarmcache-1.0_pre20050106.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2005 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.ebuild,v 1.1 2005/01/06 23:17:04 luckyduck Exp $ + +inherit java-pkg + +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="~x86 ~amd64" +DEPEND=">=virtual/jre-1.3 + jikes? ( >=dev-java/jikes-1.21 ) + >=dev-java/ant-core-1.5" +RDEPEND=">=virtual/jre-1.3 + >=dev-java/commons-collections-3 + >=dev-java/commons-logging-1.0.4 + >=dev-java/jgroups-2.2.7" +IUSE="doc jikes" + +src_unpack() { + unpack ${A} + + cd ${S}/lib + java-pkg_jar-from commons-collections + java-pkg_jar-from commons-logging + java-pkg_jar-from jgroups +} + +src_compile() { + local antflags="jar" + use doc && antflags="${antflags} javadoc" + use jikes && antflags="${antflags} -Dbuild.compiler=jikes" + ant ${antflags} || die "compile failed" +} + +src_install() { + java-pkg_dojar dist/${PN}.jar + + dodoc *.txt + use doc && java-pkg_dohtml -r web/api/* +} |