| 98 | variant no_atlas description {use Accelerate.framework instead of ATLAS} { |
| 99 | depends_lib-delete port:atlas |
| 100 | } |
| 101 | |
| 102 | if {[variant_isset g95]} { |
| 103 | default_variants +no_atlas |
| 104 | depends_lib-append port:dotwrp |
| 105 | configure.args-append --with-blas="-ldotwrp -framework Accelerate" \ |
| 106 | --with-lapack="-framework Accelerate" |
| 107 | } elseif {[variant_isset no_atlas]} { |
| 108 | configure.cflags-append -ff2c |
| 109 | configure.args-append --with-blas="-framework Accelerate" \ |
| 110 | --with-lapack="-framework Accelerate" |
| 111 | } |
| 112 | |