summaryrefslogtreecommitdiff
blob: f2f241d70041e37a29b793f59840d275e32f22a9 (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

#can be optionalized juel, jaxen, javacc, jdom,dom4j, rhino, logkit
#servlet-api-3.0 can't be used alone as freemarker doesn't overrides JspFactory.getJspApplicationContext()
#which appeared at jsp 2.1 specifiction.

EAPI="4"
JAVA_PKG_IUSE="doc source"
WANT_ANT_TASKS="ant-nodeps"

inherit java-pkg-2 java-ant-2 eutils

DESCRIPTION=" FreeMarker is a template engine; a generic tool to generate text output based on templates."
HOMEPAGE="http://freemarker.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="freemarker"
SLOT="2.3"
KEYWORDS="~amd64 ~x86"
IUSE="python"

COMMON_DEP="
	dev-java/commons-logging:0
	java-virtuals/servlet-api:2.4
	java-virtuals/servlet-api:3.0
	dev-java/slf4j-api:0
	dev-java/jaxen:1.1
	python? ( dev-java/jython:2.5 )"

DEPEND=">=virtual/jdk-1.4
	${COMMON_DEP}"
RDEPEND=">=virtual/jre-1.4
	${COMMON_DEP}"

JAVA_PKG_FORCE_COMPILER="javac"
JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_EXTRA_ARGS="-Dall.libs.present=true -Djaxen.available=true"
EANT_GENTOO_CLASSPATH="commons-logging,jaxen-1.1"
EANT_BUILD_TARGET="jar"

java_prepare() {
	find -name '*.jar' -exec rm -v {} + || die
	find -name '*.class' -exec rm -v {} + || die

	epatch "${FILESDIR}/${P}-gentoo.patch"

	#uses non-free java-rebel libarary
	rm -f "${S}/src/freemarker/ext/beans/JavaRebelIntegration.java"

	mkdir -p lib/jsp-{2.0,2.1}

	cd lib/
	java-pkg_jar-from --virtual --into jsp-2.0 servlet-api-2.4
	java-pkg_jar-from --virtual --into jsp-2.1 servlet-api-3.0
	java-pkg_jar-from slf4j-api
}

src_compile() {
	use python && EANT_GENTOO_CLASSPATH+=",jython-2.5" && EANT_EXTRA_ARGS+=" -Djython25.available=true"
	java-pkg-2_src_compile
}

src_install() {
	java-pkg_dojar lib/${PN}.jar
	dodoc README.txt || die

	use doc && java-pkg_dojavadoc build/api
	use source && java-pkg_dosrc src/*
}