16af3a52a3
* Moved to sourceforge * UNIX: Now ngrep compiles with the GPL'd GNU regex library, or the more license-friendly PCRE library under the Artistic License * UNIX: Recognition of window size changes Annoyed when you maximize your term program and ngrep doesn't take advantage of all the new space? Now ngrep catches the change when in a non-hexadecimal display mode and adjusts the output accordingly. * Minor bugfix in time printing with -t When run with the '-t' option, ngrep would display the previous month as the current date.
26 lines
533 B
Makefile
26 lines
533 B
Makefile
# $NetBSD: Makefile,v 1.6 2001/03/05 14:39:08 hubertf Exp $
|
|
#
|
|
|
|
DISTNAME= ngrep-1.39
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ngrep/}
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
HOMEPAGE= http://ngrep.sourceforge.net/
|
|
COMMENT= network grep
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-pcre
|
|
WRKSRC= ${WRKDIR}/ngrep
|
|
ALL_TARGET= ngrep
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "SunOS"
|
|
DEPENDS+= libpcap-0.4:../../net/libpcap
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}; ./configure --prefix=${PREFIX}
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|