Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Apr 2015 08:02:56 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r383097 - in head/net: . mdns-repeater
Message-ID:  <201504030802.t3382u97005373@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Fri Apr  3 08:02:55 2015
New Revision: 383097
URL: https://svnweb.freebsd.org/changeset/ports/383097

Log:
  Add net/mdns-repeater a Multicast DNS repeater. Multicast DNS uses the
  224.0.0.51 address, which is "administratively scoped" and does not leave the
  subnet.
  
  This program re-broadcast mDNS packets from one interface to other interfaces.
  
  It can be used to bridge zeroconf devices to work properly across the two
  subnets.

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Apr  3 02:14:43 2015	(r383096)
+++ head/net/Makefile	Fri Apr  3 08:02:55 2015	(r383097)
@@ -363,6 +363,7 @@
     SUBDIR += mad_fcl
     SUBDIR += malo-firmware-kmod
     SUBDIR += mcast-tools
+    SUBDIR += mdns-repeater
     SUBDIR += mediastreamer
     SUBDIR += mediatomb
     SUBDIR += megatools

Added: head/net/mdns-repeater/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/mdns-repeater/Makefile	Fri Apr  3 08:02:55 2015	(r383097)
@@ -0,0 +1,25 @@
+# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	mdns-repeater
+PORTVERSION=	1.10
+CATEGORIES=	net dns
+MASTER_SITES=	LOCAL/ehaupt
+
+MAINTAINER=	ehaupt@FreeBSD.org
+COMMENT=	Multicast DNS repeater to re-broadcast mDNS packets across interfaces
+
+LICENSE=	GPLv2
+
+CFLAGS+=	-DHGVERSION="\"${PORTVERSION}\""
+
+PLIST_FILES=	bin/mdns-repeater
+
+do-build:
+	${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/net/mdns-repeater/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/mdns-repeater/distinfo	Fri Apr  3 08:02:55 2015	(r383097)
@@ -0,0 +1,2 @@
+SHA256 (mdns-repeater-1.10.tar.gz) = 9c49c4256f6a4962c2b3fcb69f05c5f2eb76eb2c0a56f1e6153b2928d1360606
+SIZE (mdns-repeater-1.10.tar.gz) = 10608

Added: head/net/mdns-repeater/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/mdns-repeater/pkg-descr	Fri Apr  3 08:02:55 2015	(r383097)
@@ -0,0 +1,9 @@
+mdns-repeater is a Multicast DNS repeater. Multicast DNS uses the 224.0.0.51
+address, which is "administratively scoped" and does not leave the subnet.
+
+This program re-broadcast mDNS packets from one interface to other interfaces.
+
+It can be used to bridge zeroconf devices to work properly across the two
+subnets.
+
+WWW: https://bitbucket.org/geekman/mdns-repeater/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504030802.t3382u97005373>