diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2008-01-31 07:07:19 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2008-01-31 07:07:19 +0000 |
commit | 2d11ac71a4e730a0920184a8479dfe873f8f0f44 (patch) | |
tree | 56d96971fbc5cccbec4c770a15add68f105e2a96 /sys-cluster/lam-mpi | |
parent | Clean up. (diff) | |
download | gentoo-2-2d11ac71a4e730a0920184a8479dfe873f8f0f44.tar.gz gentoo-2-2d11ac71a4e730a0920184a8479dfe873f8f0f44.tar.bz2 gentoo-2-2d11ac71a4e730a0920184a8479dfe873f8f0f44.zip |
Clean up.
(Portage version: 2.1.4)
Diffstat (limited to 'sys-cluster/lam-mpi')
-rw-r--r-- | sys-cluster/lam-mpi/ChangeLog | 6 | ||||
-rw-r--r-- | sys-cluster/lam-mpi/files/digest-lam-mpi-7.0.6 | 3 | ||||
-rw-r--r-- | sys-cluster/lam-mpi/lam-mpi-7.0.6.ebuild | 75 |
3 files changed, 5 insertions, 79 deletions
diff --git a/sys-cluster/lam-mpi/ChangeLog b/sys-cluster/lam-mpi/ChangeLog index f38632f6a6dd..08f6ac58ad48 100644 --- a/sys-cluster/lam-mpi/ChangeLog +++ b/sys-cluster/lam-mpi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-cluster/lam-mpi # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lam-mpi/ChangeLog,v 1.64 2008/01/17 03:15:55 jsbronder Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lam-mpi/ChangeLog,v 1.65 2008/01/31 07:07:18 dberkholz Exp $ + + 31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>; + -lam-mpi-7.0.6.ebuild: + Clean up. *lam-mpi-7.1.4 (17 Jan 2008) diff --git a/sys-cluster/lam-mpi/files/digest-lam-mpi-7.0.6 b/sys-cluster/lam-mpi/files/digest-lam-mpi-7.0.6 deleted file mode 100644 index 57f1718a8aa7..000000000000 --- a/sys-cluster/lam-mpi/files/digest-lam-mpi-7.0.6 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 4037133e564648bd7815e36f3f017d8b lam-7.0.6.tar.bz2 5752257 -RMD160 e1698b2c499715105be39c7f0fba19a9fa3c16d0 lam-7.0.6.tar.bz2 5752257 -SHA256 e913376859d3daede1f19bc251213e5223227bf6c741e5131c965b62db6f71ce lam-7.0.6.tar.bz2 5752257 diff --git a/sys-cluster/lam-mpi/lam-mpi-7.0.6.ebuild b/sys-cluster/lam-mpi/lam-mpi-7.0.6.ebuild deleted file mode 100644 index 94dc26e05d49..000000000000 --- a/sys-cluster/lam-mpi/lam-mpi-7.0.6.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2006 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.0.6.ebuild,v 1.7 2006/12/06 23:39:41 dberkholz Exp $ - -IUSE="crypt" - -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" -# we need ssh if we want to use it instead of rsh -RDEPEND="${DEPEND} - crypt? ( net-misc/openssh ) - !crypt? ( net-misc/netkit-rsh ) - !sys-cluster/mpich - !sys-cluster/openmpi - !sys-cluster/mpich2" - -SLOT="6" -KEYWORDS="x86 ppc sparc" -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 -} - -src_compile() { - - local myconf - - if use crypt; then - myconf="--with-rsh=ssh" - else - myconf="--with-rsh=rsh" - fi - - econf \ - --sysconfdir=/etc/lam-mpi \ - --enable-shared \ - --enable-long-long \ - --enable-threads=posix \ - --enable-languages=c,c++,f77 \ - --disable-checking \ - --enable-cstdio=stdio \ - --with-system-zlib \ - --without-fc \ - ${myconf} || die - - # sometimes emake doesn't finish since it gets ahead of itself :) - - make || die -} - -src_install () { - - make DESTDIR="${D}" install || die - - #need to correct the produced absolute symlink - cd ${D}/usr/include - rm mpi++.h - ln -sf mpi2c++/mpi++.h mpi++.h - - # There are a bunch more tex docs we could make and install too, - # but they might be replicated in the pdf. - dodoc README HISTORY LICENSE VERSION - cd ${S}/doc - dodoc {user,install}.pdf -} |