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 1QkaNB-00040h-Tv for garchives@archives.gentoo.org; Sat, 23 Jul 2011 11:27:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2E7521C23D; Sat, 23 Jul 2011 11:27:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B7C5E21C23D for ; Sat, 23 Jul 2011 11:27:50 +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 5186D1CC002 for ; Sat, 23 Jul 2011 11:27:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8126D8003D for ; Sat, 23 Jul 2011 11:27:49 +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: dev-lang/path64/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lang/path64/ChangeLog dev-lang/path64/path64-9999.ebuild X-VCS-Directories: dev-lang/path64/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: b0b0e48efb603ae250268c7523e08796f462a914 Date: Sat, 23 Jul 2011 11:27:49 +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: 65fd43fad65d058453aaa43be2a01f1f commit: b0b0e48efb603ae250268c7523e08796f462a914 Author: Kacper Kowalik (Xarthisius) gentoo org= > AuthorDate: Sat Jul 23 11:27:43 2011 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Sat Jul 23 11:27:43 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Db0b0e48e [dev-lang/path64] Fix fortran specific env handling --- dev-lang/path64/ChangeLog | 3 +++ dev-lang/path64/path64-9999.ebuild | 4 ++++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/dev-lang/path64/ChangeLog b/dev-lang/path64/ChangeLog index 9c14339..9376de4 100644 --- a/dev-lang/path64/ChangeLog +++ b/dev-lang/path64/ChangeLog @@ -3,6 +3,9 @@ # $Header: $ =20 23 Jul 2011; Kacper Kowalik path64-9999.ebuild= : + Fix fortran specific env handling + + 23 Jul 2011; Kacper Kowalik path64-9999.ebuild= : Add env file =20 23 Jul 2011; Kacper Kowalik path64-9999.ebuild= : diff --git a/dev-lang/path64/path64-9999.ebuild b/dev-lang/path64/path64-= 9999.ebuild index 0d72194..1424a25 100644 --- a/dev-lang/path64/path64-9999.ebuild +++ b/dev-lang/path64/path64-9999.ebuild @@ -71,12 +71,15 @@ src_configure() { if use custom-cflags; then MY_CFLAGS=3D${CFLAGS} MY_CXXFLAGS=3D${CXXFLAGS} + MY_FCFLAGS=3D${FCFLAGS} fi =20 if use native ; then export CMAKE_BUILD_TYPE=3DRelease export CC=3Dpathcc export CXX=3DpathCC + export FC=3Dpathf90 + export F90=3Dpathf90 export MYCMAKEARGS=3D"-UCMAKE_USER_MAKE_RULES_OVERRIDE" if use amd64 ; then MY_CFLAGS=3D"${MY_CFLAGS} -fPIC" @@ -100,6 +103,7 @@ src_configure() { -DPSC_CRTBEGIN_PATH=3D$(dirname ${libgcc}) -DPSC_DYNAMIC_LINKER_x86_64=3D${linker} -DCMAKE_Fortran_COMPILER=3D"$(tc-getFC)" + -DCMAKE_Fortran_FLAGS=3D"${MY_FCFLAGS}" -DCMAKE_C_COMPILER=3D"$(tc-getCC)" -DCMAKE_C_FLAGS=3D"${MY_CFLAGS}" -DCMAKE_CXX_COMPILER=3D"$(tc-getCXX)"