mirror of
https://github.com/opnsense/src.git
synced 2026-06-18 04:59:34 -04:00
This library only installs manual pages, so putting it in its own package means we build a FreeBSD-libutil++-man package but not a base FreeBSD-libutil++ package. Without a base package, the man package can't be installed due to the missing dependency. We don't really need a separate package for a few manpages, so move it to clibs. Reviewed by: des Differential Revision: https://reviews.freebsd.org/D51756
20 lines
332 B
Makefile
20 lines
332 B
Makefile
PACKAGE= clibs
|
|
LIB_CXX= util++
|
|
INTERNALLIB= true
|
|
SHLIB_MAJOR= 1
|
|
SRCS= stringf.cc
|
|
|
|
MAN+= freebsd::FILE_up.3 \
|
|
freebsd::addrinfo_up.3 \
|
|
freebsd::fd_up.3 \
|
|
freebsd::malloc_up.3 \
|
|
freebsd::nvlist_up.3 \
|
|
freebsd::pidfile.3 \
|
|
freebsd::stringf.3
|
|
|
|
.include <src.opts.mk>
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.lib.mk>
|