summaryrefslogtreecommitdiff
blob: 70d2d1179970111712350e1024a0d2168906718b (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/servletapi/servletapi-2.2-r3.ebuild,v 1.3 2006/10/05 17:14:27 gustavoz Exp $

inherit java-pkg-2 java-ant-2

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"
RDEPEND=">=virtual/jre-1.3"
LICENSE="Apache-1.1"
SLOT="2.2"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"
S="${WORKDIR}/jakarta-servletapi-src"

src_compile() {
	eant all
}

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
}