blob: 309b69dca284c4981d4bae17270d7a610e592f19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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.2 2003/10/27 13:26:45 aliz 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
}
|