mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
5659769acf
From the announcement: This is a stable release that adds several capabilities including Blue Gene/Q implementation supports for MPI-3, experimental Fortran 2008 bindings, significant rework of MPICH library management, and a large number of bug fixes.
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mpich
|
|
PORTVERSION= 3.1.1
|
|
CATEGORIES= net parallel
|
|
MASTER_SITES= http://www.mpich.org/static/downloads/${DISTVERSION}/
|
|
|
|
MAINTAINER= tijl@FreeBSD.org
|
|
COMMENT= Portable implementation of MPI-1, MPI-2 and MPI-3
|
|
|
|
LICENSE= MPICH
|
|
LICENSE_NAME= MPICH
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
LIB_DEPENDS= libhwloc.so:${PORTSDIR}/devel/hwloc
|
|
|
|
CONFLICTS= lam-7.* mpd-[0-9]* mpiexec-0.* mpich2-[0-9]*
|
|
GNU_CONFIGURE= yes
|
|
USES= libtool pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS FORTRAN
|
|
OPTIONS_GROUP= PM
|
|
OPTIONS_GROUP_PM= GFORKER HYDRA
|
|
OPTIONS_RADIO= DEFAULTPM
|
|
OPTIONS_RADIO_DEFAULTPM=DGFORKER DHYDRA
|
|
OPTIONS_DEFAULT= FORTRAN HYDRA DHYDRA
|
|
OPTIONS_SUB= yes
|
|
|
|
FORTRAN_CONFIGURE_ENABLE= fortran
|
|
FORTRAN_USES= fortran
|
|
|
|
GFORKER_DESC= Simple local process manager
|
|
HYDRA_DESC= Parallel process manager
|
|
DGFORKER_DESC= Make gforker the default process manager
|
|
DHYDRA_DESC= Make hydra the default process manager
|
|
|
|
CONFIGURE_ARGS= --with-hwloc-prefix=${LOCALBASE} ac_cv_path_BASH_SHELL="" \
|
|
pkgconfigdir="${PREFIX}/libdata/pkgconfig"
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.for pm in ${OPTIONS_GROUP_PM}
|
|
. if ${PORT_OPTIONS:M${pm}}
|
|
. if empty(PMLIST)
|
|
PMLIST= ${pm:tl}
|
|
. elif ${PORT_OPTIONS:MD${pm}}
|
|
PMLIST:= ${pm:tl},${PMLIST}
|
|
. else
|
|
PMLIST:= ${PMLIST},${pm:tl}
|
|
. endif
|
|
. endif
|
|
.endfor
|
|
|
|
.if empty(PMLIST)
|
|
CONFIGURE_ARGS+=--without-pm
|
|
PLIST_SUB+= EXEC="@comment " EXECGFORKER="@comment "
|
|
.else
|
|
CONFIGURE_ARGS+=--with-pm=${PMLIST}
|
|
PLIST_SUB+= EXEC=""
|
|
.if ${PMLIST:M*,gforker*}
|
|
PLIST_SUB+= EXECGFORKER=""
|
|
.else
|
|
PLIST_SUB+= EXECGFORKER="@comment "
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|