1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Add new port igmpproxy.

This is an IGMPv2 aware multicast forwarding proxy.
It cannot be run simultaneously with other multicast
routing daemons.

PR:		ports/130174
Submitted by:	Alexander Chernikov
This commit is contained in:
Bruce M Simpson 2009-03-18 15:18:53 +00:00
parent e6109cdbcf
commit 7ac2945bce
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=230360
6 changed files with 1155 additions and 0 deletions

View File

@ -219,6 +219,7 @@
SUBDIR += iffinder
SUBDIR += ifstat
SUBDIR += ifstated
SUBDIR += igmpproxy
SUBDIR += ilbc
SUBDIR += imapproxy
SUBDIR += iodine

41
net/igmpproxy/Makefile Normal file
View File

@ -0,0 +1,41 @@
# New ports collection makefile for: igmpproxy
# Date created: 5 January 2009
# Whom: asami
#
# $FreeBSD$
#
PORTNAME= igmpproxy
PORTVERSION= 0.1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-src-${PORTVERSION}-beta2
MAINTAINER= melifaro@ipfw.ru
COMMENT= Multicast forwarding IGMP proxy
HOMEPAGE= http://igmpproxy.sourceforge.net/
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
BUILD_WRKSRC= ${WRKSRC}/src
USE_RC_SUBR= igmpproxy
USE_GMAKE= yes
MAN5= igmpproxy.conf.5
MAN8= igmpproxy.8
PLIST_FILES= sbin/igmpproxy \
etc/igmpproxy.conf.sample
post-extract:
@${MV} ${WRKDIR}/${PORTNAME} ${WRKDIR}/${PORTNAME}-${PORTVERSION}
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/src/igmpproxy ${PREFIX}/sbin/
@${INSTALL_DATA} ${WRKSRC}/src/igmpproxy.conf ${PREFIX}/etc/igmpproxy.conf.sample
@${INSTALL_MAN} ${WRKSRC}/doc/igmpproxy.8 ${PREFIX}/man/man8/
@${INSTALL_MAN} ${WRKSRC}/doc/igmpproxy.conf.5 ${PREFIX}/man/man5/
.include <bsd.port.mk>

3
net/igmpproxy/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (igmpproxy-src-0.1-beta2.tar.gz) = 2a5a59480f44d4b14077a6b5319e9940
SHA256 (igmpproxy-src-0.1-beta2.tar.gz) = 7f6e5486e84827150c8ca402967c96334bbd62b9f785195c4ee84da1218abb40
SIZE (igmpproxy-src-0.1-beta2.tar.gz) = 35103

View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: igmpproxy
# REQUIRE: NETWORKING
# The following variables are provided to control startup of igmpproxy
# rc configuration file (eg /etc/rc.conf):
# igmpproxy_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable igmpproxy.
. %%RC_SUBR%%
name="igmpproxy"
rcvar=`set_rcvar`
command="%%PREFIX%%/sbin/${name}"
required_files="%%PREFIX%%/etc/igmpproxy.conf"
igmpproxy_enable=${igmpproxy_enable-"NO"}
load_rc_config $name
run_rc_command "$1"

File diff suppressed because it is too large Load Diff

5
net/igmpproxy/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
igmpproxy is a simple multicast routing daemon based on mrouted. It uses IGMP
forwarding to dynamically route multicast traffic.
Reqiures multicast forwarding enabled
WWW: http://igmpproxy.sourceforge.net/