aboutsummaryrefslogtreecommitdiff
blob: ae68bb3e8d10f77cff6d8c3a8c5579b228bb2b02 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit multilib flag-o-matic toolchain-funcs fortran

IUSE="pbs fortran threads static"

MY_P=${P/-mpi}
S=${WORKDIR}/${MY_P}

DESCRIPTION="A High Performance Message Passing Library"
SRC_URI="http://www.open-mpi.org/software/ompi/v1.0/downloads/${MY_P}.tar.bz2"
HOMEPAGE="http://www.open-mpi.org"
PROVIDE="virtual/mpi"
DEPEND="virtual/libc
		pbs? ( virtual/pbs )"

SLOT="6"
KEYWORDS="~amd64 ~x86"
LICENSE="BSD"

FORTRAN="gfortran g77"

pkg_setup() {
	if use threads; then
		ewarn
		ewarn "WARNING: use of threads is higly experimental."
		ewarn "You may stop now and set USE=-threads"
		ewarn
		sleep 5
	fi
	use fortran && fortran_pkg_setup
}

src_compile() {

	OMPISLOT=${PV}-"gcc-$(gcc-version)"

	einfo
	einfo "OpenMPI has an overwhelming count of configuration options."
	einfo "Don't forget the EXTRA_ECONF environment variable can let you"
	einfo "specify configure options."
	einfo "${A} will be installed in /usr/$(get_libdir)/${PN}/${OMPISLOT}"
	einfo

	local myconf="--prefix=/usr/$(get_libdir)/${PN}/${OMPISLOT}"
	myconf="${myconf} --datadir=/usr/share/${PN}/${OMPISLOT}"
	myconf="${myconf} --program-suffix=-${OMPISLOT}"
	myconf="${myconf} --sysconfdir=/etc/${PN}/${OMPISLOT}"
	myconf="${myconf} --enable-pretty-print-stacktrace"

	if use threads; then
		myconf="${myconf} --enable-mpi-threads"
		myconf="${myconf} --with-progress-threads"
		myconf="${myconf} --with-threads=posix"
	fi

	if use fortran; then
		myconf="${myconf} $(use enable fortran mpi-f77)"
		[ "${FORTRANC}" = "g77" ] && \
			myconf="${myconf} --disable-mpi-f90" || \
			myconf="${myconf} --enable-mpi-f90"
	fi

	if use static; then
		myconf="${myconf} --enable-static"
		myconf="${myconf} --disable-shared"
		myconf="${myconf} --without-memory-manager"
	fi

	use pbs && myconf="${myconf} $(use_with pbs tm /usr/$(get_libdir)/pbs)"
	append-ldflags -Wl,-z,-noexecstack

	econf ${myconf} || die "econf failed"
	emake  || die "emake failed"
}

src_install () {

	make DESTDIR="${D}" install || die "make install failed"

	# fix broken links
	for c in ${D}/usr/$(get_libdir)/${PN}/${OMPISLOT}/bin/*${OMPISLOT}; do
		p=${c/${D}/}
		dosym ${p} ${p/-${OMPISLOT}/}
	done

	dodoc README AUTHORS NEWS VERSION
}