summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2004-09-19 18:55:59 +0000
committerMichael Imhof <tantive@gentoo.org>2004-09-19 18:55:59 +0000
commita919f0bbd30465c8df3eb1d25929de36e40080e4 (patch)
tree1f08054fa666401c85eb18ca8bbfc6bb7e35a986 /sys-cluster
parentDo not install libs in /usr/bin. (diff)
downloadgentoo-2-a919f0bbd30465c8df3eb1d25929de36e40080e4.tar.gz
gentoo-2-a919f0bbd30465c8df3eb1d25929de36e40080e4.tar.bz2
gentoo-2-a919f0bbd30465c8df3eb1d25929de36e40080e4.zip
Cleaned out old ebuild.
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/mpiexec/ChangeLog5
-rw-r--r--sys-cluster/mpiexec/files/digest-mpiexec-0.74-r11
-rw-r--r--sys-cluster/mpiexec/mpiexec-0.74-r1.ebuild60
3 files changed, 4 insertions, 62 deletions
diff --git a/sys-cluster/mpiexec/ChangeLog b/sys-cluster/mpiexec/ChangeLog
index 89089cfad10a..047f204d052c 100644
--- a/sys-cluster/mpiexec/ChangeLog
+++ b/sys-cluster/mpiexec/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-cluster/mpiexec
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/ChangeLog,v 1.10 2004/08/30 13:27:11 tantive Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/ChangeLog,v 1.11 2004/09/19 18:55:59 tantive Exp $
+
+ 19 Sep 2004; Michael Imhof <tantive@gentoo.org> -mpiexec-0.74-r1.ebuild:
+ Cleaned out old ebuild.
*mpiexec-0.76-r1 (30 Aug 2004)
diff --git a/sys-cluster/mpiexec/files/digest-mpiexec-0.74-r1 b/sys-cluster/mpiexec/files/digest-mpiexec-0.74-r1
deleted file mode 100644
index 3a1e5766507d..000000000000
--- a/sys-cluster/mpiexec/files/digest-mpiexec-0.74-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 abf896c85951072029c97f9ca05299d8 mpiexec-0.74.tgz 110386
diff --git a/sys-cluster/mpiexec/mpiexec-0.74-r1.ebuild b/sys-cluster/mpiexec/mpiexec-0.74-r1.ebuild
deleted file mode 100644
index f194b69aa3cd..000000000000
--- a/sys-cluster/mpiexec/mpiexec-0.74-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/mpiexec-0.74-r1.ebuild,v 1.5 2004/07/01 21:48:05 eradicator Exp $
-
-#S=${WORKDIR}/mpiexec-${PV}
-DESCRIPTION="replacement for mpirun, integrates MPI with PBS."
-SRC_URI="http://www.osc.edu/~pw/mpiexec/${P}.tgz"
-HOMEPAGE="http://www.osc.edu/~pw/mpiexec/"
-IUSE=""
-
-DEPEND="virtual/libc
- sys-cluster/openpbs
- sys-cluster/mpich"
-RDEPEND="net-misc/openssh"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86"
-
-pkg_setup() {
- # Do we have a SMP enabled kernel?
- if [ ! -z "`uname -v | grep SMP`" ]
- then
- export SMP=1
- else
- export SMP=0
- fi
-}
-
-src_compile() {
- #for SMP machines, disable the use of mpich/p4 shared memory
- if [ "${SMP}" = 1 ]; then
- myconf="--disable-p4-shmem"
- fi
-
- # mpich-p4 is the best default
- ./configure --mandir=/usr/share/man/man1/ \
- --prefix=/usr \
- --with-pbs=/usr \
- --with-default-comm=mpich-p4 \
- ${myconf} || die "configure failed"
-
- make || die "compile failed"
-
- ## demo-hello: usefull for debugging
- make hello || die "compile hello failed"
-}
-
-src_install() {
- make prefix=${D}/usr \
- mandir=${D}/usr/share/man/man1/ \
- install || die "install failed"
-
- ## demo-hello:
- dodoc hello.c
- dobin hello
- mv ${D}/usr/bin/hello{,_mpiexec} || die "moving hello failed"
-
- dodoc LICENSE README README.lam ChangeLog
-}