summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2004-09-19 21:44:21 +0000
committerMichael Imhof <tantive@gentoo.org>2004-09-19 21:44:21 +0000
commit36f40d635cf3ce13c124fca2ad50f14ea18d1b7d (patch)
tree5c443968b34262e18867b2ee93f2222c8c638eb5
parentAdded sys-cluster/lam-mpi (diff)
downloadgentoo-2-36f40d635cf3ce13c124fca2ad50f14ea18d1b7d.tar.gz
gentoo-2-36f40d635cf3ce13c124fca2ad50f14ea18d1b7d.tar.bz2
gentoo-2-36f40d635cf3ce13c124fca2ad50f14ea18d1b7d.zip
Added local use flag for f77.
-rw-r--r--sys-cluster/lam-mpi/ChangeLog5
-rw-r--r--sys-cluster/lam-mpi/lam-mpi-7.0.4-r1.ebuild12
2 files changed, 12 insertions, 5 deletions
diff --git a/sys-cluster/lam-mpi/ChangeLog b/sys-cluster/lam-mpi/ChangeLog
index ee21ab1e3ee4..cde703989010 100644
--- a/sys-cluster/lam-mpi/ChangeLog
+++ b/sys-cluster/lam-mpi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-cluster/lam-mpi
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lam-mpi/ChangeLog,v 1.21 2004/09/19 19:43:28 tantive Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lam-mpi/ChangeLog,v 1.22 2004/09/19 21:44:21 tantive Exp $
+
+ 19 Sep 2004; Michael Imhof <tantive@gentoo.org> lam-mpi-7.0.4-r1.ebuild:
+ Added local use flag for f77.
19 Sep 2004; Michael Imhof <tantive@gentoo.org> -lam-mpi-6.5.6-r1.ebuild,
-lam-mpi-6.5.9-r1.ebuild, -lam-mpi-7.0.2.ebuild, -lam-mpi-7.0.3.ebuild:
diff --git a/sys-cluster/lam-mpi/lam-mpi-7.0.4-r1.ebuild b/sys-cluster/lam-mpi/lam-mpi-7.0.4-r1.ebuild
index 09b3e009bcaa..3b2a1813dec9 100644
--- a/sys-cluster/lam-mpi/lam-mpi-7.0.4-r1.ebuild
+++ b/sys-cluster/lam-mpi/lam-mpi-7.0.4-r1.ebuild
@@ -1,8 +1,6 @@
# Copyright 1999-2004 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.4-r1.ebuild,v 1.2 2004/08/20 02:44:15 pvdabeel Exp $
-
-IUSE="crypt"
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lam-mpi/lam-mpi-7.0.4-r1.ebuild,v 1.3 2004/09/19 21:44:21 tantive Exp $
MY_P=${P/-mpi}
S=${WORKDIR}/${MY_P}
@@ -20,6 +18,7 @@ RDEPEND="${DEPEND}
SLOT="6"
KEYWORDS="~x86 ppc"
+IUSE="crypt f77"
LICENSE="as-is"
src_unpack() {
@@ -30,7 +29,6 @@ src_unpack() {
}
src_compile() {
-
local myconf
if use crypt; then
@@ -39,6 +37,12 @@ src_compile() {
myconf="--with-rsh=rsh"
fi
+ if use f77; then
+ myconf="${myconf} --with-fc"
+ else
+ myconf="${myconf} --without-fc"
+ fi
+
econf \
--sysconfdir=/etc/lam-mpi \
--enable-shared \