From fba90397c2eaea9efa7f9af7b475fe48f310eb10 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 2 Mar 2006 11:28:08 +0000 Subject: [PATCH] Added igmpproxy, an IGMP daemon git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3295 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/Config.in | 1 + openwrt/package/Makefile | 1 + openwrt/package/igmpproxy/Config.in | 9 +++++++ openwrt/package/igmpproxy/Makefile | 31 ++++++++++++++++++++++++ openwrt/package/igmpproxy/ipkg/igmpproxy.control | 4 +++ 5 files changed, 46 insertions(+) create mode 100644 openwrt/package/igmpproxy/Config.in create mode 100644 openwrt/package/igmpproxy/Makefile create mode 100644 openwrt/package/igmpproxy/ipkg/igmpproxy.control diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index 3266ed98e5..3fd24e8ccd 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -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" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index fab053b680..42c6f50704 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -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 diff --git a/openwrt/package/igmpproxy/Config.in b/openwrt/package/igmpproxy/Config.in new file mode 100644 index 0000000000..c66258a23e --- /dev/null +++ b/openwrt/package/igmpproxy/Config.in @@ -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 diff --git a/openwrt/package/igmpproxy/Makefile b/openwrt/package/igmpproxy/Makefile new file mode 100644 index 0000000000..ef144e0dcc --- /dev/null +++ b/openwrt/package/igmpproxy/Makefile @@ -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) diff --git a/openwrt/package/igmpproxy/ipkg/igmpproxy.control b/openwrt/package/igmpproxy/ipkg/igmpproxy.control new file mode 100644 index 0000000000..26bfe15639 --- /dev/null +++ b/openwrt/package/igmpproxy/ipkg/igmpproxy.control @@ -0,0 +1,4 @@ +Package: igmpproxy +Section: net +Priority: optional +Description: IGMPproxy is a simple dynamic Multicast Routing Daemon. -- 2.11.0