From owner-svn-ports-all@freebsd.org Thu Jan 18 17:32:32 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6588EB8A15; Thu, 18 Jan 2018 17:32:32 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A257C782C3; Thu, 18 Jan 2018 17:32:32 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EDE8E21B1C; Thu, 18 Jan 2018 17:32:31 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0IHWVH4008009; Thu, 18 Jan 2018 17:32:31 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0IHWV1m008006; Thu, 18 Jan 2018 17:32:31 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201801181732.w0IHWV1m008006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 18 Jan 2018 17:32:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459365 - head/net/norm X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/net/norm X-SVN-Commit-Revision: 459365 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jan 2018 17:32:32 -0000 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@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