Date: Sat, 23 Apr 2016 18:39:05 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413899 - in head/net: . ipdecap Message-ID: <201604231839.u3NId5fs074253@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sat Apr 23 18:39:04 2016 New Revision: 413899 URL: https://svnweb.freebsd.org/changeset/ports/413899 Log: New port: net/ipdecap Decapsulate traffic encapsulated within GRE, IPIP, 6in4 and ESP protocols from a pcap file. Can also remove IEEE 802.1Q (virtual lan - vlan) header. WWW: https://loicpefferkorn.net/ipdecap/ PR: 208993 Submitted by: Loic Pefferkorn <loic-freebsd@loicp.eu> Added: head/net/ipdecap/ head/net/ipdecap/Makefile (contents, props changed) head/net/ipdecap/distinfo (contents, props changed) head/net/ipdecap/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Apr 23 18:25:50 2016 (r413898) +++ head/net/Makefile Sat Apr 23 18:39:04 2016 (r413899) @@ -252,6 +252,7 @@ SUBDIR += iodine SUBDIR += ip2location SUBDIR += ip6_int + SUBDIR += ipdecap SUBDIR += ipgrab SUBDIR += iplog SUBDIR += ipsorc Added: head/net/ipdecap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ipdecap/Makefile Sat Apr 23 18:39:04 2016 (r413899) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= ipdecap +PORTVERSION= 0.7.1 +CATEGORIES= net + +MAINTAINER= loic-freebsd@loicp.eu +COMMENT= Decapsulate traffic encapsulated within GRE, IPIP, 6in4, ESP protocols + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${LOCALBASE}/include/pcap/vlan.h:net/libpcap +LIB_DEPENDS= libpcap.so:net/libpcap + +PLIST_FILES= bin/ipdecap\ + man/man1/ipdecap.1.gz + +USE_GITHUB= yes +GH_ACCOUNT= lpefferkorn +GH_TAGNAME= e9c6ba5 + +GNU_CONFIGURE= yes +USES= autoreconf gmake + +regression-test: extract + cd ${WRKSRC}/unit_tests && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check + +.include <bsd.port.mk> Added: head/net/ipdecap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ipdecap/distinfo Sat Apr 23 18:39:04 2016 (r413899) @@ -0,0 +1,2 @@ +SHA256 (lpefferkorn-ipdecap-0.7.1-e9c6ba5_GH0.tar.gz) = 1def11eb0afb0a5fcbc2de045e71b7c82a140b489ca344b6b543050998cea9fd +SIZE (lpefferkorn-ipdecap-0.7.1-e9c6ba5_GH0.tar.gz) = 818781 Added: head/net/ipdecap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ipdecap/pkg-descr Sat Apr 23 18:39:04 2016 (r413899) @@ -0,0 +1,6 @@ +Decapsulate traffic encapsulated within GRE, IPIP, 6in4 and ESP protocols +from a pcap file. + +Can also remove IEEE 802.1Q (virtual lan - vlan) header. + +WWW: https://loicpefferkorn.net/ipdecap/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604231839.u3NId5fs074253>