svn commit: r459365 - head/net/norm
Alexey Dokuchaev
danfe at FreeBSD.org
Thu Jan 18 17:32:32 UTC 2018
Author: danfe
Date: Thu Jan 18 17:32:31 2018
New Revision: 459365
URL: https://svnweb.freebsd.org/changeset/ports/459365
Log:
Fix a trivial mistake in the code (add missing curly braces) and unbreak
this port on presumably all big-endian architectures. While here, amend
the port description text to include some useful information.
Tested on: powerpc, sparc64
Modified:
head/net/norm/Makefile
head/net/norm/pkg-descr
Modified: head/net/norm/Makefile
==============================================================================
--- head/net/norm/Makefile Thu Jan 18 17:05:38 2018 (r459364)
+++ head/net/norm/Makefile Thu Jan 18 17:32:31 2018 (r459365)
@@ -9,17 +9,16 @@ DISTNAME= src-norm-${DISTVERSION}
MAINTAINER= hd at oc.dk
COMMENT= NACK-Oriented Reliable Multicast (NORM)
-BROKEN_mips= Does not build: named return values are no longer supported
-BROKEN_mips64= Does not build: named return values are no longer supported
-BROKEN_powerpc64= Does not build: named return values are no longer supported
-BROKEN_sparc64= Does not build: named return values are no longer supported
-
WRKSRC= ${WRKDIR}/norm-${DISTVERSION}
USES= waf tar:tgz libtool
USE_LDCONFIG= yes
PLIST_FILES= include/normApi.h lib/libnorm.so lib/libnorm.so.1 \
lib/libnorm.so.1.0.0
+
+post-patch:
+ @${REINPLACE_CMD} -e '92s,r.*;,{&},' \
+ ${WRKSRC}/protolib/include/protoSpace.h
post-install:
${INSTALL_DATA} ${WRKSRC}/include/normApi.h ${STAGEDIR}${PREFIX}/include/
Modified: head/net/norm/pkg-descr
==============================================================================
--- head/net/norm/pkg-descr Thu Jan 18 17:05:38 2018 (r459364)
+++ head/net/norm/pkg-descr Thu Jan 18 17:32:31 2018 (r459365)
@@ -1,4 +1,6 @@
-This a port of NACK-Oriented Reliable Multicast (N.O.R.M.),
-as specified in RFC5740.
+This a port of NACK-Oriented Reliable Multicast (NORM) Transport Protocol
+implementation, as specified in RFC 5740. This protocol can provide end-
+to-end reliable transport of bulk data objects or streams over generic IP
+multicast routing and forwarding services.
WWW: http://www.nrl.navy.mil/itd/ncs/products/norm
More information about the svn-ports-head
mailing list