Revision: 96075 https://trac.macports.org/changeset/96075 Author: cal@macports.org Date: 2012-07-30 15:45:35 -0700 (Mon, 30 Jul 2012) Log Message: ----------- R-framework: Compatibility fix for ML, closes #35440, maintainer Modified Paths: -------------- trunk/dports/math/R-framework/Portfile Modified: trunk/dports/math/R-framework/Portfile =================================================================== --- trunk/dports/math/R-framework/Portfile 2012-07-30 22:38:32 UTC (rev 96074) +++ trunk/dports/math/R-framework/Portfile 2012-07-30 22:45:35 UTC (rev 96075) @@ -9,6 +9,7 @@ name R-framework conflicts R version ${major}.${minor}.${point} +revision 1 categories math science maintainers me.com:kjell.konis license {GPL-2 GPL-3} @@ -206,3 +207,22 @@ livecheck.type regex livecheck.url [lindex ${master_sites} 0] livecheck.regex >R-(\[0-9.\]+)${extract.suffix}< + + + +# Hopefully can get rid of this soon + +platform darwin 12 { + configure.args-delete --with-blas="-framework vecLib" --with-lapack="-framework vecLib" + configure.args-append --without-blas --without-lapack + ui_msg "Temporary Mountain Lion issue: using builtin lapack" +} + +if {[variant_isset gcc45] || [variant_isset gcc46]} { + if {${os.platform} == "darwin" && ${os.major} == 12} { + ui_error "This version of the R-framework port does not compile with gcc45 or gcc46 on Mountain Lion" + return -code error "incompatible variant" + } +} + +
participants (1)
-
cal@macports.org