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 1Qa9xT-0003Yj-T3 for garchives@archives.gentoo.org; Fri, 24 Jun 2011 17:14:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4D701C1DA; Fri, 24 Jun 2011 17:09:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9787A1C1DE for ; Fri, 24 Jun 2011 17:09:10 +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 D15761B4009 for ; Fri, 24 Jun 2011 17:09:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B9EDA80048 for ; Fri, 24 Jun 2011 17:09:08 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <22716034acc6451caffcdc2f2722b3ba14bb610e.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/smmp/ChangeLog sci-chemistry/smmp/smmp-3.0.5.ebuild X-VCS-Directories: sci-chemistry/smmp/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 22716034acc6451caffcdc2f2722b3ba14bb610e Date: Fri, 24 Jun 2011 17:09:08 +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: f484788dcaecce6bdae4f84d62143fea commit: 22716034acc6451caffcdc2f2722b3ba14bb610e Author: Justin Lecher gentoo org> AuthorDate: Fri Jun 24 12:11:35 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Jun 24 12:11:35 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D22716034 Streamlined fortran-2 eclass usage (Portage version: 2.2.0_alpha41/git/Linux x86_64, RepoMan options: --forc= e, signed Manifest commit with key 70EB7916) --- sci-chemistry/smmp/ChangeLog | 3 +++ sci-chemistry/smmp/smmp-3.0.5.ebuild | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog index f58c391..cddd7bf 100644 --- a/sci-chemistry/smmp/ChangeLog +++ b/sci-chemistry/smmp/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 + 24 Jun 2011; Justin Lecher smmp-3.0.5.ebuild: + Streamlined fortran-2 eclass usage + 21 Jun 2011; Justin Lecher smmp-3.0.5.ebuild: Added fortran-2.eclass support =20 diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/sm= mp-3.0.5.ebuild index 0c226db..8f49f3d 100644 --- a/sci-chemistry/smmp/smmp-3.0.5.ebuild +++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild @@ -22,7 +22,9 @@ KEYWORDS=3D"~amd64 ~x86" LICENSE=3D"GPL-2" IUSE=3D"doc mpi test" =20 -RDEPEND=3D"mpi? ( virtual/mpi )" +RDEPEND=3D" + virtual/fortran + mpi? ( virtual/mpi )" DEPEND=3D"${RDEPEND} doc? ( app-doc/doxygen )" =20 @@ -37,18 +39,16 @@ src_compile() { FC=3D"mpif90" target=3D"parallel" else - FC=3D$(tc-getFC) target=3D"${PN}" fi =20 - emake FC=3D${FC} ${target} || die + tc-export FC =20 - if use test; then - emake FC=3D${FC} examples || die - fi + emake ${target} || die } =20 src_test() { + emake examples || die cd EXAMPLES bash smmp.cmd || die }