svn commit: r464335 - in head/net: . vether-kmod

Tobias Kortkamp tobik at FreeBSD.org
Tue Mar 13 02:10:47 UTC 2018


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 <henning.matyschok at outlook.com>

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 at 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 <bsd.port.mk>

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


More information about the svn-ports-all mailing list