blob: 520a95d0db801f33003bc8b726ac22eb88f56436 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-el/commons-el-1.0.ebuild,v 1.6 2005/01/01 18:16:56 eradicator Exp $
inherit java-pkg
DESCRIPTION="EL is the JSP 2.0 Expression Language Interpreter from Apache."
HOMEPAGE="http://jakarta.apache.org/commons/el.html"
SRC_URI="mirror://apache/jakarta/commons/el/source/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="x86 ~sparc ~amd64"
IUSE="jikes"
DEPEND=">=virtual/jdk-1.4
>=dev-java/servletapi-2.4
>=dev-java/ant-1.5
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jdk-1.4"
S=${WORKDIR}/${P}-src
src_unpack() {
unpack ${A}
cd ${S}
mv build.properties build.properties.old
local SAPI="`java-config -p servletapi-2.4`"
echo "servlet-api.jar=${SAPI/*:/}" >> build.properties
echo "jsp-api.jar=${SAPI/:*/}" >> build.properties
echo "junit.jar = `java-config --classpath=junit`" >> build.properties
echo "servletapi.build.notrequired = true" >> build.properties
echo "jspapi.build.notrequired = true" >> build.properties
# Build.xml is broken, fix it
sed -i "s:../LICENSE:./LICENSE.txt:" build.xml
}
src_compile() {
local antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compile problem"
}
src_install () {
java-pkg_dojar dist/${PN}.jar || die "Unable to install"
dodoc LICENSE.txt RELEASE-NOTES.txt
dohtml STATUS.html PROPOSAL.html
}
|