1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:42:01 +03:00

Added igmpproxy, an IGMP daemon

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3295 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2006-03-02 11:28:08 +00:00
parent 857f03cfd6
commit eeb6fb95aa
5 changed files with 46 additions and 0 deletions

View File

@ -80,6 +80,7 @@ source "package/hostapd/Config.in"
source "package/htpdate/Config.in"
source "package/httping/Config.in"
source "package/iftop/Config.in"
source "package/igmpproxy/Config.in"
source "package/ipcad/Config.in"
source "package/iproute2/Config.in"
source "package/iperf/Config.in"

View File

@ -68,6 +68,7 @@ package-$(BR2_PACKAGE_HTTPING) += httping
package-$(BR2_PACKAGE_ICECAST) += icecast
package-$(BR2_PACKAGE_ID3LIB) += id3lib
package-$(BR2_PACKAGE_IFTOP) += iftop
package-$(BR2_PACKAGE_IGMPPROXY) += igmpproxy
package-$(BR2_PACKAGE_IPCAD) += ipcad
package-$(BR2_PACKAGE_IPERF) += iperf
package-$(BR2_PACKAGE_IPKG) += ipkg

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_IGMPPROXY
prompt "igmpproxy......................... Multicast Routing Daemon"
tristate
default m if CONFIG_DEVEL
help
IGMPproxy is a simple dynamic Multicast Routing Daemon using
only IGMP signalling (Internet Group Management Protocol).
http://sourceforge.net/projects/igmpproxy

View File

@ -0,0 +1,31 @@
# $Id: Makefile 1084 2005-05-27 17:32:43Z florian $
include $(TOPDIR)/rules.mk
PKG_NAME:=igmpproxy
PKG_VERSION:=0.1-beta2
PKG_RELEASE:=1
PKG_MD5SUM:=2a5a59480f44d4b14077a6b5319e9940
PKG_SOURCE_URL:=@SF/igmpproxy
PKG_SOURCE:=$(PKG_NAME)-src-$(PKG_VERSION).tar.gz
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
PKG_CAT:=zcat
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,IGMPPROXY,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR)/src
touch $@
$(IPKG_IGMPPROXY):
mkdir -p $(IDIR_IGMPPROXY)/usr/sbin $(IDIR_IGMPPROXY)/etc
$(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(IDIR_IGMPPROXY)/usr/sbin/
$(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME).conf $(IDIR_IGMPPROXY)/etc
$(STRIP) $(IDIR_IGMPPROXY)/usr/sbin/*
$(IPKG_BUILD) $(IDIR_IGMPPROXY) $(PACKAGE_DIR)

View File

@ -0,0 +1,4 @@
Package: igmpproxy
Section: net
Priority: optional
Description: IGMPproxy is a simple dynamic Multicast Routing Daemon.