summaryrefslogtreecommitdiff
blob: 5f044cb0fa5c8759a7af530db291a3e2efd7d6b3 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.0_beta4.ebuild,v 1.4 2004/10/16 17:15:35 axxo Exp $

inherit java-pkg

DESCRIPTION="Groovy is a high-level dynamic language for the JVM"
HOMEPAGE="http://groovy.codehaus.org/"
SRC_URI="http://dist.codehaus.org/groovy/distributions/${PN}-1.0-beta-4-src.tar.gz"
LICENSE="codehaus-groovy"
SLOT="1"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="=dev-java/xerces-2.6*
	=dev-java/commons-cli-1.0*
	=dev-java/ant-1.5*
	=dev-java/junit-3.8*
	=dev-java/asm-1.4*
	=dev-java/classworlds-1.0*
	=dev-java/mockobjects-0.0*
	=dev-java/bsf-2.3*
	=www-servers/tomcat-5*
	=dev-java/xmojo-bin-5.0*"
# karltk:
# xmojo-bin is a JMX provider, we should add a list of alternatives


S=${WORKDIR}/${PN}-1.0-beta-4

src_unpack() {
	unpack ${A}
	cp ${FILESDIR}/build-${PV}.xml ${S}/build.xml || die
	mkdir -p ${S}/target/lib
	(
		cd ${S}/target/lib
		java-pkg_jar-from xerces || die
		java-pkg_jar-from asm || die
		java-pkg_jar-from commons-cli || die
		java-pkg_jar-from junit || die
		java-pkg_jar-from classworlds || die
		java-pkg_jar-from bsf-2.3 || die
		java-pkg_jar-from mockobjects || die
		java-pkg_jar-from xmojo-bin-5.0 || die
		ln -s /opt/tomcat/common/lib/servlet-api.jar .
	)

	# The original build.xml will only build on a MacOSX machine when you're
	# logged in as jstrachan. I don't reckon many Gentoo users are...
	cp ${FILESDIR}/build.xml-${PV} ${S}/build.xml || die "Failed to update build.xml"

	# This won't compile without an incestuous relationship with radeox.
	rm -rf ${S}/src/main/org/codehaus/groovy/wiki
}

src_compile() {
	ant jar || die
	if use doc ; then
		ant javadoc || die
	fi
}

src_install() {
	dodoc LICENSE.txt
	java-pkg_dojar target/groovy-1.0-beta-2.jar
	if use doc ; then
		java-pkg_dohtml -r dist/docs/api
	fi
}