summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2003-02-03 16:54:41 +0000
committerMichael Imhof <tantive@gentoo.org>2003-02-03 16:54:41 +0000
commit08ade4478a35c0885321401cf625830c3aa3c755 (patch)
tree2bd34553b6a68d5d021ef7788412f3394025f06f /app-sci/zetagrid
parentmarked stable for x86 (diff)
downloadgentoo-2-08ade4478a35c0885321401cf625830c3aa3c755.tar.gz
gentoo-2-08ade4478a35c0885321401cf625830c3aa3c755.tar.bz2
gentoo-2-08ade4478a35c0885321401cf625830c3aa3c755.zip
Version bumped, information about faq added, should run on all archs now.
Diffstat (limited to 'app-sci/zetagrid')
-rw-r--r--app-sci/zetagrid/ChangeLog9
-rw-r--r--app-sci/zetagrid/files/digest-zetagrid-1.0-r22
-rw-r--r--app-sci/zetagrid/zetagrid-1.0-r2.ebuild47
3 files changed, 57 insertions, 1 deletions
diff --git a/app-sci/zetagrid/ChangeLog b/app-sci/zetagrid/ChangeLog
index f4e70fb94e78..6de8ca9b01ac 100644
--- a/app-sci/zetagrid/ChangeLog
+++ b/app-sci/zetagrid/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-sci/xephem
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-sci/zetagrid/ChangeLog,v 1.2 2003/01/12 22:16:21 tantive Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/zetagrid/ChangeLog,v 1.3 2003/02/03 16:54:41 tantive Exp $
+
+*zetagrid-1.0-r2 (03 Feb 2003)
+
+ 03 Feb 2003; Michael Imhof <tantive@gentoo.org> :
+ Version bumped as zetagrid offers a new version of the client.
+ The new client is completely written in java and should run
+ therefore on all archs.
*zetagrid-1.0-r1 (12 Jan 2003)
diff --git a/app-sci/zetagrid/files/digest-zetagrid-1.0-r2 b/app-sci/zetagrid/files/digest-zetagrid-1.0-r2
new file mode 100644
index 000000000000..539b55863550
--- /dev/null
+++ b/app-sci/zetagrid/files/digest-zetagrid-1.0-r2
@@ -0,0 +1,2 @@
+MD5 c1ceb75711dd9dd01647211bce742647 zeta_cmd.zip 46148
+MD5 fce1921170a936c7b234ec071953eea5 zeta_progress.zip 5874
diff --git a/app-sci/zetagrid/zetagrid-1.0-r2.ebuild b/app-sci/zetagrid/zetagrid-1.0-r2.ebuild
new file mode 100644
index 000000000000..9c83dca51d8c
--- /dev/null
+++ b/app-sci/zetagrid/zetagrid-1.0-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/zetagrid/zetagrid-1.0-r2.ebuild,v 1.1 2003/02/03 16:54:41 tantive Exp $
+
+S=${WORKDIR}/zetagrid-${PV}
+DESCRIPTION="An open source and platform independent grid system"
+SRC_URI="http://www.zetagrid.net/zeta/zeta_cmd.zip http://www.zetagrid.net/zeta/add-ons/zeta_progress.zip"
+HOMEPAGE="http://www.zetagrid.net http://cvs.gentoo.org/~tantive"
+IUSE=""
+
+DEPEND="virtual/glibc"
+RDEPEND="virtual/jre"
+SLOT="0"
+LICENSE="unknown"
+KEYWORDS="x86 ~ppc ~sparc ~alpha"
+
+src_unpack() {
+ unpack zeta_cmd.zip zeta_progress.zip
+ if test -e /opt/zetagrid/zeta.cfg; then
+ cp /opt/zetagrid/zeta.cfg ${WORKDIR}/zeta.cfg
+ fi
+}
+
+src_install() {
+ dodir /opt/zetagrid
+ cp ${FILESDIR}/zeta.sh ${D}/opt/zetagrid
+ cp ${FILESDIR}/zeta_progress.sh ${D}/opt/zetagrid
+ cp ${WORKDIR}/* ${D}/opt/zetagrid
+ exeinto /etc/init.d
+ newexe ${FILESDIR}/zetagrid.init zetagrid
+}
+
+pkg_postinst() {
+ einfo "Zetagrid is now installed in /opt/zetagrid"
+ einfo "Please change zeta.cfg for configuration issues!"
+ einfo "More information about setup can be found at"
+ einfo "http://cvs.gentoo.org/~tantive"
+ einfo
+ einfo "Zetagrid can be started using zeta.sh"
+ einfo "Progress information is displayed by zeta_progress.sh or"
+ einfo "by "java -cp zeta_progress.jar zeta.JShowProgress"."
+ einfo
+ ewarn "If you're getting an error at first execution"
+ ewarn "please run it a second time, this issue is known"
+ ewarn "and only happens at the very first start."
+}
+