summaryrefslogtreecommitdiff
blob: 0cc6c28d86e85185452460ce290e406b1b28e4cf (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/hibernate/hibernate-2.1.8.ebuild,v 1.11 2007/01/24 20:07:44 caster Exp $

inherit java-pkg

DESCRIPTION="Hibernate is a powerful, ultra-high performance object / relational persistence and query service for Java."
SRC_URI="mirror://sourceforge/hibernate/${P}.tar.gz"
HOMEPAGE="http://www.hibernate.org"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~x86 ~amd64"
RDEPEND=">=virtual/jre-1.4

		=dev-java/cglib-2.0*
		dev-java/commons-collections
		=dev-java/commons-lang-2.0*
		dev-java/commons-logging
		dev-java/concurrent-util
		>=dev-java/dom4j-1.5
		dev-java/ehcache
		dev-java/jcs-bin
		dev-java/jta
		dev-java/odmg

		c3p0? (
			dev-java/c3p0
		)
		dbcp? (
			dev-java/commons-pool
			dev-java/commons-dbcp
		)
		jboss? (
			>=www-servers/jboss-3.2.5
			dev-java/sun-jmx
		)
		proxool? (
			dev-java/proxool
		)
		oscache? (
			dev-java/oscache
		)
		swarmcache? (
			dev-java/swarmcache
		)

		"
DEPEND=">=virtual/jdk-1.4
		${RDEPEND}
		>=dev-java/ant-core-1.5
		junit? (
			dev-java/ant
			dev-java/junit
			dev-db/hsqldb
		)"
IUSE="c3p0 dbcp doc jikes jboss jcs junit proxool oscache swarmcache"

S=${WORKDIR}/${PN}-${PV:0:3}

src_unpack() {
	unpack ${A}
	cd ${S}
	mv lib old-lib
	mkdir lib
	cd lib
	mv ../old-lib/connector.jar .

	java-pkg_jar-from cglib-2
	java-pkg_jar-from commons-collections
	java-pkg_jar-from commons-lang
	java-pkg_jar-from commons-logging
	java-pkg_jar-from concurrent-util
	java-pkg_jar-from dom4j-1
	java-pkg_jar-from ehcache
	java-pkg_jar-from jcs-bin-1.0
	java-pkg_jar-from jta
	java-pkg_jar-from odmg

	# c3p0 support
	if use c3p0 ; then
		java-pkg_jar-from c3p0
	else
		find ${S}/src -name "C3P0*" -exec rm {} \;
	fi

	# DBCP support
	if use dbcp ; then
		java-pkg_jar-from commons-dbcp
		java-pkg_jar-from commons-pool
	else
		find ${S}/src -name "DBCP*" -exec rm {} \;
	fi

	# JBoss caching support
	if use jboss ; then
		JBOSSHOME=`java-config -p jboss | sed -e "s/\/client.*$//g"`
		ln -sf ${JBOSSHOME}/server/all/lib/jboss-cache.jar
		ln -sf ${JBOSSHOME}/lib/jboss-system.jar
		java-pkg_jar-from sun-jmx
		if ! [ -r jboss-cache.jar ] ; then
			eerror "The JBoss JARs are not readable.  Most likely, the "
			eerror "/var/lib/jboss directory is not traverseable  by the "
			eerror "portage user."
			die "See above message."
		fi
	else
		find ${S}/src -name "Tree*" -exec rm {} \;
	fi

	# JUnit support
	if use junit ; then
		java-pkg_jar-from junit
		java-pkg_jar-from hsqldb
	fi

	# Proxool support
	if use proxool ; then
		java-pkg_jar-from proxool
	else
		find ${S}/src -name "Proxool*" -exec rm {} \;
	fi

	# OSCache support
	if use oscache ; then
		java-pkg_jar-from oscache
	else
		find ${S}/src -name "OSCache*" -exec rm {} \;
	fi

	# SwarmCache support
	if use swarmcache ; then
		java-pkg_jar-from swarmcache-1.0
	else
		find ${S}/src -name "SwarmCache*" -exec rm {} \;
	fi

	cd ..

	sed -r -i \
		-e '/<splash/d' \
		-e 's/..\/\$\{name\}/dist/g' \
			build.xml
	sed -r -i \
		-e "s/JCSCache/EhCache/g" \
			test/org/hibernate/test/CacheTest.java
}

src_compile() {
	use jikes && ! use jboss && export ANT_OPTS="-Dbuild.compiler=jikes"
	targets="jar"
	if use junit ; then
		targets="${targets} junitreport"
	fi
	use doc && targets="${targets} javadoc"
	ant -q ${targets} || die "Build failed."
}

src_install() {
	java-pkg_dojar dist/hibernate2.jar
	java-pkg_dojar lib/connector.jar
	dodoc *.txt
	use doc && java-pkg_dohtml -r dist/doc/*
	insinto /usr/share/doc/${P}/sample
	doins etc/*.xml etc/*.properties etc/*.ccf src/META-INF/ra.xml
}