From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QVm1w-0006nL-E2 for garchives@archives.gentoo.org; Sun, 12 Jun 2011 14:52:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF3F91C0E8; Sun, 12 Jun 2011 14:52:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9A46F1C0E8 for ; Sun, 12 Jun 2011 14:52:40 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C4511B4025 for ; Sun, 12 Jun 2011 14:52:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5398B8003C for ; Sun, 12 Jun 2011 14:52:39 +0000 (UTC) From: "Kacper Kowalik" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kacper Kowalik" Message-ID: Subject: [gentoo-commits] proj/sci:master commit in: eclass/ X-VCS-Repository: proj/sci X-VCS-Files: eclass/fortran-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: afd3a20a660de240595b9e0102b5ca044cc40c40 Date: Sun, 12 Jun 2011 14:52:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 2cd3cfbea1b60a4bffaf85168fd46a9b commit: afd3a20a660de240595b9e0102b5ca044cc40c40 Author: Kacper Kowalik (Xarthisius) gentoo org= > AuthorDate: Sun Jun 12 14:52:31 2011 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Sun Jun 12 14:52:31 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Dafd3a20a [fortran-2.eclass] add pathscale compiler to get_fcomp, fix tabs --- eclass/fortran-2.eclass | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 263ffb9..de09679 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -87,12 +87,14 @@ get_fcomp() { echo "gfortran" ;; ifort ) echo "ifc" ;; + pathf*) + echo "pathcc" ;; mpi*) local _fcomp=3D$($(tc-getFC) -show | awk '{print $1}') echo "$(FC=3D${_fcomp} get_fcomp)";; - * ) + * ) echo $(tc-getFC) ;; - esac + esac } =20 # @FUNCTION: fortran-2_pkg_setup