diff options
author | bapt <bapt@FreeBSD.org> | 2015-03-02 19:04:46 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-03-02 19:04:46 +0800 |
commit | a48c473cf54bb0051aad800b004028d7be45d050 (patch) | |
tree | 61bc3e204c319558ca2a232b9656d94c7b4fe034 /textproc | |
parent | ca0e91b651c220e80fa161d0bf72791e1d57cff3 (diff) | |
download | freebsd-ports-gnome-a48c473cf54bb0051aad800b004028d7be45d050.tar.gz freebsd-ports-gnome-a48c473cf54bb0051aad800b004028d7be45d050.tar.zst freebsd-ports-gnome-a48c473cf54bb0051aad800b004028d7be45d050.zip |
The texi2mdoc utility is a converter from Texinfo into mdoc. It is a standalone
ISC-licensed ISO C utility and should compile on any modern UNIX system.
WWW: http://mdocml.bsd.lv/texi2mdoc/
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/texi2mdoc/Makefile | 20 | ||||
-rw-r--r-- | textproc/texi2mdoc/distinfo | 2 | ||||
-rw-r--r-- | textproc/texi2mdoc/pkg-descr | 4 |
4 files changed, 27 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index fbf9b25e801f..ccb709093c38 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1487,6 +1487,7 @@ SUBDIR += tex2im SUBDIR += texi2db SUBDIR += texi2html + SUBDIR += texi2mdoc SUBDIR += textogif SUBDIR += the_silver_searcher SUBDIR += ti-hunspell diff --git a/textproc/texi2mdoc/Makefile b/textproc/texi2mdoc/Makefile new file mode 100644 index 000000000000..c10c72a3331e --- /dev/null +++ b/textproc/texi2mdoc/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= texi2mdoc +PORTVERSION= 0.1.2 +CATEGORIES= textproc +MASTER_SITES= http://mdocml.bsd.lv/texi2mdoc/snapshots/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Convert Texinfo data to mdoc input + +LICENSE= ISCL + +USES= tar:tgz + +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/textproc/texi2mdoc/distinfo b/textproc/texi2mdoc/distinfo new file mode 100644 index 000000000000..29ea9cbcf311 --- /dev/null +++ b/textproc/texi2mdoc/distinfo @@ -0,0 +1,2 @@ +SHA256 (texi2mdoc-0.1.2.tgz) = 7a45fd87c27cc8970a18db9ddddb2f09f18b8dd5152bf0ca377c3a5e7d304bfe +SIZE (texi2mdoc-0.1.2.tgz) = 23101 diff --git a/textproc/texi2mdoc/pkg-descr b/textproc/texi2mdoc/pkg-descr new file mode 100644 index 000000000000..6f610b47ec45 --- /dev/null +++ b/textproc/texi2mdoc/pkg-descr @@ -0,0 +1,4 @@ +The texi2mdoc utility is a converter from Texinfo into mdoc. It is a standalone +ISC-licensed ISO C utility and should compile on any modern UNIX system. + +WWW: http://mdocml.bsd.lv/texi2mdoc/ |