aboutsummaryrefslogtreecommitdiffstats
path: root/devel/blitz/Makefile
blob: b5bccb86254aa725186ff3be0f9d925eaa6cda8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $FreeBSD$

PORTNAME=   blitz
DISTVERSION=    1.0.1
PORTREVISION=   1
CATEGORIES= devel science

MAINTAINER= yuri@FreeBSD.org
COMMENT=    Blitz++ Multi-Dimensional Array Library for C++

LICENSE=    ART20
LICENSE_FILE=   ${WRKSRC}/LICENSE

USES=       gmake libtool localbase python:2.7,build
USE_GITHUB= yes
GH_ACCOUNT= blitzpp
GNU_CONFIGURE=  yes
USE_LDCONFIG=   yes
TEST_TARGET=    check-testsuite
INSTALL_TARGET= install-strip

CONFIGURE_ARGS= --enable-shared
MAKE_ARGS=  CXXFLAGS="${CXXFLAGS}" FREEBSD_PYTHON_CMD=${PYTHON_CMD}

OPTIONS_DEFINE=     APAD FORTRAN SERIALIZATION TBB THREADSAFE
APAD_DESC=      Pad all lowest-rank lengths to nearest larger SIMD width
SERIALIZATION_DESC= Enable serialization support using Boost::Serialization
TBB_DESC=       Use Intel Threading Building Blocks atomic types
THREADSAFE_DESC=    Enable thread-safety features

APAD_CONFIGURE_ENABLE=      array-length-padding
FORTRAN_CONFIGURE_ENABLE=   fortran
FORTRAN_USES=           fortran
SERIALIZATION_CONFIGURE_ENABLE= serialization
SERIALIZATION_BUILD_DEPENDS=    ${LOCALBASE}/include/boost/mpi.hpp:devel/boost-libs
TBB_CONFIGURE_ON=       --with-tbb # TBB_CONFIGURE_WITH=tbb doesn't work: https://github.com/blitzpp/blitz/issues/20
TBB_BUILD_DEPENDS=      ${LOCALBASE}/include/tbb/atomic.h:devel/tbb
THREADSAFE_CONFIGURE_ENABLE=    threadsafe

post-install:
    @${RM} -r ${STAGEDIR}${DOCSDIR}* # https://github.com/blitzpp/blitz/issues/21

.include <bsd.port.mk>