summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2002-11-13 21:19:32 +0000
committerMichael Imhof <tantive@gentoo.org>2002-11-13 21:19:32 +0000
commit07f62b2401220c8bc408e7ea05aa9b6a78c48425 (patch)
treecb3582881810baa7ff77095d22db10353e00c626 /sys-cluster
parentfixed #10281 (libxml2-2.4.26 is broken for kde) (diff)
downloadgentoo-2-07f62b2401220c8bc408e7ea05aa9b6a78c48425.tar.gz
gentoo-2-07f62b2401220c8bc408e7ea05aa9b6a78c48425.tar.bz2
gentoo-2-07f62b2401220c8bc408e7ea05aa9b6a78c48425.zip
Inital release
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/pvm/ChangeLog9
-rw-r--r--sys-cluster/pvm/files/digest-pvm-3.4.41
-rw-r--r--sys-cluster/pvm/pvm-3.4.4.ebuild53
3 files changed, 63 insertions, 0 deletions
diff --git a/sys-cluster/pvm/ChangeLog b/sys-cluster/pvm/ChangeLog
new file mode 100644
index 000000000000..2807f9cf6d1e
--- /dev/null
+++ b/sys-cluster/pvm/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-admin/openmosixview
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pvm/ChangeLog,v 1.1 2002/11/13 21:19:32 tantive Exp $
+
+
+*pvm-3.4.4 (13 Nov 2002)
+
+ 13 Nov 2002; Michael Imhof <tantive@gentoo.org>:
+ Initial release.
diff --git a/sys-cluster/pvm/files/digest-pvm-3.4.4 b/sys-cluster/pvm/files/digest-pvm-3.4.4
new file mode 100644
index 000000000000..d82d614afdd9
--- /dev/null
+++ b/sys-cluster/pvm/files/digest-pvm-3.4.4
@@ -0,0 +1 @@
+MD5 806abe9a866eab5981383c17ff9ed175 pvm3.4.4.tgz 967852
diff --git a/sys-cluster/pvm/pvm-3.4.4.ebuild b/sys-cluster/pvm/pvm-3.4.4.ebuild
new file mode 100644
index 000000000000..3795471bf1a9
--- /dev/null
+++ b/sys-cluster/pvm/pvm-3.4.4.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pvm/pvm-3.4.4.ebuild,v 1.1 2002/11/13 21:19:32 tantive Exp $
+
+S=${WORKDIR}/pvm-${PV}
+DESCRIPTION="PVM: Parallel Virtual Machine"
+SRC_URI="ftp.netlib.org/pvm3/pvm${PV}.tgz"
+HOMEPAGE="http://www.epm.ornl.gov/pvm/pvm_home.html"
+IUSE=""
+
+DEPEND="virtual/glibc"
+RDEPEND=""
+
+SLOT="0"
+LICENSE="as-is"
+KEYWORDS="~x86"
+
+src_unpack() {
+ unpack ${A}
+}
+
+
+
+src_compile() {
+ cd ${WORKDIR}
+ cd pvm3
+
+ export PVM_ROOT=${WORKDIR}"/pvm3"
+ export
+ make || die
+}
+
+src_install() {
+ cd ${WORKDIR}
+
+ dodir /opt/pvm3
+ cp -r * ${D}/opt
+
+ #installs man and doc into system
+ #
+ #cd pvm3
+ #dodir /usr/share/man/man1
+ #dodir /usr/share/man/man3
+ #for i in man/man1 man/man3 ; do
+ # cd ${i}
+ # mv * ${D}/usr/share/${i}
+ # cd ${WORKDIR}
+ # cd pvm3
+ # done
+ #cd ${D}/usr/share/doc
+ #dodoc arches bugreport example.pvmrc release-notes
+}
+