blob: 9fb3bf7cd778a7d744426c6cb567c551b0e321f1 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-jxpath/commons-jxpath-1.1.ebuild,v 1.1 2004/05/14 01:45:25 zx Exp $
inherit java-pkg
DESCRIPTION=" JXPath applies XPath expressions to graphs of objects of all kinds."
HOMEPAGE="http://jakarta.apache.org/commons/jxpath/"
SRC_URI="mirror://apache/jakarta/commons/jxpath/source/${PN}-${PV}-src.tar.gz"
DEPEND=">=virtual/jdk-1.3
=dev-java/servletapi-2.3*
>=dev-java/jdom-1.0_beta9
>=dev-java/ant-1.4
junit? ( >=dev-java/junit-3.7 )"
RDEPEND=">=virtual/jdk-1.3"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc junit"
src_unpack() {
unpack ${A}
cd ${S}
echo "jdom.jar=`java-config -p jdom`" > build.properties
echo "servlet.jar=`java-config -p servletapi-2.3`" >> build.properties
}
src_compile() {
local antflags="jar"
use doc && antflags="${antflags} javadoc"
use junit && antflags="${antflags} test"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar dist/${PN}.jar
dohtml PROPOSAL.html STATUS.html usersguide.html
use doc && dohtml -r dist/docs/
}
|