summaryrefslogtreecommitdiff
path: root/usr.bin/man
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-05-30 17:41:37 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-05-30 17:41:37 +0000
commit8faa40d1a0ff1956fe7c3d857bf5bcba2272a9d1 (patch)
treee1acd6b92dd5579ff70cbe33a2e9d5c34def606a /usr.bin/man
parentb1621f22b3de227d332ebd27d7905d2f6483fa0e (diff)
downloadsrc-test-8faa40d1a0ff1956fe7c3d857bf5bcba2272a9d1.tar.gz
src-test-8faa40d1a0ff1956fe7c3d857bf5bcba2272a9d1.zip
Switch to mandoc's version of makewhatis(8), whatis(1), apropos(1) utilities.
This change among other things improve search capabilities over the manpages allowing fine grain query. A new build option WITHOUT_MANDOCDB has been added to keep the ancient version of the database and the tools. The plan is to entirely remove this option before 11.0-RELEASE. Differential Revision: https://reviews.freebsd.org/D2603
Notes
Notes: svn path=/head/; revision=283777
Diffstat (limited to 'usr.bin/man')
-rw-r--r--usr.bin/man/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/usr.bin/man/Makefile b/usr.bin/man/Makefile
index 3e37b596ef643..7057b2e70ddbe 100644
--- a/usr.bin/man/Makefile
+++ b/usr.bin/man/Makefile
@@ -1,11 +1,17 @@
# $FreeBSD$
+.include <src.opts.mk>
+
SCRIPTS= man.sh
-LINKS= ${BINDIR}/man ${BINDIR}/apropos \
- ${BINDIR}/man ${BINDIR}/manpath \
- ${BINDIR}/man ${BINDIR}/whatis
+LINKS= ${BINDIR}/man ${BINDIR}/manpath
-MAN= man.1 manpath.1 apropos.1 man.conf.5
+MAN= man.1 manpath.1 man.conf.5
+
+.if ${MK_MANDOCDB} == no
+LINKS+= ${BINDIR}/man ${BINDIR}/apropos \
+ ${BINDIR}/man ${BINDIR}/whatis
+MAN+= apropos.1
MLINKS= apropos.1 whatis.1
+.endif
.include <bsd.prog.mk>