diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-24 05:51:58 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-24 05:51:58 +0800 |
commit | d5c7fbb4c0df1df5040be5b6d2ace048c68075a0 (patch) | |
tree | 4f6fe847fcc5880b9c36512014b117f87fccda33 /textproc | |
parent | 4ba3358508d0f1e0a897cd450da0251c7731de65 (diff) | |
download | freebsd-ports-gnome-d5c7fbb4c0df1df5040be5b6d2ace048c68075a0.tar.gz freebsd-ports-gnome-d5c7fbb4c0df1df5040be5b6d2ace048c68075a0.tar.zst freebsd-ports-gnome-d5c7fbb4c0df1df5040be5b6d2ace048c68075a0.zip |
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/
Diffstat (limited to 'textproc')
-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/ |