svn commit: r531493 - head/science/ALPSCore

Danilo Egea Gondolfo danilo at FreeBSD.org
Sun Apr 12 09:16:58 UTC 2020


Author: danilo
Date: Sun Apr 12 09:16:58 2020
New Revision: 531493
URL: https://svnweb.freebsd.org/changeset/ports/531493

Log:
  - Move OpenMPI support to net/openmpi3. OpenMPI 1 and 2 are deprecated

Modified:
  head/science/ALPSCore/Makefile

Modified: head/science/ALPSCore/Makefile
==============================================================================
--- head/science/ALPSCore/Makefile	Sun Apr 12 09:15:36 2020	(r531492)
+++ head/science/ALPSCore/Makefile	Sun Apr 12 09:16:58 2020	(r531493)
@@ -3,7 +3,7 @@
 PORTNAME=	ALPSCore
 DISTVERSIONPREFIX=	v
 DISTVERSION=	2.2.0
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	science
 
 MAINTAINER=	ports at FreeBSD.org
@@ -28,24 +28,24 @@ CMAKE_ARGS_TEST=	-DTesting:BOOL=ON -DExtensiveTesting:
 CXXFLAGS+=	-DNDEBUG # see https://github.com/ALPSCore/ALPSCore/issues/389
 LDFLAGS+=	-lexecinfo # https://github.com/ALPSCore/ALPSCore/issues/390
 
-OPTIONS_DEFINE=	DOXYGEN DOCS OPENMPI2
-OPTIONS_DEFAULT=	OPENMPI2
-OPENMPI2_DESC=	Parallel processing support via Open MPI 2.x
+OPTIONS_DEFINE=	DOXYGEN DOCS OPENMPI
+OPTIONS_DEFAULT=	OPENMPI
+OPENMPI_DESC=	Parallel processing support via Open MPI 3.x
 
 DOXYGEN_IMPLIES=	DOCS
 DOXYGEN_CMAKE_BOOL=	Documentation
 DOXYGEN_BUILD_DEPENDS=	doxygen:devel/doxygen
 
-OPENMPI2_CMAKE_BOOL=	ENABLE_MPI
-OPENMPI2_LIB_DEPENDS=	libmpi.so:net/openmpi2
+OPENMPI_CMAKE_BOOL=	ENABLE_MPI
+OPENMPI_LIB_DEPENDS=	libmpi.so:net/openmpi3
 
 PORTDOCS=	*
 
 .include <bsd.port.pre.mk>
 
-.if ${PORT_OPTIONS:MOPENMPI2}
-CC=	${LOCALBASE}/mpi/openmpi2/bin/mpicc
-CXX=	${LOCALBASE}/mpi/openmpi2/bin/mpicxx
+.if ${PORT_OPTIONS:MOPENMPI}
+CC=	${LOCALBASE}/mpi/openmpi3/bin/mpicc
+CXX=	${LOCALBASE}/mpi/openmpi3/bin/mpicxx
 .endif
 
 post-install-DOXYGEN-on:


More information about the svn-ports-all mailing list