diff options
author | Don Seiler <rizzo@gentoo.org> | 2003-07-16 19:36:07 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2003-07-16 19:36:07 +0000 |
commit | 7ee8bf9c6e69d01589908668367a2c7f9f1e4fb9 (patch) | |
tree | 2f16bde875d4157804dbde0d6085450123720bad /app-editors/xxe | |
parent | Initial import (diff) | |
download | historical-7ee8bf9c6e69d01589908668367a2c7f9f1e4fb9.tar.gz historical-7ee8bf9c6e69d01589908668367a2c7f9f1e4fb9.tar.bz2 historical-7ee8bf9c6e69d01589908668367a2c7f9f1e4fb9.zip |
Initial import
Diffstat (limited to 'app-editors/xxe')
-rw-r--r-- | app-editors/xxe/Manifest | 4 | ||||
-rw-r--r-- | app-editors/xxe/files/digest-xxe-2.3_p1 | 1 | ||||
-rw-r--r-- | app-editors/xxe/xxe-2.3_p1.ebuild | 32 |
3 files changed, 35 insertions, 2 deletions
diff --git a/app-editors/xxe/Manifest b/app-editors/xxe/Manifest index 79b86a8c0a24..0b3798d70d46 100644 --- a/app-editors/xxe/Manifest +++ b/app-editors/xxe/Manifest @@ -1,3 +1,3 @@ -MD5 960828239ff093e05f8175a3e32ff956 xxe-2.3_p1.ebuild 770 -MD5 62be924c0ddb6f3e9c4a2cc4f5ca39e9 ChangeLog 250 +MD5 dfdcab796d02e258a6b20fe0b195edd2 xxe-2.3_p1.ebuild 865 +MD5 c921e7d17deb0b69fd3d5031fe45108b ChangeLog 339 MD5 c4f1bbc41d54ea610234e1a6ad69df11 files/digest-xxe-2.3_p1 65 diff --git a/app-editors/xxe/files/digest-xxe-2.3_p1 b/app-editors/xxe/files/digest-xxe-2.3_p1 new file mode 100644 index 000000000000..4bfd501fb11e --- /dev/null +++ b/app-editors/xxe/files/digest-xxe-2.3_p1 @@ -0,0 +1 @@ +MD5 6c7579fc414f2249506e6a78d34b32b0 xxe-std-23p1.tar.gz 7476340 diff --git a/app-editors/xxe/xxe-2.3_p1.ebuild b/app-editors/xxe/xxe-2.3_p1.ebuild new file mode 100644 index 000000000000..f5234c6a549a --- /dev/null +++ b/app-editors/xxe/xxe-2.3_p1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/xxe-2.3_p1.ebuild,v 1.1 2003/07/16 19:35:59 rizzo Exp $ + +S="${WORKDIR}/xxe-std-23p1" +DESCRIPTION="Java-based XML Editor" +SRC_URI="http://www.xmlmind.net/xmleditor/_download/xxe-std-23p1.tar.gz" +HOMEPAGE="http://www.xmlmind.com/xmleditor/index.html" +IUSE="" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" + +RESTRICT="nostrip" +RDEPEND=">=virtual/jdk-1.4.1" +DEPEND="" +INSTALLDIR=/opt/xxe + +src_compile() { + einfo "Nothing to compile, this is a binary package." +} + +src_install() { + dodir ${INSTALLDIR} + cp -a ${S}/* ${D}/${INSTALLDIR} + + #dynamic environment by T.Henderson@cs.ucl.ac.uk (Tristan Henderson) + dodir /etc/env.d + echo -e "PATH=${INSTALLDIR}\nROOTPATH=${INSTALLDIR}" > \ + ${D}/etc/env.d/10xxe23 +} |