blob: 3f624e56e57754bf1160703069fb6d9d146461cb (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lam-mpi/lam-mpi-7.1.2.ebuild,v 1.16 2007/07/02 15:32:13 peper Exp $
inherit autotools eutils fortran flag-o-matic multilib portability
# LAM is a PITA with PBS. If it's detected, there is NO way to turn it off!
# Likewise for the other SSI boot modules (globus/slurm/tm are affected)
IUSE="crypt pbs fortran xmpi"
MY_P=${P/-mpi}
S=${WORKDIR}/${MY_P}
DESCRIPTION="the LAM MPI parallel computing environment"
SRC_URI="http://www.lam-mpi.org/download/files/${MY_P}.tar.bz2"
HOMEPAGE="http://www.lam-mpi.org"
DEPEND="virtual/libc
pbs? ( virtual/pbs )
!sys-cluster/mpich
!sys-cluster/openmpi
!sys-cluster/mpich2"
# we need ssh if we want to use it instead of rsh
RDEPEND="${DEPEND}
crypt? ( net-misc/openssh )
!crypt? ( net-misc/netkit-rsh )"
SLOT="6"
KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86"
LICENSE="as-is"
src_unpack() {
unpack ${A}
cd ${S}/romio/util/
sed -i "s|docdir=\"\$datadir/lam/doc\"|docdir=\"${D}/usr/share/doc/${PF}\"|" romioinstall.in
for i in ${S}/share/memory/{ptmalloc,ptmalloc2,darwin7}/Makefile.in; do
sed -i -e 's@^\(docdir = \)\$(datadir)/lam/doc@\1'/usr/share/doc/${PF}'@' ${i}
done
cd "${S}"
epatch "${FILESDIR}"/${PV}-lam_prog_f77.m4.patch
epatch "${FILESDIR}"/${PV}-liblam-use-extra-libs.patch
eautoreconf
}
pkg_setup() {
: # make sure fortran_pkg_setup does NOT run
}
src_compile() {
local myconf
if use crypt; then
myconf="${myconf} --with-rsh=ssh"
else
myconf="${myconf} --with-rsh=rsh"
fi
use pbs && append-ldflags -L/usr/$(get_libdir)/pbs/lib
if use fortran; then
fortran_pkg_setup
# this is NOT in pkg_setup as it is NOT needed for RDEPEND right away it
# can be installed after merging from binary, and still have things fine
myconf="${myconf} --with-fc=${FORTRANC}"
else
myconf="${myconf} --without-fc"
fi
econf \
$(use_with xmpi trillium) \
--sysconfdir=/etc/lam-mpi \
--enable-shared \
--with-threads=posix \
${myconf} || die
}
src_install () {
make DESTDIR="${D}" install || die
# There are a bunch more tex docs we could make and install too,
# but they might be replicated in the pdf.
# They are replicated in the pdfs! Thus remove this comment?
dodoc README HISTORY LICENSE VERSION
cd ${S}/doc
dodoc {user,install}.pdf
# install examples
cd ${S}/examples
mkdir -p ${D}/usr/share/${P}/examples
find -name README -or -iregex '.*\.[chf][c]?$' >${T}/testlist
while read p; do
treecopy $p ${D}/usr/share/${P}/examples ;
done < ${T}/testlist
}
|