blob: b1d070a1d535326881a7c64a72df58b5872b7137 (
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/servletapi/servletapi-2.2-r1.ebuild,v 1.2 2004/06/03 03:10:04 agriffis Exp $
inherit java-pkg
S=${WORKDIR}/jakarta-servletapi-src
DESCRIPTION="Servlet API ${PV} from jakarta.apache.org"
HOMEPAGE="http://jakarta.apache.org/"
SRC_URI="mirror://gentoo/${PN}-${PV}-20021101.tar.gz"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-1.4"
RDEPEND=">=virtual/jre-1.3"
LICENSE="Apache-1.1"
SLOT="2.2"
KEYWORDS="x86 ~sparc ~ppc amd64"
IUSE="jikes doc"
src_compile() {
local myc
if use jikes ; then
myc="${myc} -Dbuild.compiler=jikes"
fi
cd ${S}
ANT_OPTS=${myc} ant all
}
src_install () {
cd ..
cd dist
mv servletapi/lib/servlet.jar servletapi/lib/${PN}-${PV}.jar
java-pkg_dojar servletapi/lib/${PN}-${PV}.jar || die "Unable to install"
if use doc ; then
dohtml -r servletapi/docs/*
fi
dodoc dist/README.txt
}
|