1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 121344 2014-06-23 21:56:02Z sean@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup mpi 1.0 |
---|
6 | |
---|
7 | mpi.setup |
---|
8 | |
---|
9 | name hypre |
---|
10 | version 2.9.1a |
---|
11 | categories math |
---|
12 | platforms darwin |
---|
13 | maintainers sean openmaintainer |
---|
14 | description hypre is a linear solver |
---|
15 | long_description hypre is a library for solving large, sparse linear \ |
---|
16 | systems of equations on massively parallel computers. |
---|
17 | |
---|
18 | homepage http://acts.nersc.gov/hypre/ |
---|
19 | master_sites http://ftp.mcs.anl.gov/pub/petsc/externalpackages/ |
---|
20 | |
---|
21 | checksums rmd160 07abbfa45a769bb8686e863930762bff8c8b8dd4 \ |
---|
22 | sha256 84bca42f5dbeb9f5dd2bcaeb619e460d7b378b04f4b383f14926b49c7cd639a1 |
---|
23 | |
---|
24 | universal_variant no |
---|
25 | worksrcdir ${distname}/src |
---|
26 | |
---|
27 | configure.args --with-blas --with-lapack --without-superlu \ |
---|
28 | --without-fei --without-mli --without-babel |
---|
29 | |
---|
30 | destroot.destdir prefix=${destroot}${prefix} |
---|
31 | |
---|
32 | variant longindex description {Build with 64 bit ints} { |
---|
33 | configure.args-append --enable-bigint |
---|
34 | } |
---|
35 | |
---|
36 | livecheck.type regex |
---|
37 | livecheck.url http://computation.llnl.gov/casc/hypre/software.html |
---|
38 | livecheck.regex $name-(\[0-9\.\]+b)</a> |
---|