freebsd-ports/security/botan2/Makefile
Gerald Pfeifer ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

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, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
2019-07-26 20:46:53 +00:00

68 lines
1.7 KiB
Makefile

# $FreeBSD$
PORTNAME= botan
DISTVERSION= 2.10.0
PORTREVISION= 3
CATEGORIES= security
MASTER_SITES= http://botan.randombit.net/releases/
PKGNAMESUFFIX= 2
DISTNAME= Botan-${PORTVERSION}
MAINTAINER= tremere@cainites.net
COMMENT= Portable, easy to use and efficient C++ crypto library
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/license.txt
BROKEN_armv6= include/arm_neon.h:28:2: error: "NEON support not enabled"
LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs
USES= compiler:c++11-lang gmake python:build shebangfix tar:tgz
SHEBANG_FILES= configure.py src/scripts/install.py
HAS_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_SCRIPT= configure.py
CONFIGURE_ARGS= --with-external-includedir=${PREFIX}/include \
--with-external-libdir=${PREFIX}/lib \
--with-boost --with-bzip2 --with-lzma --with-zlib \
--cc=${COMPILER_TYPE}
LDFLAGS+= -pthread
SHLIBVER= ${DISTVERSION:S/./ /g:[2]}
PLIST_SUB= SHLIBVER=${SHLIBVER}
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
PORTDOCS= *
OPTIONS_DEFINE= DOCS SQLITE3 SSL
OPTIONS_DEFAULT= SSL
OPTIONS_SUB= yes
SQLITE3_USES= sqlite
SQLITE3_CONFIGURE_WITH= sqlite3
SSL_USES= ssl
SSL_CONFIGURE_WITH= openssl
.include <bsd.port.options.mk>
.if ${ARCH} == aarch64
CONFIGURE_ARGS+= --cc-abi="-march=armv8-a+crypto"
.endif
.if ${ARCH} == i386 || ${ARCH} == amd64
PLIST_SUB+= HAS_RDRAND_RNG=""
.else
PLIST_SUB+= HAS_RDRAND_RNG="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e 's|^optimization_flags .*|optimization_flags "${CXXFLAGS}"|' \
${WRKSRC}/src/build-data/cc/clang.txt
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/botan ${STAGEDIR}${PREFIX}/lib/libbotan-2.so.${SHLIBVER}.${SHLIBVER}.0
.include <bsd.port.mk>