source "package/lksctp-tools/Config.in"
source "package/mongoose/Config.in"
source "package/neon/Config.in"
+ source "package/norm/Config.in"
source "package/nss-mdns/Config.in"
source "package/nss-pam-ldapd/Config.in"
source "package/omniorb/Config.in"
--- /dev/null
+Fix big-endian build breakage in protolib.
+Patch status: submitted to author via email.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -Nura norm-1.5r6.orig/protolib/include/protoSpace.h norm-1.5r6/protolib/include/protoSpace.h
+--- norm-1.5r6.orig/protolib/include/protoSpace.h 2016-03-08 19:48:21.326357963 -0300
++++ norm-1.5r6/protolib/include/protoSpace.h 2016-03-08 19:48:46.647234075 -0300
+@@ -89,7 +89,7 @@
+ }
+ #else
+ ProtoTree::Endian GetEndian() const
+- return ProtoTree::ENDIAN_BIG;
++ {return ProtoTree::ENDIAN_BIG;}
+ void SetNode(Node* theNode)
+ {memcpy(key+sizeof(double), &theNode, sizeof(Node*));}
+ Node* GetNode() const
--- /dev/null
+comment "norm needs a toolchain w/ C++, threads, dynamic library"
+ depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
+ !BR2_TOOLCHAIN_HAS_THREADS
+
+config BR2_PACKAGE_NORM
+ bool "norm"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_STATIC_LIBS
+ help
+ The NORM protocol is designed to provide end-to-end reliable
+ transport of bulk data objects or streams over generic IP
+ multicast routing and forwarding services.
+
+ http://www.nrl.navy.mil/itd/ncs/products/norm
--- /dev/null
+# Locally calculated
+sha256 20ea2e8dd5d5e1ff1ff91dc7dab6db53a77d7b7183d8cf2425c215fd294f22a7 src-norm-1.5r6.tgz
--- /dev/null
+################################################################################
+#
+# norm
+#
+################################################################################
+
+NORM_VERSION = 1.5r6
+NORM_SITE = http://downloads.pf.itd.nrl.navy.mil/norm/archive
+NORM_SOURCE = src-norm-$(NORM_VERSION).tgz
+NORM_INSTALL_STAGING = YES
+NORM_LICENSE = NRL License
+NORM_LICENSE_FILES = LICENSE.TXT
+
+ifeq ($(BR2_PACKAGE_LIBNETFILTER_QUEUE),y)
+NORM_DEPENDENCIES += libnetfilter_queue
+endif
+
+define NORM_CONFIGURE_CMDS
+ cd $(@D); \
+ $(TARGET_CONFIGURE_OPTS) \
+ ./waf configure --prefix=/usr
+endef
+
+define NORM_BUILD_CMDS
+ cd $(@D); \
+ $(TARGET_MAKE_ENV) \
+ ./waf build
+endef
+
+# install target doesn't install headers unfortunately...
+define NORM_INSTALL_STAGING_CMDS
+ cd $(@D); \
+ $(TARGET_MAKE_ENV) \
+ DESTDIR=$(STAGING_DIR) \
+ ./waf install
+ cp -f $(@D)/include/norm* $(STAGING_DIR)/usr/include
+endef
+
+define NORM_INSTALL_TARGET_CMDS
+ cd $(@D); \
+ $(TARGET_MAKE_ENV) \
+ DESTDIR=$(TARGET_DIR) \
+ ./waf install
+endef
+
+$(eval $(generic-package))