diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2020-04-26 17:59:16 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2020-04-26 17:59:16 +0000 |
commit | 56f931b6c2ec6e8f7eb362b356c4d3c3261f6993 (patch) | |
tree | 2431f693234e82a896121b0c91825df2985a4edd /science/code_saturne/Makefile | |
parent | d4e1fe5a1449140c4921d8a5db35587113e210f1 (diff) | |
download | freebsd-ports-56f931b6c2ec6e8f7eb362b356c4d3c3261f6993.zip |
Upgrade to 6.1.0 + some post-release fixes.
Release notes at
<https://github.com/code-saturne/code_saturne/blob/v6.1/NEWS.md>.
Diffstat (limited to 'science/code_saturne/Makefile')
-rw-r--r-- | science/code_saturne/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/science/code_saturne/Makefile b/science/code_saturne/Makefile index bb530363c5c8..419b401929bc 100644 --- a/science/code_saturne/Makefile +++ b/science/code_saturne/Makefile @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= code_saturne -PORTVERSION= 6.0.2 +PORTVERSION= 6.1.0 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= science parallel MAINTAINER= thierry@FreeBSD.org @@ -25,6 +24,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} USE_GITHUB= yes GH_ACCOUNT= code-saturne +GH_TAGNAME= 89e7bbf # Some fixes are needed for atmospheric aerosols USES= autoreconf bison fortran gettext gnome gmake iconv libtool \ pyqt:5 python:3.6+ shebangfix @@ -46,6 +46,7 @@ OPTIONS_DEFINE= DOCS EXAMPLES BATCH BLAS MPI OPTIONS_DEFAULT= BATCH BLAS MPI METIS OPTIONS_RADIO= METIS OPTIONS_RADIO_METIS= METIS PARMETIS +BLAS_DESC= Support of OpenBLAS BLAS_USES= blaslapack BLAS_CONFIGURE_ON= --with-blas=yes --with-blas-lib=${LOCALBASE}/lib --with-blas-libs=-lopenblas BLAS_LIB_DEPENDS= libopenblas.so:math/openblas @@ -53,8 +54,10 @@ BATCH_DESC= Use Torque to submit batches BATCH_RUN_DEPENDS= pbs-config:sysutils/torque MPI_LIB_DEPENDS= libmpi.so:net/mpich MPI_CONFIGURE_WITH= mpi +METIS_DESC= Support of METIS METIS_LIB_DEPENDS= libmetis.so:math/metis METIS_CONFIGURE_ON= --with-metis-include="${LOCALBASE}/include" +PARMETIS_DESC= Support of ParMETIS PARMETIS_LIB_DEPENDS= libparmetis.so:math/parmetis PARMETIS_CONFIGURE_ON= --with-metis-include="${LOCALBASE}/include/parmetis" \ --with-metis-lib="${LOCALBASE}/lib/parmetis" @@ -89,8 +92,6 @@ DOCS= AUTHORS ChangeLog README .endif pre-configure: - (cd ${WRKSRC} && ${LS} preprocessor/*/*.c src/*/*.c* | \ - ${GREP} -v user_examples > po/POTFILES.in) ${FLEX} -o ${WRKSRC}/src/mei/mei_scanner.c ${WRKSRC}/src/mei/mei_scanner.l ${LOCALBASE}/bin/bison --defines=${WRKSRC}/src/mei/mei_parser.h \ -o ${WRKSRC}/src/mei/mei_parser.c ${WRKSRC}/src/mei/mei_parser.y |