diff options
Diffstat (limited to 'dev-java/servletapi/servletapi-2.3.ebuild')
-rw-r--r-- | dev-java/servletapi/servletapi-2.3.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-java/servletapi/servletapi-2.3.ebuild b/dev-java/servletapi/servletapi-2.3.ebuild new file mode 100644 index 000000000000..3909db09740b --- /dev/null +++ b/dev-java/servletapi/servletapi-2.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/servletapi/servletapi-2.3.ebuild,v 1.1 2002/11/02 22:21:53 karltk Exp $ + +S=${WORKDIR}/jakarta-servletapi-4 +DESCRIPTION="Servlet API ${PV} from jakarta.apache.org" +HOMEPAGE="http://jakarta.apache.org/" +SRC_URI="mirror://gentoo/servletapi-2.3-20021101.tar.gz" +DEPEND=">=virtual/jdk-1.3 + >=ant-1.4" +RDEPEND=">=virtual/jre-1.3" +LICENSE="Apache-1.1" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" +IUSE="jikes" + +src_compile() { + local myc + + if [ -n "`use jikes`" ] ; then + myc="${myc} -Dbuild.compiler=jikes" + fi + cd ${S} + ANT_OPTS=${myc} ant all +} + +src_install () { + mv dist/lib/servlet.jar dist/lib/servlet-${PV}.jar + dojar dist/lib/servlet-${PV}.jar || die "Unable to install" + dohtml -r dist/docs/* + dodoc dist/README.txt +} + +pkg_postinst() { + einfo "Check the servlet API Docs in /usr/share/doc/" +} |