freebsd-ports/devel/embb/Makefile
Gerald Pfeifer e59c88cece Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
2017-09-10 20:55:38 +00:00

53 lines
1.1 KiB
Makefile

# Created by: Thomas Zander <riggs@FreeBSD.org>
# $FreeBSD$
PORTNAME= embb
PORTVERSION= 1.0.0
PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= devel
MAINTAINER= riggs@FreeBSD.org
COMMENT= C/C++ library for parallel programming
LICENSE= BSD2CLAUSE BSD3CLAUSE
LICENSE_COMB= multi
USE_GITHUB= yes
GH_ACCOUNT= siemens
USES= cmake:outsource compiler:c++11-lib
CMAKE_ARGS= -DINSTALL_PREFIX=${PREFIX} \
-DUSE_C11_AND_CXX11:BOOL=true
OPTIONS_DEFINE= DOCS EXAMPLES TESTS
TESTS_DESC= Build and run parallel unit tests
DOCS_CMAKE_OFF= -DINSTALL_DOCS=OFF
TESTS_CMAKE_OFF=-DBUILD_TESTS=OFF
OPTIONS_SUB= yes
ONLY_FOR_ARCHS= amd64 i386
.include <bsd.port.options.mk>
post-patch:
${RM} ${WRKSRC}/doc/examples/CMakeLists.txt
${MV} ${WRKSRC}/doc/examples ${WRKSRC}
${REINPLACE_CMD} -e \
's|$${INSTALL_PREFIX_DOCS} PARENT_SCOPE|"${DOCSDIR}" PARENT_SCOPE|' \
${WRKSRC}/CMakeCommon/SetInstallPaths.cmake
.if ${PORT_OPTIONS:MTESTS}
post-build:
(cd ${BUILD_WRKSRC}/binaries && ./run_tests.sh)
.endif
post-install:
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}/${EXAMPLESDIR}
.include <bsd.port.mk>