diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-16 18:55:59 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-16 18:55:59 +0000 |
commit | 699a54929886e0c3641f81f28942f0bea49325e3 (patch) | |
tree | ca4eb61698bc893e4061fba612af204c1c39651b /dev-java/xt/xt-1.ebuild | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-699a54929886e0c3641f81f28942f0bea49325e3.tar.gz gentoo-2-699a54929886e0c3641f81f28942f0bea49325e3.tar.bz2 gentoo-2-699a54929886e0c3641f81f28942f0bea49325e3.zip |
*** empty log message ***
Diffstat (limited to 'dev-java/xt/xt-1.ebuild')
-rw-r--r-- | dev-java/xt/xt-1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-java/xt/xt-1.ebuild b/dev-java/xt/xt-1.ebuild new file mode 100644 index 000000000000..a057ee0d1ec9 --- /dev/null +++ b/dev-java/xt/xt-1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-java/xt/xt-1.ebuild,v 1.1 2000/08/16 18:55:59 achim Exp $ + +P=xt +A=${P}.zip +S=${WORKDIR}/${P} +DESCRIPTION="Java Implementation of XSL-Transformations" +SRC_URI="ftp://ftp.jclark.com/pub/xml/"${A} + +src_unpack() { + mkdir ${S} + cd ${S} + unzip ${DISTDIR}/${A} +} + +src_compile() { + cd ${S} +} + +src_install() { + cd ${S} + insinto /opt/java/lib + doins xt.jar sax.jar + docinto html + dodoc xt.htm + docinto demo + dodoc demo/* +} + + + |