mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
ipsectrace is a simple utility designed to profile the
ipsec traffic (esp and ah) in a pcap capture file. It is somewhat inspired by tcptrace. PR: ports/105137 Submitted by: self Approved by: miwi (mentor)
This commit is contained in:
parent
330a0dc033
commit
80592de31a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=176833
@ -73,6 +73,7 @@
|
||||
SUBDIR += ipcalc
|
||||
SUBDIR += ipfm
|
||||
SUBDIR += ipplan
|
||||
SUBDIR += ipsectrace
|
||||
SUBDIR += ipv6calc
|
||||
SUBDIR += ipv6gen
|
||||
SUBDIR += irrtoolset
|
||||
|
35
net-mgmt/ipsectrace/Makefile
Normal file
35
net-mgmt/ipsectrace/Makefile
Normal file
@ -0,0 +1,35 @@
|
||||
# New ports collection makefile for: ipsectrace
|
||||
# Date created: 2006-11-04
|
||||
# Whom: Babak Farrokhi <babak@farrokhi.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ipsectrace
|
||||
PORTVERSION= 0.1.0
|
||||
CATEGORIES= net-mgmt security
|
||||
MASTER_SITES= http://chewies.net/ \
|
||||
http://farrokhi.net/distfiles/
|
||||
|
||||
MAINTAINER= farrokhi@FreeBSD.org
|
||||
COMMENT= IPSEC Traffic Profiler
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS} -Wno-deprecated" \
|
||||
LDFLAGS="${LDFLAGS} -lpcap" INCLUDES="${INCLUDES}"
|
||||
PLIST_FILES= bin/ipsectrace
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's,-O2,,g' ${WRKSRC}/Makefile
|
||||
@${REINPLACE_CMD} -e 's,<hash_map>,<hash_map.h>,g' ${WRKSRC}/ipsectrace.h
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/ipsectrace ${PREFIX}/bin/ipsectrace
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 600032
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
net-mgmt/ipsectrace/distinfo
Normal file
3
net-mgmt/ipsectrace/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (ipsectrace-0.1.0.tar.gz) = d8aa7b8bd918f95386af8d57639de69f
|
||||
SHA256 (ipsectrace-0.1.0.tar.gz) = 90c9511c50bf57428d556b965c436d1e50ad71dc21ee635bd6f8fda9411642d1
|
||||
SIZE (ipsectrace-0.1.0.tar.gz) = 9635
|
5
net-mgmt/ipsectrace/pkg-descr
Normal file
5
net-mgmt/ipsectrace/pkg-descr
Normal file
@ -0,0 +1,5 @@
|
||||
Ipsectrace is a simple utility designed to profile the
|
||||
ipsec traffic (esp and ah) in a pcap capture file.
|
||||
It is somewhat inspired by tcptrace.
|
||||
|
||||
WWW: http://freshmeat.net/projects/ipsectrace/
|
Loading…
Reference in New Issue
Block a user