diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-07 17:43:41 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-07 17:43:41 +0000 |
commit | 2dbe5cd6fd4415ced8a3f5dd0ea407f66c3f9ae6 (patch) | |
tree | d135ffd751d2f25a5b57dba9012ede540c2f924c /dev-java/xt | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-2dbe5cd6fd4415ced8a3f5dd0ea407f66c3f9ae6.tar.gz gentoo-2-2dbe5cd6fd4415ced8a3f5dd0ea407f66c3f9ae6.tar.bz2 gentoo-2-2dbe5cd6fd4415ced8a3f5dd0ea407f66c3f9ae6.zip |
*** empty log message ***
Diffstat (limited to 'dev-java/xt')
-rw-r--r-- | dev-java/xt/files/digest | 1 | ||||
-rw-r--r-- | dev-java/xt/xt-r1.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-java/xt/files/digest b/dev-java/xt/files/digest new file mode 100644 index 000000000000..c4994a86a68e --- /dev/null +++ b/dev-java/xt/files/digest @@ -0,0 +1 @@ +MD5 2ac9973f7f9cb2a480af94066f89568a xt.zip diff --git a/dev-java/xt/xt-r1.ebuild b/dev-java/xt/xt-r1.ebuild new file mode 100644 index 000000000000..aa1791773087 --- /dev/null +++ b/dev-java/xt/xt-r1.ebuild @@ -0,0 +1,34 @@ +# 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-r1.ebuild,v 1.1 2000/08/07 17:43:41 achim Exp $ + +P=xt +A=${P}.zip +S=${WORKDIR}/${P} +CATEGORY="dev-java" +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/* +} + + + |