openbsd-ports/devel/openmpi/Makefile
2022-07-01 15:33:57 +00:00

51 lines
1.4 KiB
Makefile

COMMENT = open source MPI-3.1 implementation
V = 4.1.4
DISTNAME = openmpi-$V
SHARED_LIBS += open-pal 7.0 # 70.2
SHARED_LIBS += mca_common_sm 4.0 # 70.0
SHARED_LIBS += mca_common_dstore 2.0 # 1.2
SHARED_LIBS += open-rte 7.0 # 70.2
SHARED_LIBS += mpi 7.0 # 70.2
SHARED_LIBS += mpi_mpifh 2.0 # 70.0
SHARED_LIBS += mpi_usempi_ignore_tkr 2.0 # 70.0
SHARED_LIBS += mpi_usempif08 4.0 # 70.0
SHARED_LIBS += mca_common_monitoring 2.0 # 70.0
SHARED_LIBS += mca_common_ompio 4.0 # 70.2
SHARED_LIBS += ompitrace 2.0 # 70.0
CATEGORIES = devel
HOMEPAGE = https://www.open-mpi.org/
MAINTAINER = Martin Reindl <martin@catai.org>
# BSD
PERMIT_PACKAGE = Yes
WANTLIB += c execinfo m pciaccess pthread util z
MASTER_SITES = ${HOMEPAGE}/software/ompi/v${V:C/^([0-9]+\.[0-9]+).*/\1/}/downloads/
COMPILER = ports-gcc
# MODULES=fortran always uses ports-gcc (and overrides COMPILER)
# the openmpi applications and libraries will be built with ports-gcc, but
# are compatible with base-clang on archs where it is available
MODULES = fortran
MODFORTRAN_COMPILER = gfortran
BUILD_DEPENDS = devel/libtool,-ltdl
CONFIGURE_ARGS += --enable-mpi-fortran=usempif08 \
--enable-mca-no-build=op-avx \
FC=egfortran \
CC=egcc
MAKE_FLAGS = V=1
FAKE_FLAGS = sysconfdir=${PREFIX}/share/examples/openmpi/
CONFIGURE_STYLE = gnu
SEPARATE_BUILD = Yes
.include <bsd.port.mk>