blob: ba485ad359780c0a83050b564f52a37aaca797a9 (
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
|
# New ports collection makefile for: libpcapnav
# Date created: 2004-04-23
# Whom: Yann Berthier <yb@sainte-barbe.org>
#
# $FreeBSD$
#
PORTNAME= libpcapnav
PORTVERSION= 0.8
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= netdude
MAINTAINER= brenton.chang@gmail.com
COMMENT= A libpcap wrapper library
USE_AUTOTOOLS= libtool:22
CONFIGURE_ARGS= --disable-gtk-doc --with-html-dir=${DOCSDIR}
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
post-patch:
@${REINPLACE_CMD} -e 's|DOC_MODULE = pcapnav|DOC_MODULE =|' \
${WRKSRC}/docs/Makefile.in
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e 's|docs||' ${WRKSRC}/Makefile.in
.endif
.include <bsd.port.mk>
|