Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2014 21:11:17 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274895 - in head/usr.bin: . demandoc
Message-ID:  <201411222111.sAMLBHgL002676@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat Nov 22 21:11:17 2014
New Revision: 274895
URL: https://svnweb.freebsd.org/changeset/base/274895

Log:
  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

Added:
  head/usr.bin/demandoc/
  head/usr.bin/demandoc/Makefile   (contents, props changed)
Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Sat Nov 22 21:03:05 2014	(r274894)
+++ head/usr.bin/Makefile	Sat Nov 22 21:11:17 2014	(r274895)
@@ -35,6 +35,7 @@ SUBDIR=	alias \
 	csplit \
 	ctlstat \
 	cut \
+	demandoc \
 	dirname \
 	dpv \
 	du \

Added: head/usr.bin/demandoc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/demandoc/Makefile	Sat Nov 22 21:11:17 2014	(r274895)
@@ -0,0 +1,10 @@
+# $FreeBSD$
+
+.PATH:	${.CURDIR}/../../contrib/mdocml
+
+PROG=	demandoc
+
+LDADD=	${LDMANDOC}
+DPADD=	${LIBMANDOC}
+
+.include <bsd.prog.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411222111.sAMLBHgL002676>