diff options
author | Don Seiler <rizzo@gentoo.org> | 2003-08-21 17:53:19 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2003-08-21 17:53:19 +0000 |
commit | 2eae4f0d61fa023c539171562a5ce346e697126a (patch) | |
tree | bade6b899d0fbf9364005dbca8734669812cf3d3 /app-editors/xxe | |
parent | Version bump. (diff) | |
download | historical-2eae4f0d61fa023c539171562a5ce346e697126a.tar.gz historical-2eae4f0d61fa023c539171562a5ce346e697126a.tar.bz2 historical-2eae4f0d61fa023c539171562a5ce346e697126a.zip |
Version bump.
Diffstat (limited to 'app-editors/xxe')
-rw-r--r-- | app-editors/xxe/Manifest | 4 | ||||
-rw-r--r-- | app-editors/xxe/files/digest-xxe-2.4 | 1 | ||||
-rw-r--r-- | app-editors/xxe/xxe-2.4.ebuild | 32 |
3 files changed, 35 insertions, 2 deletions
diff --git a/app-editors/xxe/Manifest b/app-editors/xxe/Manifest index 49bbb3b209dc..6c006948a3a7 100644 --- a/app-editors/xxe/Manifest +++ b/app-editors/xxe/Manifest @@ -1,5 +1,5 @@ MD5 7d0032e2810f3a1ab8e9267dd06ec1e1 xxe-2.3_p1.ebuild 874 -MD5 99f8f70910ff2a4c8d6bc7d98fa36c09 xxe-2.4.ebuild 870 -MD5 80e5cdceb8a675a5ed280e9d8f9da2cf ChangeLog 534 +MD5 890eedffd2ed8a52d503f6e5bc41c4c8 xxe-2.4.ebuild 867 +MD5 77450efc360027fab767776749899373 ChangeLog 534 MD5 c4f1bbc41d54ea610234e1a6ad69df11 files/digest-xxe-2.3_p1 65 MD5 81355a8161daeedc2d0c825117aff404 files/digest-xxe-2.4 63 diff --git a/app-editors/xxe/files/digest-xxe-2.4 b/app-editors/xxe/files/digest-xxe-2.4 new file mode 100644 index 000000000000..e87e8a41054f --- /dev/null +++ b/app-editors/xxe/files/digest-xxe-2.4 @@ -0,0 +1 @@ +MD5 4f838003b459373398fa366a45f77863 xxe-std-24.tar.gz 7860000 diff --git a/app-editors/xxe/xxe-2.4.ebuild b/app-editors/xxe/xxe-2.4.ebuild new file mode 100644 index 000000000000..08c5826f6b0e --- /dev/null +++ b/app-editors/xxe/xxe-2.4.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.4.ebuild,v 1.1 2003/08/21 17:53:16 rizzo Exp $ + +S="${WORKDIR}/xxe-std-24" +DESCRIPTION="Java-based XML Editor" +SRC_URI="http://www.xmlmind.net/xmleditor/_download/xxe-std-24.tar.gz" +HOMEPAGE="http://www.xmlmind.com/xmleditor/index.html" +IUSE="" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" + +RESTRICT="nostrip nomirror" +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 +} |