blob: 4c36958971fe09e42a6faa48662f017a1d47c06f (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpiexec/mpiexec-0.75.ebuild,v 1.3 2004/05/10 23:18:42 tantive 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/glibc
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
}
|