From owner-svn-ports-head@freebsd.org Sat Apr 23 18:39:06 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CACBB1ABB0; Sat, 23 Apr 2016 18:39:06 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F8A11D67; Sat, 23 Apr 2016 18:39:06 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3NId5Qp074257; Sat, 23 Apr 2016 18:39:05 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NId5fs074253; Sat, 23 Apr 2016 18:39:05 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604231839.u3NId5fs074253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 23 Apr 2016 18:39:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413899 - in head/net: . ipdecap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Apr 2016 18:39:06 -0000 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 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 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/