mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
223dd2dcf0
add annotations near COMPILER for some other ports that don't have COMPILER_LIBCXX in WANTLIB not changing the actual compiler version of anything here (some could possibly remove the COMPILER line completely where they only used COMPILER due to an old WANTLIB entry which has since stopped using C++, but changing that is too likely to break things)
34 lines
557 B
Makefile
34 lines
557 B
Makefile
COMMENT = breadth-first version of the UNIX find command
|
|
CATEGORIES = sysutils
|
|
|
|
GH_ACCOUNT = tavianator
|
|
GH_PROJECT = bfs
|
|
GH_TAGNAME = 3.0.4
|
|
REVISION = 0
|
|
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c onig pthread
|
|
|
|
DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
|
|
|
# C17
|
|
COMPILER = base-clang ports-gcc
|
|
COMPILER_LANGS = c
|
|
|
|
LIB_DEPENDS = textproc/oniguruma
|
|
|
|
USE_GMAKE = Yes
|
|
MAKE_FILE = GNUmakefile
|
|
|
|
FAKE_FLAGS = DESTDIR= MANDIR="${DESTDIR}${PREFIX}/man"
|
|
|
|
TEST_DEPENDS = shells/bash
|
|
|
|
TEST_TARGET = check
|
|
|
|
.include <bsd.port.mk>
|