024afd250a
Changelog: https://docs.open-mpi.org/en/v5.0.x/release-notes/changelog/v5.0.x.html net/openmpi -> 5.0.10 net/pmix -> 5.0.10 net/prrte -> 3.0.13 Reviewed by: thierry (mentor) Approved by: thierry (mentor) Differential Revision: https://reviews.freebsd.org/D56272
40 lines
946 B
Makefile
40 lines
946 B
Makefile
PORTNAME= prrte
|
|
DISTVERSION= 3.0.13
|
|
CATEGORIES= net parallel sysutils
|
|
MASTER_SITES= https://github.com/openpmix/prrte/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= laurent@FreeBSD.org
|
|
COMMENT= PMIx Reference RunTime Environment (PRRTE)
|
|
WWW= https://docs.prrte.org/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NOT_FOR_ARCHS= armv6 armv7 i386 powerpc
|
|
NOT_FOR_ARCHS_REASON= Not supported on 32-bits
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent \
|
|
libhwloc.so:devel/hwloc2 \
|
|
libpmix.so:net/pmix
|
|
|
|
USES= compiler:c11 cpe gmake libtool localbase:ldflags \
|
|
perl5 pkgconfig tar:bz2
|
|
USE_PERL5= build
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-static \
|
|
--with-hwloc=${LOCALBASE} \
|
|
--with-libevent=${LOCALBASE} \
|
|
--with-pmix=${LOCALBASE}
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
post-install-DOCS-on:
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|