blob: 82e130b8d566acea28bf389b46dfd58ddf3a7079 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/servletapi/servletapi-2.4.ebuild,v 1.11 2004/06/27 17:29:08 zx Exp $
inherit java-pkg
DESCRIPTION="Servlet API 5 from jakarta.apache.org"
HOMEPAGE="http://jakarta.apache.org/"
SRC_URI="http://apache.roweboat.net/jakarta/tomcat-5/v5.0.19/src/jakarta-tomcat-5.0.19-src.tar.gz"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-1.5
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jdk-1.4"
LICENSE="Apache-1.1"
SLOT="2.4"
KEYWORDS="x86 ~sparc ppc"
IUSE="jikes doc"
S=${WORKDIR}/jakarta-tomcat-5.0.19-src/jakarta-servletapi-5
src_compile() {
antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc examples"
ant ${antflags} -f jsr154/build.xml || die "compilation problem"
ant ${antflags} -f jsr152/build.xml || die "compilation problem"
}
src_install () {
mv jsr{154,152}/dist/lib/*.jar ${S}
if use doc ; then
mkdir docs
cd ${S}/jsr154/dist
mv docs ${S}/docs/servlet
mv examples ${S}/docs/servlet/examples
cd ${S}/jsr152/dist
mv docs ${S}/docs/jsp
mv examples ${S}/docs/jsp/examples
fi
cd ${S}
java-pkg_dojar *.jar || die "Unable to install"
use doc && dohtml -r docs/*
}
|