diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 10:06:06 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 10:06:06 +0000 |
commit | a4250670950ddcacea911ad2e8eb1be4b2a6376c (patch) | |
tree | 808b568c0f4102596ddeffba939e288f819b3874 /dev-java | |
parent | wrong check-in (diff) | |
download | historical-a4250670950ddcacea911ad2e8eb1be4b2a6376c.tar.gz historical-a4250670950ddcacea911ad2e8eb1be4b2a6376c.tar.bz2 historical-a4250670950ddcacea911ad2e8eb1be4b2a6376c.zip |
cleanup
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/jndi/jndi-1.2.1-r2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-java/jndi/jndi-1.2.1-r2.ebuild b/dev-java/jndi/jndi-1.2.1-r2.ebuild new file mode 100644 index 000000000000..83d1ec323b5d --- /dev/null +++ b/dev-java/jndi/jndi-1.2.1-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Tools Team <tools@gentoo.org> +# Author: Karl Trygve Kalleberg <karltk@gentoo.org> +# /space/gentoo/cvsroot/gentoo-x86/dev-java/jndi/jndi-1.2.1-r2.ebuild,v 1.3 2002/01/23 20:06:16 karltk Exp + +At=jndi1_2_1.zip +S=${WORKDIR}/${P} +DESCRIPTION="Java Naming and Directory Interface" +HOMEPAGE="http://java.sun.com/products/jndi/" +SRC_URI="" + +DEPEND=">=virtual/jdk-1.2" + +src_unpack() { + echo ${At} + if [ ! -f ${DISTDIR}/${At} ] ; then + die "You must download ${At} from ${HOMEPAGE} yourself" + fi + mkdir ${S} + cd ${S} + jar -xf ${DISTDIR}/${At} +} + +src_compile() { + cd ${S} +} + +src_install() { + dojar lib/jndi.jar + dodoc COPYRIGHT README.txt + dohtml -r doc/* +} |