Index: head/security/botan2/Makefile =================================================================== --- head/security/botan2/Makefile (revision 465688) +++ head/security/botan2/Makefile (revision 465689) @@ -1,65 +1,69 @@ # $FreeBSD$ PORTNAME= botan DISTVERSION= 2.4.0 PORTREVISION= 1 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" +BROKEN_armv7= fails to package: pkg-static: Unable to access file stage/usr/local/include/botan-2/botan/rdrand_rng.h:No such file or directory +BROKEN_powerpc64= fails to configure: Unknown compiler "None"; available options: clang ekopath gcc hpcc icc msvc pgi sunstudio xlc + LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs OPTIONS_DEFINE= SQLITE3 SSL DOCS OPTIONS_DEFAULT= SSL OPTIONS_SUB= yes USES= compiler:c++11-lang gmake python:build shebangfix tar:tgz 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 LDFLAGS+= -pthread SHEBANG_FILES= configure.py src/scripts/install.py DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= * SQLITE3_USES= sqlite SQLITE3_CONFIGURE_WITH= sqlite3 SSL_USES= ssl SSL_CONFIGURE_WITH= openssl SSL_VARS= BROKEN_SSL= openssl-devel .include .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: .for i in bin/botan lib/libbotan-2.so.4.4.0 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${i} .endfor .include