mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
e8035d4760
Major update from 3.31.8 to 4.1.2. CMake 4.0 introduces a breaking change: compatibility with versions older than 3.5 has been removed. Projects calling cmake_minimum_required() or cmake_policy() with versions < 3.5 now error out. To maintain compatibility with existing ports during the transition, the cmake module now provides MODCMAKE_POLICY_VERSION_OVERRIDE (idea from sthen@) support: - MODCMAKE_POLICY_VERSION_OVERRIDE ?= No - MODCMAKE_POLICY_VERSION_OVERRIDE_VER ?= 3.5 When MODCMAKE_POLICY_VERSION_OVERRIDE is set to "yes", CMake is instructed to accept policy versions down to the specified minimum (default 3.5) via -DCMAKE_POLICY_VERSION_MINIMUM. This allows older ports to build while acknowledging they may use deprecated features. https://cmake.org/cmake/help/latest/release/4.0.html https://cmake.org/cmake/help/latest/release/4.1.html OK sthen@
65 lines
1.3 KiB
Makefile
65 lines
1.3 KiB
Makefile
ONLY_FOR_ARCHS= amd64
|
|
|
|
COMMENT= high-performance regular expression matching library
|
|
|
|
GH_ACCOUNT= intel
|
|
GH_PROJECT= hyperscan
|
|
GH_TAGNAME= v5.4.2
|
|
REVISION= 0
|
|
|
|
SHARED_LIBS += hs 0.1
|
|
SHARED_LIBS += hs_runtime 0.1
|
|
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= https://www.hyperscan.io/
|
|
|
|
MAINTAINER= Stuart Henderson <stu.ports@spacehopper.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} c m pcap sqlite3
|
|
|
|
COMPILER= base-clang ports-gcc
|
|
DEBUG_PACKAGES= ${BUILD_PACKAGES}
|
|
|
|
FLAVORS= native ssse3 sse4_2 avx2
|
|
FLAVOR?= ssse3
|
|
|
|
MODULES= devel/cmake \
|
|
lang/python
|
|
MODPY_RUNDEP= No
|
|
BUILD_DEPENDS= devel/boost \
|
|
devel/ragel
|
|
LIB_DEPENDS= databases/sqlite3
|
|
CONFIGURE_ARGS= -DBUILD_SHARED_LIBS=ON \
|
|
-DOPTIMISE=OFF
|
|
|
|
.if ${FLAVOR} == ssse3
|
|
M= -march=core2
|
|
.elif ${FLAVOR} == sse4_2
|
|
M= -march=corei7
|
|
.elif ${FLAVOR} == avx2
|
|
M= -march=core-avx2
|
|
.elif ${FLAVOR} != native
|
|
ERRORS+= Fatal: only one FLAVOR may be set
|
|
.endif
|
|
CFLAGS+= $M
|
|
CXXFLAGS+= $M
|
|
|
|
post-install:
|
|
cd ${PREFIX}/share; mv doc/hyperscan/examples examples/hyperscan
|
|
rmdir ${PREFIX}/share/doc/hyperscan
|
|
.for p in hsbench hscheck patbench pcapscan simplegrep
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${PREFIX}/bin/
|
|
.endfor
|
|
|
|
do-test:
|
|
${WRKBUILD}/bin/unit-hyperscan
|
|
|
|
|
|
MODCMAKE_POLICY_VERSION_OVERRIDE = Yes
|
|
|
|
.include <bsd.port.mk>
|