Update to 0.1.6.

PR:		19588
Submitted by:	MAINTAINER
This commit is contained in:
Maxim Sobolev 2000-06-30 09:34:09 +00:00
parent fd1fd13d64
commit 701cbd39d1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=30013
3 changed files with 23 additions and 21 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= freegrep
PORTVERSION= 0.15
PORTVERSION= 0.16
CATEGORIES= textproc
MASTER_SITES= ftp://ftp.wam.umd.edu/pub/howardjp/software/grep/ \
http://www.wam.umd.edu/~howardjp/software/grep/ \
@ -15,11 +15,11 @@ DISTNAME= grep-${PORTVERSION}
MAINTAINER= howardjp@wam.umd.edu
MAN1= grep.1 egrep.1 fgrep.1 zgrep.1
LIB_DEPENDS= iberty.1:${PORTSDIR}/devel/freelibiberty
MAN1= grep.1 egrep.1 fgrep.1 zgrep.1
post-extract:
@(cd ${WRKSRC}; rm -f .depend)
@(cd ${WRKSRC}; ${RM} -f .depend)
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (grep-0.15.tar.gz) = bf23580b815418ccadd80459b13d0d4f
MD5 (grep-0.16.tar.gz) = 403623b26c42159c49216b5eca98b717

View File

@ -1,16 +1,18 @@
*** grep/Makefile.orig Mon Dec 6 12:27:29 1999
--- grep/Makefile Mon Dec 6 12:27:47 1999
***************
*** 9,14 ****
--- 9,19 ----
grep.1 fgrep.1 \
grep.1 zgrep.1
+ DESTDIR= ${PREFIX}
+ BINDIR= /bin
+ MANDIR= /man/man
+ NOMANCOMPRESS= 1
+
CFLAGS+= ${P} -I/usr/local/include -Wall -pedantic
LDADD= -lz -L../regex/ -lregex -L/usr/local/lib/ -liberty
--- Makefile.orig Fri Nov 5 17:28:02 1999
+++ Makefile Fri Jun 30 12:24:05 2000
@@ -9,8 +9,13 @@
grep.1 fgrep.1 \
grep.1 zgrep.1
-CFLAGS+= -I/usr/local/include -Wall -pedantic
+DESTDIR= ${PREFIX}
+BINDIR= /bin
+MANDIR= /man/man
+NOMANCOMPRESS= 1
-LDADD= -lz -L/usr/local/lib/ -liberty
+CFLAGS+= -I${LOCALBASE}/include -Wall -pedantic
+
+LDADD= -lz -L${LOCALBASE}/lib -liberty
.include <bsd.prog.mk>