From owner-svn-ports-all@freebsd.org Tue Mar 13 02:10:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA6C1AFB063; Tue, 13 Mar 2018 02:10:46 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BF3680DFB; Tue, 13 Mar 2018 02:10:46 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D1BE13CB9; Tue, 13 Mar 2018 02:10:46 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2D2Akfl073802; Tue, 13 Mar 2018 02:10:46 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2D2AjAc073798; Tue, 13 Mar 2018 02:10:45 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803130210.w2D2AjAc073798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 13 Mar 2018 02:10:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464335 - in head/net: . vether-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/net: . vether-kmod X-SVN-Commit-Revision: 464335 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Mar 2018 02:10:47 -0000 Author: tobik Date: Tue Mar 13 02:10:45 2018 New Revision: 464335 URL: https://svnweb.freebsd.org/changeset/ports/464335 Log: New port: net/vether-kmod The if_vether(4) interface simulates a normal Ethernet interface by encapsulating standard network frames with an Ethernet header, specifically for use as a member of if_bridge(4). WWW: https://github.com/hmatyschok/if_vether PR: 226565 Submitted by: Henning Matyschok Added: head/net/vether-kmod/ head/net/vether-kmod/Makefile (contents, props changed) head/net/vether-kmod/distinfo (contents, props changed) head/net/vether-kmod/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Mar 13 01:33:50 2018 (r464334) +++ head/net/Makefile Tue Mar 13 02:10:45 2018 (r464335) @@ -1448,6 +1448,7 @@ SUBDIR += vblade SUBDIR += vde SUBDIR += vde2 + SUBDIR += vether-kmod SUBDIR += viamillipede SUBDIR += vinagre SUBDIR += vino Added: head/net/vether-kmod/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/vether-kmod/Makefile Tue Mar 13 02:10:45 2018 (r464335) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= vether-kmod +DISTVERSION= g20180312 +CATEGORIES= net + +MAINTAINER= henning.matyschok@outlook.com +COMMENT= Virtual Ethernet Interface + +LICENSE= BSD2CLAUSE ISCL +LICENSE_COMB= multi + +USES= kmod uidfix + +USE_GITHUB= yes +GH_ACCOUNT= hmatyschok +GH_PROJECT= if_vether +GH_TAGNAME= 4cd710c13f51dcba488c8857e7bf938ca4022be7 + +PLIST_FILES= ${KMODDIR}/if_vether.ko \ + man/man4/if_vether.4.gz \ + man/man4/vether.4.gz +WRKSRC_SUBDIR= src + +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/man/man4 + ${INSTALL_DATA} ${WRKSRC}/if_vether.4 ${STAGEDIR}${PREFIX}/man/man4 + @${RLN} ${STAGEDIR}${PREFIX}/man/man4/if_vether.4 \ + ${STAGEDIR}${PREFIX}/man/man4/vether.4 + +.include Added: head/net/vether-kmod/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/vether-kmod/distinfo Tue Mar 13 02:10:45 2018 (r464335) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520893274 +SHA256 (hmatyschok-if_vether-g20180312-4cd710c13f51dcba488c8857e7bf938ca4022be7_GH0.tar.gz) = db35276081b2704cd1a17f2239d4a82327788f91e8e95d4865fc82957887d668 +SIZE (hmatyschok-if_vether-g20180312-4cd710c13f51dcba488c8857e7bf938ca4022be7_GH0.tar.gz) = 7506 Added: head/net/vether-kmod/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/vether-kmod/pkg-descr Tue Mar 13 02:10:45 2018 (r464335) @@ -0,0 +1,5 @@ +The if_vether(4) interface simulates a normal Ethernet interface +by encapsulating standard network frames with an Ethernet header, +specifically for use as a member of if_bridge(4). + +WWW: https://github.com/hmatyschok/if_vether