2009-08-31 01:49:32 +02:00
|
|
|
# Copyright 2009 Daniel Mierswa <impulze@impulze.org>
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2010-02-26 00:05:46 +01:00
|
|
|
require sourceforge [ suffix=tar.gz ]
|
|
|
|
|
2009-08-31 01:49:32 +02:00
|
|
|
SUMMARY="Dynamic Multicast Routing Daemon"
|
|
|
|
DESCRIPTION="A simple dynamic Multicast Routing Daemon using only IGMP signalling.
|
|
|
|
It's intended for simple forwarding of Multicast traffic between networks."
|
|
|
|
|
|
|
|
LICENCES="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
PLATFORMS="~x86"
|
2010-10-09 22:11:27 +02:00
|
|
|
MYOPTIONS="baselayout"
|
2009-08-31 01:49:32 +02:00
|
|
|
|
|
|
|
DEPENDENCIES=""
|
|
|
|
|
2012-02-04 13:47:52 +01:00
|
|
|
DEFAULT_SRC_PREPARE_PATCHES=(
|
|
|
|
"${FILES}/0001-Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch"
|
|
|
|
"${FILES}/0001-Send-IGMP-packets-with-IP-Router-Alert-option-RFC-21.patch"
|
|
|
|
"${FILES}/0002-Change-default-interface-state-to-disabled-wrt-29458.patch"
|
|
|
|
"${FILES}/0003-Restrict-igmp-reports-forwarding-to-upstream-interfa.patch"
|
|
|
|
)
|
|
|
|
|
2009-08-31 01:49:32 +02:00
|
|
|
src_install() {
|
|
|
|
default
|
2012-02-04 13:47:52 +01:00
|
|
|
|
2010-10-09 22:11:27 +02:00
|
|
|
if option baselayout ; then
|
|
|
|
newinitd "${FILES}/igmpproxy-init.d" igmpproxy
|
|
|
|
newconfd "${FILES}/igmpproxy-conf.d" igmpproxy
|
|
|
|
fi
|
2009-08-31 01:49:32 +02:00
|
|
|
}
|
|
|
|
|