Revision: 108578 https://trac.macports.org/changeset/108578 Author: takeshi@macports.org Date: 2013-07-26 15:47:03 -0700 (Fri, 26 Jul 2013) Log Message: ----------- fortrancl: added gcc48 variant. fixed a bug that g95 variant incorrectly depends on gcc45 Modified Paths: -------------- trunk/dports/devel/fortrancl/Portfile Modified: trunk/dports/devel/fortrancl/Portfile =================================================================== --- trunk/dports/devel/fortrancl/Portfile 2013-07-26 22:39:12 UTC (rev 108577) +++ trunk/dports/devel/fortrancl/Portfile 2013-07-26 22:47:03 UTC (rev 108578) @@ -5,7 +5,7 @@ name fortrancl version 0.1alpha3 -revision 2 +revision 3 categories devel parallel science platforms darwin license LGPL @@ -40,26 +40,31 @@ ${destroot}${prefix}/share/${name}/examples/ } -if {![variant_isset g95] && ![variant_isset gcc45] && ![variant_isset gcc46]} { +if {![variant_isset g95] && ![variant_isset gcc45] && ![variant_isset gcc46] && ![variant_isset gcc48]} { default_variants +gcc47 } -variant gcc45 conflicts g95 gcc46 gcc47 description {build with gfortran-mp-4.5} { +variant gcc45 conflicts g95 gcc46 gcc47 gcc48 description {build with gfortran-mp-4.5} { depends_build-append port:gcc45 configure.compiler macports-gcc-4.5 } -variant gcc46 conflicts g95 gcc45 gcc47 description {build with gfortran-mp-4.6} { +variant gcc46 conflicts g95 gcc45 gcc47 gcc48 description {build with gfortran-mp-4.6} { depends_build-append port:gcc46 configure.compiler macports-gcc-4.6 } -variant gcc47 conflicts g95 gcc45 gcc46 description {build with gfortran-mp-4.7} { +variant gcc47 conflicts g95 gcc45 gcc46 gcc48 description {build with gfortran-mp-4.7} { depends_build-append port:gcc47 configure.compiler macports-gcc-4.7 } -variant g95 conflicts gcc45 gcc46 gcc47 description {build with g95} { - depends_build-append port:gcc45 +variant gcc48 conflicts g95 gcc45 gcc46 gcc47 description {build with gfortran-mp-4.8} { + depends_build-append port:gcc48 + configure.compiler macports-gcc-4.8 +} + +variant g95 conflicts gcc45 gcc46 gcc47 gcc48 description {build with g95} { + depends_build-append port:g95 configure.fc g95 }