summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2008-01-31 06:56:46 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2008-01-31 06:56:46 +0000
commit6195db5acbbe307d805a71fe3e941f17f73e2e74 (patch)
tree5eb26dbbde5c6429ab100d45dea93ed58eaca7f6 /sys-cluster/mpiexec
parentStable on amd64; bug 206502 (diff)
downloadgentoo-2-6195db5acbbe307d805a71fe3e941f17f73e2e74.tar.gz
gentoo-2-6195db5acbbe307d805a71fe3e941f17f73e2e74.tar.bz2
gentoo-2-6195db5acbbe307d805a71fe3e941f17f73e2e74.zip
Clean up.
(Portage version: 2.1.4)
Diffstat (limited to 'sys-cluster/mpiexec')
-rw-r--r--sys-cluster/mpiexec/ChangeLog8
-rw-r--r--sys-cluster/mpiexec/files/digest-mpiexec-0.76-r13
-rw-r--r--sys-cluster/mpiexec/files/digest-mpiexec-0.76-r23
-rw-r--r--sys-cluster/mpiexec/mpiexec-0.76-r1.ebuild60
-rw-r--r--sys-cluster/mpiexec/mpiexec-0.76-r2.ebuild49
5 files changed, 6 insertions, 117 deletions
diff --git a/sys-cluster/mpiexec/ChangeLog b/sys-cluster/mpiexec/ChangeLog
index a51bcdfd97cc..48224853f7b9 100644
--- a/sys-cluster/mpiexec/ChangeLog
+++ b/sys-cluster/mpiexec/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-cluster/mpiexec
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/ChangeLog,v 1.19 2007/05/12 00:07:32 dberkholz Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/ChangeLog,v 1.20 2008/01/31 06:56:46 dberkholz Exp $
+
+ 31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>;
+ -mpiexec-0.76-r1.ebuild, -mpiexec-0.76-r2.ebuild:
+ Clean up.
12 May 2007; Donnie Berkholz <dberkholz@gentoo.org>;
mpiexec-0.76-r1.ebuild:
diff --git a/sys-cluster/mpiexec/files/digest-mpiexec-0.76-r1 b/sys-cluster/mpiexec/files/digest-mpiexec-0.76-r1
deleted file mode 100644
index c98882c4f15d..000000000000
--- a/sys-cluster/mpiexec/files/digest-mpiexec-0.76-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5bd0512b7e6a2f86ac0397f93e6e6966 mpiexec-0.76.tgz 145241
-RMD160 6c90f528464134311788372433a9c6fe647f5c57 mpiexec-0.76.tgz 145241
-SHA256 bb06be588a7baf007888879b1f470bedbf58fe68dedc119308f0c0610b694cc8 mpiexec-0.76.tgz 145241
diff --git a/sys-cluster/mpiexec/files/digest-mpiexec-0.76-r2 b/sys-cluster/mpiexec/files/digest-mpiexec-0.76-r2
deleted file mode 100644
index c98882c4f15d..000000000000
--- a/sys-cluster/mpiexec/files/digest-mpiexec-0.76-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5bd0512b7e6a2f86ac0397f93e6e6966 mpiexec-0.76.tgz 145241
-RMD160 6c90f528464134311788372433a9c6fe647f5c57 mpiexec-0.76.tgz 145241
-SHA256 bb06be588a7baf007888879b1f470bedbf58fe68dedc119308f0c0610b694cc8 mpiexec-0.76.tgz 145241
diff --git a/sys-cluster/mpiexec/mpiexec-0.76-r1.ebuild b/sys-cluster/mpiexec/mpiexec-0.76-r1.ebuild
deleted file mode 100644
index a07dece77b56..000000000000
--- a/sys-cluster/mpiexec/mpiexec-0.76-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/mpiexec-0.76-r1.ebuild,v 1.3 2007/05/12 00:07:32 dberkholz 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
- virtual/pbs
- sys-cluster/mpich"
-RDEPEND="net-misc/openssh"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~ppc"
-
-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
-}
diff --git a/sys-cluster/mpiexec/mpiexec-0.76-r2.ebuild b/sys-cluster/mpiexec/mpiexec-0.76-r2.ebuild
deleted file mode 100644
index 752bb4d459cc..000000000000
--- a/sys-cluster/mpiexec/mpiexec-0.76-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/mpiexec-0.76-r2.ebuild,v 1.2 2006/09/29 16:41:33 dberkholz Exp $
-
-inherit eutils flag-o-matic
-
-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="sharedmem"
-
-DEPEND="virtual/libc
- virtual/pbs
- virtual/mpi"
-RDEPEND="net-misc/openssh"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~ppc"
-
-src_compile() {
- # sharedmem should NOT be used on SMP boxes
- myconf="`use_enable sharedmem p4-shmem`"
-
- # mpich-p4 is the best default
- append-ldflags -L/usr/$(get_libdir)/pbs/lib
- ./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
- newbin hello hello_mpiexec
-
- dodoc LICENSE README README.lam ChangeLog
-}