diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-06-14 06:39:19 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-06-14 06:39:19 +0000 |
commit | ade3e4bc25324918fd6f75e1288472575eeca1ef (patch) | |
tree | 6098262ab24af46dad5bae9d4a43b6636536a40b /textproc | |
parent | c24cc36a410fcf825dbcd4d414206eaa99cba779 (diff) | |
download | FreeBSD-ports-ade3e4bc25324918fd6f75e1288472575eeca1ef.zip FreeBSD-ports-ade3e4bc25324918fd6f75e1288472575eeca1ef.tar.gz |
add txt2man
Converts flat ASCII text to man page format
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/txt2man/Makefile | 23 | ||||
-rw-r--r-- | textproc/txt2man/distinfo | 1 | ||||
-rw-r--r-- | textproc/txt2man/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/txt2man/pkg-descr | 7 | ||||
-rw-r--r-- | textproc/txt2man/pkg-plist | 1 |
6 files changed, 34 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index ed8a6ba..adb48e9 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -177,6 +177,7 @@ SUBDIR += tkdiff SUBDIR += tth SUBDIR += txt2html + SUBDIR += txt2man SUBDIR += ua-ispell SUBDIR += unroff SUBDIR += urlview diff --git a/textproc/txt2man/Makefile b/textproc/txt2man/Makefile new file mode 100644 index 0000000..a23de98 --- /dev/null +++ b/textproc/txt2man/Makefile @@ -0,0 +1,23 @@ +# ex:ts=8 +# New ports collection makefile for: txt2man +# Date created: Jun 14, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= txt2man +PORTVERSION= 1.4.1 +CATEGORIES= textproc +MASTER_SITES= http://mvertes.free.fr/download/ + +MAINTAINER= ijliao@FreeBSD.org + +ALL_TARGET= txt2man.1 + +MAN1= txt2man.1 + +post-patch: + @${PERL} -pi -e "s,/usr/local,${PREFIX},g" ${WRKSRC}/Makefile + +.include <bsd.port.mk> diff --git a/textproc/txt2man/distinfo b/textproc/txt2man/distinfo new file mode 100644 index 0000000..a24f5a7 --- /dev/null +++ b/textproc/txt2man/distinfo @@ -0,0 +1 @@ +MD5 (txt2man-1.4.1.tar.gz) = 9a9bee48f4304208d98cf61542760fb3 diff --git a/textproc/txt2man/pkg-comment b/textproc/txt2man/pkg-comment new file mode 100644 index 0000000..b232919 --- /dev/null +++ b/textproc/txt2man/pkg-comment @@ -0,0 +1 @@ +Converts flat ASCII text to man page format diff --git a/textproc/txt2man/pkg-descr b/textproc/txt2man/pkg-descr new file mode 100644 index 0000000..304a23d --- /dev/null +++ b/textproc/txt2man/pkg-descr @@ -0,0 +1,7 @@ +txt2man converts the input text into nroff commands using man(7) macros for +man pages. Smart argument processing is available either for commands using +"-" sign for flags (including long options used in GNU tools). If ifile is +omitted, standard input is taken as argument. Result is displayed on standard +output. + +WWW: http://mvertes.free.fr/ diff --git a/textproc/txt2man/pkg-plist b/textproc/txt2man/pkg-plist new file mode 100644 index 0000000..df01b15 --- /dev/null +++ b/textproc/txt2man/pkg-plist @@ -0,0 +1 @@ +bin/txt2man |