blob: 80618b9f831463bb13b18c49234685e17706d609 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.0.3.ebuild,v 1.1 2006/05/21 18:54:51 nerdboy Exp $
inherit eutils autotools kde-functions
DESCRIPTION="MPICH2 - A portable MPI implementation"
HOMEPAGE="http://www-unix.mcs.anl.gov/mpi/mpich2"
SRC_URI="ftp://ftp.mcs.anl.gov/pub/mpi/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="crypt cxx doc debug mpe"
PROVIDE="virtual/mpi"
DEPEND="virtual/libc
sys-devel/autoconf
sys-devel/automake
sys-devel/libtool"
RDEPEND="${DEPEND}
crypt? ( net-misc/openssh )
!crypt? ( net-misc/netkit-rsh )
!virtual/mpi"
pkg_setup() {
if [ -n "${MPICH_CONFIGURE_OPTS}" ]; then
einfo "Custom configure options are ${MPICH_CONFIGURE_OPTS}."
fi
}
src_unpack() {
unpack ${A}
cd ${S}
need-autoconf 2.5
epatch ${FILESDIR}/${P}-soname.patch
ebegin "Reconfiguring"
./maint/updatefiles
eend "Reconfigure failed"
epatch ${FILESDIR}/${P}-make.patch
}
src_compile() {
export LDFLAGS='-Wl,-z,now'
local RSHCOMMAND
if use crypt ; then
RSHCOMMAND="ssh -x"
else
RSHCOMMAND="rsh"
fi
export RSHCOMMAND
local myconf="${MPICH_CONFIGURE_OPTS}"
if ! use debug ; then
myconf="${myconf} --enable-fast --enable-g=none"
else
myconf="${myconf} --enable-g=dbg --enable-debuginfo"
fi
./configure --prefix=/usr --enable-sharedlibs=gcc \
${myconf} \
$(use_enable cxx) \
$(use_enable mpe) \
--libdir=/usr/$(get_libdir) \
--mandir=/usr/share/man \
--with-docdir=/usr/share/doc/${PF} \
--with-htmldir=/usr/share/doc/${PF}/html \
--sysconfdir=/etc/mpich2 \
--datadir=/usr/share/mpich2 || die "configure failed"
make || die "make failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed"
dodir /usr/share/${PN}
mv ${D}usr/examples/cpi ${D}usr/share/${PN}/cpi
rm -rf ${D}/usr/examples
dodir /usr/share/doc/${PF}
if use doc; then
dodoc COPYRIGHT README README.romio README.testing CHANGES
dodoc README.developer RELEASE_NOTES
else
rm -rf ${D}/usr/share/doc/
rm -rf ${D}/usr/share/man/
dodoc README CHANGES COPYRIGHT RELEASE_NOTES
newdoc src/pm/mpd/README README.mpd
fi
}
|