diff options
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/pod2mdoc/Makefile | 23 | ||||
-rw-r--r-- | textproc/pod2mdoc/distinfo | 2 | ||||
-rw-r--r-- | textproc/pod2mdoc/pkg-descr | 6 |
4 files changed, 32 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 89c76f34052b..b0b614e1df9c 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1142,6 +1142,7 @@ SUBDIR += plover SUBDIR += po4a SUBDIR += pocketreader + SUBDIR += pod2mdoc SUBDIR += popup SUBDIR += popup-stacks SUBDIR += ppower4 diff --git a/textproc/pod2mdoc/Makefile b/textproc/pod2mdoc/Makefile new file mode 100644 index 000000000000..832985f6d736 --- /dev/null +++ b/textproc/pod2mdoc/Makefile @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= pod2mdoc +PORTVERSION= 0.1 +CATEGORIES= textproc +MASTER_SITES= http://mdocml.bsd.lv/pod2mdoc/snapshots/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Convert POD data to mdoc input + +LICENSE= ISCL + +USES= tar:tgz +ALL_TARGET= pod2mdoc + +PLIST_FILES= bin/pod2mdoc \ + man/man1/pod2mdoc.1.gz + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pod2mdoc ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/pod2mdoc.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/textproc/pod2mdoc/distinfo b/textproc/pod2mdoc/distinfo new file mode 100644 index 000000000000..837ab12effda --- /dev/null +++ b/textproc/pod2mdoc/distinfo @@ -0,0 +1,2 @@ +SHA256 (pod2mdoc-0.1.tgz) = ebde31b464356529f8fd04e87b5cd520d8a96710feb212c7a9b0029de35a8015 +SIZE (pod2mdoc-0.1.tgz) = 14674 diff --git a/textproc/pod2mdoc/pkg-descr b/textproc/pod2mdoc/pkg-descr new file mode 100644 index 000000000000..91a5c75e3085 --- /dev/null +++ b/textproc/pod2mdoc/pkg-descr @@ -0,0 +1,6 @@ +The pod2mdoc utility is a converter from POD into mdoc. It's meant to operate +like pod2man; however, it doesn't require a Perl installation: pod2mdoc is a +standalone ISC-licensed ISO C utility and should compile on any modern UNIX +system. + +WWW: http://mdocml.bsd.lv/pod2mdoc/ |