diff options
author | pav <pav@FreeBSD.org> | 2004-11-13 03:02:57 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-11-13 03:02:57 +0800 |
commit | e030d4bd7bcf64cea9c4d15541f10e9d9b53c15a (patch) | |
tree | 7d3fc5399d03078bc7af3d9385ad8acda99140b3 | |
parent | b77e0b88b771b349f65d5ca1afbe0dc937dd2562 (diff) | |
download | freebsd-ports-gnome-e030d4bd7bcf64cea9c4d15541f10e9d9b53c15a.tar.gz freebsd-ports-gnome-e030d4bd7bcf64cea9c4d15541f10e9d9b53c15a.tar.zst freebsd-ports-gnome-e030d4bd7bcf64cea9c4d15541f10e9d9b53c15a.zip |
The purpose of this program is to compare two versions of an
Internet Draft and as output produce a diff in one of several
formats:
- side-by-side html diff
- paged wdiff output in a text terminal
- a text file with changebars in the left margin
- a simple unified diff output
In all cases, internet-draft headers and footers are stripped before
generating the diff, to produce a cleaner diff.
PR: ports/73836
Submitted by: Lars Eggert <lars.eggert@gmx.net>
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rfcdiff/Makefile | 28 | ||||
-rw-r--r-- | textproc/rfcdiff/distinfo | 2 | ||||
-rw-r--r-- | textproc/rfcdiff/pkg-descr | 13 |
4 files changed, 44 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 49919fd3f471..734e6202ebcc 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -520,6 +520,7 @@ SUBDIR += redland SUBDIR += replaceit SUBDIR += resume + SUBDIR += rfcdiff SUBDIR += rl SUBDIR += rman SUBDIR += ro-aspell diff --git a/textproc/rfcdiff/Makefile b/textproc/rfcdiff/Makefile new file mode 100644 index 000000000000..30d5ec470c66 --- /dev/null +++ b/textproc/rfcdiff/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: rfcdiff +# Date Created: 11 November 2004 +# Whom: lars.eggert@gmx.net +# +# $FreeBSD$ + +PORTNAME= rfcdiff +PORTVERSION= 1.16 +CATEGORIES= textproc +MASTER_SITES= http://ietf.levkowetz.com/tools/${PORTNAME}/ +DISTNAME= ${PORTNAME}-v${PORTVERSION} +EXTRACT_SUFX= + +MAINTAINER= lars.eggert@gmx.net +COMMENT= Compare two versions of an Internet Draft and produce a diff + +EXTRACT_CMD= ${CP} +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= ${WRKSRC} +NO_WRKSUBDIR= YES +NO_BUILD= YES + +PLIST_FILES= bin/rfcdiff + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/textproc/rfcdiff/distinfo b/textproc/rfcdiff/distinfo new file mode 100644 index 000000000000..2ec2e2c86ba8 --- /dev/null +++ b/textproc/rfcdiff/distinfo @@ -0,0 +1,2 @@ +MD5 (rfcdiff-v1.16) = 23d51cf5bd8a4d130f47976883e7a139 +SIZE (rfcdiff-v1.16) = 30925 diff --git a/textproc/rfcdiff/pkg-descr b/textproc/rfcdiff/pkg-descr new file mode 100644 index 000000000000..8dfb162f4cab --- /dev/null +++ b/textproc/rfcdiff/pkg-descr @@ -0,0 +1,13 @@ +The purpose of this program is to compare two versions of an +Internet Draft and as output produce a diff in one of several +formats: + + - side-by-side html diff + - paged wdiff output in a text terminal + - a text file with changebars in the left margin + - a simple unified diff output + +In all cases, internet-draft headers and footers are stripped before +generating the diff, to produce a cleaner diff. + +WWW: http://www.levkowetz.com/ietf/tools/rfcdiff |