diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-07-08 13:32:01 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-07-08 13:32:01 +0000 |
commit | b5b692f10c64cc2944f2f9ae81fcdf962a243746 (patch) | |
tree | bf0f245cedf18911be037e975e3e0fdc9bea35d6 /textproc/freegrep | |
parent | Do not link with the termcap library - mshell would segfault. (diff) |
Import Jamie Howard's grep(1) implementation under BSD-friendly license
agreement. Severl developers are keen to see this brought into the
base system to replace GNU grep. When that happens, this port can go
away.
Notes
Notes:
svn path=/head/; revision=20123
Diffstat (limited to 'textproc/freegrep')
-rw-r--r-- | textproc/freegrep/Makefile | 20 | ||||
-rw-r--r-- | textproc/freegrep/distinfo | 1 | ||||
-rw-r--r-- | textproc/freegrep/files/patch-aa | 13 | ||||
-rw-r--r-- | textproc/freegrep/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/freegrep/pkg-descr | 3 | ||||
-rw-r--r-- | textproc/freegrep/pkg-plist | 4 |
6 files changed, 42 insertions, 0 deletions
diff --git a/textproc/freegrep/Makefile b/textproc/freegrep/Makefile new file mode 100644 index 000000000000..b31412829f79 --- /dev/null +++ b/textproc/freegrep/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: grep +# Version required: 0.3 +# Date created: 8 June 1999 +# Whom: Sheldon Hearn <sheldonh@freebsd.org> +# +# $Id$ +# + +DISTNAME= grep-0.3 +PKGNAME= freegrep-0.3 +CATEGORIES= textproc +MASTER_SITES= ftp://dragon.ham.muohio.edu/pub/howardjp/ \ + ftp://ftp.wam.umd.edu/pub/howardjp/ \ + ftp://ftp.ofug.org/pub/grep/ + +MAINTAINER= howardjp@wam.umd.edu + +MAN1= grep.1 egrep.1 fgrep.1 zgrep.1 + +.include <bsd.port.mk> diff --git a/textproc/freegrep/distinfo b/textproc/freegrep/distinfo new file mode 100644 index 000000000000..b81b271b0df0 --- /dev/null +++ b/textproc/freegrep/distinfo @@ -0,0 +1 @@ +MD5 (grep-0.3.tar.gz) = 111f30bd5f29581b66e12248fda01c22 diff --git a/textproc/freegrep/files/patch-aa b/textproc/freegrep/files/patch-aa new file mode 100644 index 000000000000..304c7b194eff --- /dev/null +++ b/textproc/freegrep/files/patch-aa @@ -0,0 +1,13 @@ +--- Makefile.orig Mon Jul 5 22:01:43 1999 ++++ Makefile Thu Jul 8 15:07:45 1999 +@@ -1,5 +1,10 @@ + # $Id$ + ++DESTDIR= ${PREFIX} ++BINDIR= /bin ++MANDIR= /man/man ++NOMANCOMPRESS= 1 ++ + PROG= grep + SRCS= binary.c grep.c util.c + LINKS= ${BINDIR}/grep ${BINDIR}/egrep \ diff --git a/textproc/freegrep/pkg-comment b/textproc/freegrep/pkg-comment new file mode 100644 index 000000000000..6d14f0504f14 --- /dev/null +++ b/textproc/freegrep/pkg-comment @@ -0,0 +1 @@ +An implementation of grep(1) under a BSD-friendly license diff --git a/textproc/freegrep/pkg-descr b/textproc/freegrep/pkg-descr new file mode 100644 index 000000000000..2a7a2ebbfc24 --- /dev/null +++ b/textproc/freegrep/pkg-descr @@ -0,0 +1,3 @@ +This is an implementation of grep(1) intended as a replacement for +FreeBSD's GNU grep. GNU grep falls under GPL, while this implementation +is under a BSD-friendly licence. diff --git a/textproc/freegrep/pkg-plist b/textproc/freegrep/pkg-plist new file mode 100644 index 000000000000..2dbc17548819 --- /dev/null +++ b/textproc/freegrep/pkg-plist @@ -0,0 +1,4 @@ +bin/grep +bin/egrep +bin/fgrep +bin/zgrep |