diff options
author | adam <adam@pkgsrc.org> | 2004-04-13 13:50:05 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-04-13 13:50:05 +0000 |
commit | 4783b0fcc756e9811c23657b7511a54ca007f087 (patch) | |
tree | 5f14540ef6817aba4a2ded2920b74e070d90a21a /net/ngrep/Makefile | |
parent | b00d36f3b6c1d19f015d58d570ae57617fa01c77 (diff) | |
download | pkgsrc-4783b0fcc756e9811c23657b7511a54ca007f087.tar.gz |
Changes 1.42:
* rewrote the entire configure.in/config.h.in to autoconf 2.57
to be more consistent with normal autoconf'd programs.
corrects bugs around packaging impediments and typos.
* improved privilege dropping code and added more options to
configure to govern its behaviour
* added flag to turn off privilege revocation logic
* added multiline match as default and ability to enforce
previous default single-line match (bugfix + feature)
* added ability to read bpf filter expression from file
* added ability to force the column width to a certain size
* added two new output modes: ``byline'', whose output
respects embedded carriage returns (useful for http dumps),
and ``none'', which prints out each dump as a single line no
matter what.
* added ability to specify alternate nonprintable character
(default is ``.'').
* made ``-q'' effects more consistent and usable for scenarios
where ``-I'' and/or ``-O'' are being employed
* documentation updated
Diffstat (limited to 'net/ngrep/Makefile')
-rw-r--r-- | net/ngrep/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ngrep/Makefile b/net/ngrep/Makefile index fabdb8ae845..c146e06c0e0 100644 --- a/net/ngrep/Makefile +++ b/net/ngrep/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2004/01/30 14:36:09 adam Exp $ +# $NetBSD: Makefile,v 1.15 2004/04/13 13:50:05 adam Exp $ # -DISTNAME= ngrep-1.41 +DISTNAME= ngrep-1.42 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ngrep/} EXTRACT_SUFX= .tar.bz2 @@ -10,7 +10,7 @@ MAINTAINER= hubertf@NetBSD.org HOMEPAGE= http://ngrep.sourceforge.net/ COMMENT= Network grep -USE_BUILDLINK2= yes +USE_BUILDLINK3= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-pcre # ngrep's configure use --includedir/$includedir in a weird way! @@ -24,5 +24,5 @@ do-configure: cd ${WRKSRC}; ./configure --prefix=${PREFIX} .endif -.include "../../net/libpcap/buildlink2.mk" +.include "../../net/libpcap/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |