Remove security/hlfl

WWW is dead, the old hlfl.org is now another project, DESCR doesn't
mention pf, long missing out on updates, unmaintained.

OK benoit
This commit is contained in:
kn 2023-01-28 16:25:12 +00:00
parent b63ff37086
commit 34b56cbb68
3 changed files with 16 additions and 6 deletions

View File

@ -33,6 +33,22 @@ MODCMAKE_INSTALL_TARGET = cd ${WRKBUILD} && exec ${SETENV} ${MAKE_ENV} \
MODCMAKE_TEST_TARGET = cd ${WRKBUILD} && exec ${SETENV} ${ALL_TEST_ENV} \
ctest ${_MAKE_VERBOSE} -j ${MAKE_JOBS}
# Default targets are only known after configure, see cmake-buildsystem(7) and
# cmake-properties(7) BUILDSYSTEM_TARGETS.
# Overrule bsd.port.mk defaults.
ALL_TARGET ?= # empty
INSTALL_TARGET ?= # empty
# Only pass explicitly set targets.
# Do not quote, cmake(1) -t takes multiple target arguments.
.if !empty(ALL_TARGET)
MODCMAKE_BUILD_TARGET += -t ${ALL_TARGET}
.endif
.if !empty(INSTALL_TARGET)
MODCMAKE_INSTALL_TARGET += -t ${INSTALL_TARGET}
.endif
.if !target(do-build)
do-build:
@${MODCMAKE_BUILD_TARGET}

View File

@ -39,9 +39,6 @@ CONFIGURE_ARGS += -DCMAKE_CXX_STANDARD=17
ALL_TARGET = torrent-rasterbar \
python-libtorrent
do-build:
@${MODCMAKE_BUILD_TARGET} -t ${ALL_TARGET}
# build whatever is left (+200 test files)
pre-test:
@${MODCMAKE_BUILD_TARGET}

View File

@ -93,9 +93,6 @@ post-patch:
browser/BrowserSettingsWidget.cpp \
browser/NativeMessageInstaller.cpp
do-build:
@${MODCMAKE_BUILD_TARGET} -t ${ALL_TARGET}
# build whatever is left (ca. 200 GUI test files)
pre-test:
@${MODCMAKE_BUILD_TARGET}