Add the demandoc utility from the mandoc project

This is a modern version of the deroff utility, useful for example to do
spellchecking on manpages
This commit is contained in:
Baptiste Daroussin 2014-11-22 21:11:17 +00:00
parent beb7fbfc0d
commit 2421b90f47
2 changed files with 11 additions and 0 deletions

View File

@ -35,6 +35,7 @@ SUBDIR= alias \
csplit \
ctlstat \
cut \
demandoc \
dirname \
dpv \
du \

10
usr.bin/demandoc/Makefile Normal file
View File

@ -0,0 +1,10 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../contrib/mdocml
PROG= demandoc
LDADD= ${LDMANDOC}
DPADD= ${LIBMANDOC}
.include <bsd.prog.mk>