]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
igmpproxy: new package
authorMatt Weber <mlweber1@rockwellcollins.com>
Thu, 12 Sep 2013 20:45:57 +0000 (15:45 -0500)
committerPeter Korsgaard <jacmet@sunsite.dk>
Thu, 12 Sep 2013 21:44:16 +0000 (23:44 +0200)
[Peter: minor white space fixes]
Signed-off-by: Matt Weber <mlweber1@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/igmpproxy/Config.in [new file with mode: 0644]
package/igmpproxy/igmpproxy.mk [new file with mode: 0644]

index 5835bcbd9daa43d9d6eca85036feb1753719c4d5..aae3296dee790a65e671370bf3d5f6b5a5a563c0 100644 (file)
@@ -783,6 +783,7 @@ source "package/ifplugd/Config.in"
 endif
 source "package/iftop/Config.in"
 source "package/igh-ethercat/Config.in"
+source "package/igmpproxy/Config.in"
 source "package/inadyn/Config.in"
 source "package/iperf/Config.in"
 source "package/iproute2/Config.in"
diff --git a/package/igmpproxy/Config.in b/package/igmpproxy/Config.in
new file mode 100644 (file)
index 0000000..03f8da5
--- /dev/null
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_IGMPPROXY
+       bool "igmpproxy"
+       depends on BR2_USE_WCHAR
+       help
+         A simple dynamic Multicast Routing Daemon
+         using only IGMP signalling. It's intended
+         for simple forwarding of Multicast traffic
+         between networks.
+
+         http://sourceforge.net/projects/igmpproxy/
+
+comment "igmpproxy needs a toolchain with wchar support"
+       depends on !BR2_USE_WCHAR
diff --git a/package/igmpproxy/igmpproxy.mk b/package/igmpproxy/igmpproxy.mk
new file mode 100644 (file)
index 0000000..577717c
--- /dev/null
@@ -0,0 +1,12 @@
+################################################################################
+#
+# igmpproxy
+#
+################################################################################
+
+IGMPPROXY_VERSION = 0.1
+IGMPPROXY_SITE = http://downloads.sourceforge.net/project/igmpproxy/igmpproxy/$(IGMPPROXY_VERSION)
+IGMPPROXY_LICENSE = GPLv2+
+IGMPPROXY_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))