blob: c36e527e6e99c2cae1ed7756843939e2f9c8b7dc (
plain)
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
|
# $NetBSD: Makefile,v 1.11 2003/07/17 22:51:27 grant Exp $
#
DISTNAME= ngrep-1.39
WRKSRC= ${WRKDIR}/ngrep
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ngrep/}
MAINTAINER= hubertf@NetBSD.org
HOMEPAGE= http://ngrep.sourceforge.net/
COMMENT= network grep
USE_BUILDLINK2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-pcre
# ngrep's configure use --includedir/$includedir in a weird way!
CONFIGURE_ARGS+=--includedir=${BUILDLINK_PREFIX.libpcap}/include
ALL_TARGET= ngrep
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS" || ${OPSYS} == "Linux"
do-configure:
cd ${WRKSRC}; ./configure --prefix=${PREFIX}
.endif
.include "../../net/libpcap/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|