blob: f7a3659678138495d29e06e96f9f0f2cfe4fdf97 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-jexl/commons-jexl-1.0-r1.ebuild,v 1.1 2006/07/22 22:56:35 nelchael Exp $
inherit java-pkg-2 java-ant-2 eutils
DESCRIPTION="Expression language engine, can be embedded in applications and frameworks."
HOMEPAGE="http://jakarta.apache.org/commons/jexl"
SRC_URI="mirror://apache/java-repository/${PN}/distributions/${P}-src.tar.gz"
RDEPEND=">=virtual/jre-1.4
dev-java/commons-logging"
DEPEND="${RDEPEND}
junit? ( dev-java/ant >=dev-java/junit-3.8 >=virtual/jdk-1.4 )
!junit? ( dev-java/ant-core >=virtual/jdk-1.3 )"
LICENSE="Apache-2.0"
SLOT="1.0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc junit source"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
mkdir -p target/lib && cd target/lib
use junit && java-pkg_jar-from junit junit.jar
java-pkg_jar-from commons-logging
}
src_compile() {
local antflags="jar"
use doc && antflags="${antflags} javadoc"
use junit && antflags="${antflags} test"
eant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_newjar target/${P}*.jar ${PN}.jar
if use doc; then
dodoc RELEASE-NOTES.txt
java-pkg_dohtml PROPOSAL.html STATUS.html usersguide.html
java-pkg_dohtml -r dist/docs/
fi
use source && java-pkg_dosrc ${S}/src/java/*
}
|