diff options
author | gabor <gabor@FreeBSD.org> | 2007-06-20 05:18:28 +0800 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2007-06-20 05:18:28 +0800 |
commit | 9be00a4a5694dd983a3d1c3c168a5f0ccac63c1c (patch) | |
tree | c71c177f6f7dbc4728efb006fd7efa20d21af40c /textproc | |
parent | 818cd224971b6debd72bda061e12d5b402d84893 (diff) | |
download | freebsd-ports-gnome-9be00a4a5694dd983a3d1c3c168a5f0ccac63c1c.tar.gz freebsd-ports-gnome-9be00a4a5694dd983a3d1c3c168a5f0ccac63c1c.tar.zst freebsd-ports-gnome-9be00a4a5694dd983a3d1c3c168a5f0ccac63c1c.zip |
This is the BSD-licensed version of the well-known diff utility, obtained from
OpenBSD. It lacks some features of GNU diff. It is a proposed project idea
to replace the GNU diff with this one, but it needs to be completed first.
Patches are highly appreciated.
WWW: http://www.freebsd.org/projects/ideas/#p-bsdtexttools
Obtained from: OpenBSD
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/bsddiff/Makefile | 26 | ||||
-rw-r--r-- | textproc/bsddiff/distinfo | 3 | ||||
-rw-r--r-- | textproc/bsddiff/pkg-descr | 6 |
4 files changed, 36 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index db6aeccbd77b..96836605a055 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -35,6 +35,7 @@ SUBDIR += bn-aspell SUBDIR += br-aspell SUBDIR += british-ispell + SUBDIR += bsddiff SUBDIR += btparse SUBDIR += c2html SUBDIR += ca-aspell diff --git a/textproc/bsddiff/Makefile b/textproc/bsddiff/Makefile new file mode 100644 index 000000000000..24ee5f42058d --- /dev/null +++ b/textproc/bsddiff/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: bsd-diff +# Date created: 12 Juni 2007 +# Whom: Gabor Kovesdan <gabor@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= diff +PORTVERSION= 20070612 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= gabor +PKGNAMEPREFIX= bsd- + +MAINTAINER= gabor@FreeBSD.org +COMMENT= BSD-licensed version of diff from OpenBSD + +MANCOMPRESSED= yes +MAN1= diff.1 +PLIST_FILES= bin/diff + +MAKE_ENV+= BINDIR="${PREFIX}/bin" \ + MANDIR="${MANPREFIX}/man/man" \ + CATDIR="${MANPREFIX}/man/man" + +.include <bsd.port.mk> diff --git a/textproc/bsddiff/distinfo b/textproc/bsddiff/distinfo new file mode 100644 index 000000000000..d7658eaefa72 --- /dev/null +++ b/textproc/bsddiff/distinfo @@ -0,0 +1,3 @@ +MD5 (diff-20070612.tar.gz) = 18a3cb2d9c6554db3aa83c44e347cce1 +SHA256 (diff-20070612.tar.gz) = 88188431ddd7dc50a79366dbead10f8ad70c6e20b04306d5982ce94153feb906 +SIZE (diff-20070612.tar.gz) = 22808 diff --git a/textproc/bsddiff/pkg-descr b/textproc/bsddiff/pkg-descr new file mode 100644 index 000000000000..46b2b14c3f13 --- /dev/null +++ b/textproc/bsddiff/pkg-descr @@ -0,0 +1,6 @@ +This is the BSD-licensed version of the well-known diff utility, obtained from +OpenBSD. It lacks some features of GNU diff. It is a proposed project idea +to replace the GNU diff with this one, but it needs to be completed first. +Patches are highly appreciated. + +WWW: http://www.freebsd.org/projects/ideas/#p-bsdtexttools |