blob: c7bf0b825d39adf45d45480983447dc031f1195c (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/servletapi/servletapi-2.2-r2.ebuild,v 1.3 2005/12/27 14:29:52 axxo Exp $
inherit java-pkg
DESCRIPTION="Servlet API 2.2 from jakarta.apache.org"
HOMEPAGE="http://jakarta.apache.org/"
SRC_URI="mirror://gentoo/${P}-20021101.tar.gz"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-core-1.4
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jre-1.3"
LICENSE="Apache-1.1"
SLOT="2.2"
KEYWORDS="x86 ~sparc ~ppc amd64"
IUSE="jikes doc"
S=${WORKDIR}/jakarta-servletapi-src
src_compile() {
local antflags="all"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "failed to compile"
}
src_install() {
cd ../dist
java-pkg_dojar servletapi/lib/servlet.jar || die "Unable to install"
use doc && java-pkg_dohtml -r servletapi/docs/*
dodoc dist/README.txt
}
|