blob: 042e21d22b2ab3360bb841e169c3da8f7eb7cc32 (
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
29
30
31
|
# $NetBSD: Makefile,v 1.24 2006/03/04 21:30:21 jlam Exp $
DISTNAME= ngrep-1.44
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ngrep/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://ngrep.sourceforge.net/
COMMENT= Network grep
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-pcre
# ngrep's configure use --includedir/$includedir in a weird way!
CONFIGURE_ARGS+= --includedir=${BUILDLINK_PREFIX.libpcap}/include
CONFIGURE_ARGS+= --enable-ipv6
BUILD_TARGET= ngrep
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "FreeBSD"
CONFIGURE_ARGS+= --disable-pcap-restart
.endif
.if ${OPSYS} == "SunOS" || ${OPSYS} == "Linux"
do-configure:
cd ${WRKSRC}; ./configure --prefix=${PREFIX}
.endif
.include "../../net/libpcap/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|