mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
51 lines
987 B
Makefile
51 lines
987 B
Makefile
# New ports collection makefile for: ipsumdump
|
|
# Date created: 12.01.2004
|
|
# Whom: krion@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ipsumdump
|
|
PORTVERSION= 1.78
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.cs.ucla.edu/~kohler/ipsumdump/ \
|
|
http://core.inec.ru/~az/
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Produce ASCII summary of network traffic or tcpdump(1) file
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_PERL5_BUILD=yes
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= ${PORTNAME}.1 ipaggcreate.1 ipaggmanip.1
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= bin/ipaggcreate bin/ipsumdump bin/ipaggmanip
|
|
|
|
OPTIONS= IPV6 "IPv6 internet support" off \
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_IPV6)
|
|
CONFIGURE_ARGS+=--enable-ipv6
|
|
PLIST_SUB+= IPV6=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-ipv6
|
|
PLIST_SUB+= IPV6="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 700000
|
|
IGNORE= not supported
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|