svn commit: r527753 - in head/net: . udpbroadcastrelay

Bernhard Froehlich decke at FreeBSD.org
Wed Mar 4 10:53:04 UTC 2020


Author: decke
Date: Wed Mar  4 10:53:02 2020
New Revision: 527753
URL: https://svnweb.freebsd.org/changeset/ports/527753

Log:
  udbproadcastrelay is a USB multicast relayer. Its intended use is to
  rebroadbcast udp packets on a specific port across interfaces, be those
  interfaces physical or VLAN.
  
  It is used where devices such as Sonos or Sky are spread accross
  different subnets and are not able to detect the servers or devices.
  
  WWW: https://github.com/marjohn56/udpbroadcastrelay
  
  PR:             244573
  Submitted by:   Michael Muenz <m.muenz at gmail.com>

Added:
  head/net/udpbroadcastrelay/
  head/net/udpbroadcastrelay/Makefile   (contents, props changed)
  head/net/udpbroadcastrelay/distinfo   (contents, props changed)
  head/net/udpbroadcastrelay/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Wed Mar  4 10:02:29 2020	(r527752)
+++ head/net/Makefile	Wed Mar  4 10:53:02 2020	(r527753)
@@ -1484,6 +1484,7 @@
     SUBDIR += twitux
     SUBDIR += u6rd
     SUBDIR += ucarp
+    SUBDIR += udpbroadcastrelay
     SUBDIR += udptunnel
     SUBDIR += udpxy
     SUBDIR += udt

Added: head/net/udpbroadcastrelay/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/udpbroadcastrelay/Makefile	Wed Mar  4 10:53:02 2020	(r527753)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	udpbroadcastrelay
+DISTVERSIONPREFIX=v
+DISTVERSION=	0.3-beta
+CATEGORIES=	net
+
+MAINTAINER=	m.muenz at gmail.com
+COMMENT=	UDP multicast/unicast relayer
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	marjohn56
+
+PLIST_FILES=	sbin/udpbroadcastrelay
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/udpbroadcastrelay ${STAGEDIR}${PREFIX}/sbin/udpbroadcastrelay
+
+.include <bsd.port.mk>

Added: head/net/udpbroadcastrelay/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/udpbroadcastrelay/distinfo	Wed Mar  4 10:53:02 2020	(r527753)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1583249519
+SHA256 (marjohn56-udpbroadcastrelay-v0.3-beta_GH0.tar.gz) = 26cd104d4f604d2b28bda747f8d9878b1bbde5b78f22c9ca1f6b8d8e50769c4a
+SIZE (marjohn56-udpbroadcastrelay-v0.3-beta_GH0.tar.gz) = 17946

Added: head/net/udpbroadcastrelay/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/udpbroadcastrelay/pkg-descr	Wed Mar  4 10:53:02 2020	(r527753)
@@ -0,0 +1,8 @@
+udbproadcastrelay is a USB multicast relayer. Its intended use is to
+rebroadbcast udp packets on a specific port across interfaces, be those
+interfaces physical or VLAN.
+
+It is used where devices such as Sonos or Sky are spread accross
+different subnets and are not able to detect the servers or devices.
+
+WWW: https://github.com/marjohn56/udpbroadcastrelay


More information about the svn-ports-head mailing list