You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/servletapi/servletapi-2.3-r3.ebuild

33 lines
779 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit java-pkg-2 java-ant-2
DESCRIPTION="Servlet API 2.3 from jakarta.apache.org"
HOMEPAGE="http://jakarta.apache.org/"
SRC_URI="mirror://gentoo/${P}-20021101.tar.gz"
LICENSE="Apache-1.1"
SLOT="2.3"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x64-solaris"
IUSE="doc source"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-core-1.4
source? ( app-arch/zip )"
RDEPEND=">=virtual/jre-1.3"
S="${WORKDIR}/jakarta-servletapi-4"
src_compile() {
eant all
}
src_install() {
java-pkg_dojar dist/lib/servlet.jar
use doc && java-pkg_dohtml -r dist/docs/*
use source && java-pkg_dosrc src/share/javax
dodoc dist/README.txt
}