blob: 205f4a8d32a7802de6120be75abb3dd5a0e6acde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: grep
# Date created: 8 June 1999
# Whom: Sheldon Hearn <sheldonh@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= freegrep
PORTVERSION= 1.1
CATEGORIES= textproc
MASTER_SITES= ftp://ftp.jameshoward.us/pub/howardjp/grep/ \
http://github.com/downloads/howardjp/freegrep/
DISTNAME= grep-${PORTVERSION}
MAINTAINER= jh@jameshoward.us
COMMENT= An implementation of grep(1) under a BSD-friendly license
USE_BZIP2= YES
PLIST_FILES= bin/grep \
bin/egrep \
bin/fgrep \
bin/zgrep \
bin/zegrep \
bin/zfgrep
MAN1= grep.1 egrep.1 fgrep.1 zgrep.1 zegrep.1 zfgrep.1
post-extract:
@(cd ${WRKSRC}; ${RM} -f .depend)
.include <bsd.port.mk>
|