diff options
author | edwin <edwin@FreeBSD.org> | 2004-02-28 19:21:56 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-02-28 19:21:56 +0800 |
commit | bb4498df85810fc9bf6e611d349523ed560eccf4 (patch) | |
tree | 92ca71f6c2f966fb4fd515d1c647beaa69f7a9e4 /net/ngrep/Makefile | |
parent | 247a03d8d7b66451f4a94fcda2730d22a1f31625 (diff) | |
download | freebsd-ports-gnome-bb4498df85810fc9bf6e611d349523ed560eccf4.tar.gz freebsd-ports-gnome-bb4498df85810fc9bf6e611d349523ed560eccf4.tar.zst freebsd-ports-gnome-bb4498df85810fc9bf6e611d349523ed560eccf4.zip |
Fix problems which where there during running of the program:
- checked on 4.8
- checked on 5.2.1 with standard libpcap
- checked on 5.2.1 with net/libpcap
Commands checked:
- ngrep -d fxp1
- ngrep -d fxp1 port 80
- ngrep -d fxp1 GET port 80
Diffstat (limited to 'net/ngrep/Makefile')
-rw-r--r-- | net/ngrep/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/ngrep/Makefile b/net/ngrep/Makefile index 5b4b981985b1..570c5fefc128 100644 --- a/net/ngrep/Makefile +++ b/net/ngrep/Makefile @@ -8,7 +8,7 @@ PORTNAME= ngrep PORTVERSION= 1.40.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -18,18 +18,16 @@ COMMENT= Network grep WRKSRC= ${WRKDIR}/ngrep GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-pcre --with-restart +CONFIGURE_ARGS= --with-pcre --without-restart ALL_TARGET= ngrep + MAN8= ngrep.8 +PLIST_FILES= bin/ngrep PORTDOCS= BUGS CHANGES README README.pcre USAGE .include <bsd.port.pre.mk> -.if ${OSVERSION} > 501110 -EXTRA_PATCHES= ${PATCHDIR}/patch5-configure ${PATCHDIR}/patch5-ngrep -.endif - post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |