blob: 624de8b2b87ff37001df778ddcffbb80221a025e (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.4-r2.ebuild,v 1.1 2012/01/20 13:15:19 alexxy Exp $
EAPI=4
inherit eutils fortran-2 multilib flag-o-matic toolchain-funcs
MY_P=${P/-mpi}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A high-performance message passing library (MPI)"
HOMEPAGE="http://www.open-mpi.org"
SRC_URI="http://www.open-mpi.org/software/ompi/v1.5/downloads/${MY_P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux"
IUSE="+cxx elibc_FreeBSD fortran heterogeneous infiniband ipv6 knem mpi-threads
+numa pbs open-mx psm romio sctp slurm threads vt"
REQUIRED_USE="^^ (
( !slurm !pbs )
( slurm !pbs )
( !slurm pbs )
)
psm? ( infiniband )"
RDEPEND="
fortran? ( virtual/fortran )
pbs? ( sys-cluster/torque )
infiniband? ( sys-infiniband/openib )
sctp? ( net-misc/lksctp-tools )
vt? (
!dev-libs/libotf
!app-text/lcdf-typetools
)
elibc_FreeBSD? ( dev-libs/libexecinfo )
knem? ( sys-cluster/knem )
numa? ( sys-process/numactl )
open-mx? ( sys-cluster/open-mx )
psm? ( sys-infiniband/infinipath-psm )
>=sys-apps/hwloc-1.3
!sys-cluster/mpich
!sys-cluster/lam-mpi
!sys-cluster/mpich2
!sys-cluster/mpiexec"
DEPEND="${RDEPEND}"
pkg_setup() {
use fortran && fortran-2_pkg_setup
if use mpi-threads; then
echo
ewarn "WARNING: use of MPI_THREAD_MULTIPLE is still disabled by"
ewarn "default and officially unsupported by upstream."
ewarn "You may stop now and set USE=-mpi-threads"
echo
fi
echo
elog "OpenMPI has an overwhelming count of configuration options."
elog "Don't forget the EXTRA_ECONF environment variable can let you"
elog "specify configure options if you find them necessary."
echo
}
src_prepare() {
# Necessary for scalibility, see
# http://www.open-mpi.org/community/lists/users/2008/09/6514.php
if use threads; then
echo 'oob_tcp_listen_mode = listen_thread' \
>> opal/etc/openmpi-mca-params.conf
fi
epatch "${FILESDIR}"/openmpi-r24328.patch
}
src_configure() {
local myconf=(
--sysconfdir="${EPREFIX}/etc/${PN}"
--enable-pretty-print-stacktrace
--enable-orterun-prefix-by-default
--with-hwloc="${EPREFIX}/usr"
)
if use mpi-threads; then
myconf+=(
--enable-mpi-thread-multiple
--enable-opal-multi-threads
)
fi
if use fortran; then
if [[ $(tc-getFC) =~ g77 ]]; then
myconf+=(--disable-mpi-f90)
elif [[ $(tc-getFC) =~ if ]]; then
# Enabled here as gfortran compile times are huge with this enabled.
myconf+=( --with-mpi-f90-size=medium )
fi
else
myconf+=( --disable-mpi-f90 --disable-mpi-f77 )
fi
! use vt && myconf+=(--enable-contrib-no-build=vt)
use numa && myconf+=( --with-libnuma="${EPREFIX}/usr" )
use infiniband && myconf+=( --with-openib="${EPREFIX}/usr" )
use open-mx && myconf+=( --with-mx="${EPREFIX}/usr" )
use psm && myconf+=( --with-psm="${EPREFIX}/usr" )
use knem && myconf+=( --with-knem="${EPREFIX}/usr" )
econf "${myconf[@]}" \
$(use_enable cxx mpi-cxx) \
$(use_enable romio io-romio) \
$(use_enable heterogeneous) \
$(use_with pbs tm) \
$(use_with slurm) \
$(use_enable ipv6) \
$(use_with sctp sctp)
}
src_install () {
emake DESTDIR="${D}" install || die "make install failed"
# From USE=vt see #359917
rm "${ED}"/usr/share/libtool &> /dev/null
dodoc README AUTHORS NEWS VERSION || die
}
src_test() {
# Doesn't work with the default src_test as the dry run (-n) fails.
emake -j1 check || die "emake check failed"
}
|