forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commons-el-1.0-r3.ebuild
52 lines (38 loc) · 1.19 KB
/
commons-el-1.0-r3.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
JAVA_PKG_IUSE="source"
inherit eutils java-pkg-2 java-ant-2 java-osgi
DESCRIPTION="EL is the JSP 2.0 Expression Language Interpreter from Apache"
HOMEPAGE="http://commons.apache.org/el/"
SRC_URI="mirror://apache/jakarta/commons/el/source/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
IUSE=""
COMMON_DEP="
java-virtuals/servlet-api:2.5"
RDEPEND="${COMMON_DEP}
>=virtual/jre-1.4"
DEPEND="${COMMON_DEP}
>=virtual/jdk-1.4"
S=${WORKDIR}/${P}-src
JAVA_PKG_FILTER_COMPILER="jikes"
java_prepare() {
epatch "${FILESDIR}"/${P}-java-1.7-compiler.patch # BGO 486376
# Build.xml is broken, fix it
sed -i "s:../LICENSE:./LICENSE.txt:" build.xml || die "sed failed"
}
JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_GENTOO_CLASSPATH="servlet-api-2.5"
EANT_EXTRA_ARGS="
-Dservletapi.build.notrequired=true
-Djspapi.build.notrequired=true"
src_install() {
java-osgi_dojar-fromfile "dist/${PN}.jar" "${FILESDIR}/${P}-manifest" \
"Apache Commons EL"
dodoc LICENSE.txt RELEASE-NOTES.txt
dohtml STATUS.html PROPOSAL.html
use source && java-pkg_dosrc src/java/org
}