summaryrefslogtreecommitdiff
blob: dc9fbcc4ecf207bdb108df5defefda876caca0d5 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ehcache/ehcache-1.1.ebuild,v 1.2 2005/05/28 23:43:21 luckyduck Exp $

inherit java-pkg

DESCRIPTION="Ehcache is a pure Java, fully-featured, in-process cache."
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
HOMEPAGE="http://ehcache.sourceforge.net"

LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc junit jikes"

DEPEND=">=virtual/jdk-1.4
		>=dev-java/ant-core-1.5
		jikes? ( dev-java/jikes )
		junit? ( dev-java/junit	)"
RDEPEND=">=virtual/jre-1.4
		dev-java/commons-collections
		dev-java/concurrent-util
		dev-java/commons-logging"

src_unpack() {
	unpack ${A}
	cd ${S}
	unzip ${P}-src.zip
	rm *.jar
	rm -rf src/net/sf/ehcache/hibernate
}

src_compile() {
	mkdir ${S}/classes
	cd ${S}/src

	find . -name "*.java"| xargs javac -d ${S}/classes \
		-classpath `java-config -p commons-logging,commons-collections`
	cd ${S}/classes
	jar cf ${S}/${P}.jar *
}

src_install() {
	cd ${S}
	java-pkg_newjar ${S}/${P}.jar ${PN}.jar
	dodoc *.txt ehcache.xml ehcache.xsd
	if use doc ; then
		unzip ${P}-javadoc.zip
		java-pkg_dohtml -r docs
	fi
}