aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-09-23 21:57:10 +0000
committerLexi Winter <ivy@FreeBSD.org>2025-09-23 22:06:33 +0000
commit49e44e06d1ade850cff5e84bf8c5fc425e4411c8 (patch)
treec245b019831141e9e7870c2ffb434868fea55a9f
parentab50101456cded4c9d86065dd59d91c601445d91 (diff)
man7: Move atf.7 and tests.7 to the right package
atf.7 should be in -atf, and tests.7 should be in -tests. MFC after: 1 day Differential Revision: https://reviews.freebsd.org/D52661
-rw-r--r--share/man/man7/Makefile18
1 files changed, 13 insertions, 5 deletions
diff --git a/share/man/man7/Makefile b/share/man/man7/Makefile
index 1e50242a1754..ef8a5a555a07 100644
--- a/share/man/man7/Makefile
+++ b/share/man/man7/Makefile
@@ -1,5 +1,7 @@
.include <src.opts.mk>
+MANGROUPS= MAN
+
#MISSING: eqnchar.7 ms.7 term.7
MAN= arch.7 \
ascii.7 \
@@ -31,7 +33,6 @@ MAN= arch.7 \
stats.7 \
stdint.7 \
sticky.7 \
- tests.7 \
tracing.7 \
tuning.7
@@ -54,14 +55,21 @@ MLINKS+= networking.7 wifi.7
.endif
.if ${MK_TESTS} != "no"
-ATF= ${SRCTOP}/contrib/atf
-.PATH: ${ATF}/doc
-MAN+= atf.7
+MANGROUPS+= ATF TESTS
+
+TESTS= tests.7
+TESTSPACKAGE= tests
+
+ATF= atf.7
+ATFPACKAGE= atf
+
+ATFPATH= ${SRCTOP}/contrib/atf
+.PATH: ${ATFPATH}/doc
CLEANFILES+= atf.7
atf.7: atf.7.in
sed -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
- <"${ATF}/doc/atf.7.in" >atf.7
+ <"${ATFPATH}/doc/atf.7.in" >atf.7
.endif
.include <bsd.prog.mk>