From owner-svn-ports-branches@freebsd.org Wed Aug 26 13:16:42 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DFE223D4EB4; Wed, 26 Aug 2020 13:16:42 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bc5wp5fxWz40ZJ; Wed, 26 Aug 2020 13:16:42 +0000 (UTC) (envelope-from pkubaj@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 A56C613A48; Wed, 26 Aug 2020 13:16:42 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07QDGgJJ040503; Wed, 26 Aug 2020 13:16:42 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07QDGgxk040502; Wed, 26 Aug 2020 13:16:42 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202008261316.07QDGgxk040502@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 26 Aug 2020 13:16:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r546278 - branches/2020Q3/net-mgmt/nfdump X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: branches/2020Q3/net-mgmt/nfdump X-SVN-Commit-Revision: 546278 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Aug 2020 13:16:42 -0000 Author: pkubaj Date: Wed Aug 26 13:16:42 2020 New Revision: 546278 URL: https://svnweb.freebsd.org/changeset/ports/546278 Log: MFH: r546277 net-mgmt/nfdump: fix build on GCC architectures and check-plist on others Use C11 compiler: In file included from nfcapd.c:69: nfx.h:946: error: redefinition of typedef 'extension_map_t' nfdump.h:64: error: previous declaration of 'extension_map_t' was here In file included from nfcapd.c:70: exporter.h:78: error: redefinition of typedef 'exporter_info_record_t' nfdump.h:63: error: previous declaration of 'exporter_info_record_t' was here Remove unconditional installation of nfpcapd, it breaks check-plist and there's an option for installing it. Bump PORTREVISION for package change. Approved by: portmgr (fix build blanket, packaging fix) Modified: branches/2020Q3/net-mgmt/nfdump/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/net-mgmt/nfdump/Makefile ============================================================================== --- branches/2020Q3/net-mgmt/nfdump/Makefile Wed Aug 26 13:15:41 2020 (r546277) +++ branches/2020Q3/net-mgmt/nfdump/Makefile Wed Aug 26 13:16:42 2020 (r546278) @@ -3,6 +3,7 @@ PORTNAME= nfdump PORTVERSION= 1.6.20 +PORTREVISION= 1 DISTVERSIONPREFIX=v CATEGORIES= net-mgmt @@ -12,7 +13,7 @@ COMMENT= Command-line tools to collect and process Net LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/BSD-license.txt -USES= autoreconf libtool pkgconfig +USES= autoreconf compiler:c11 libtool pkgconfig USE_CSTD= gnu89 USE_LDCONFIG= yes USE_GITHUB= yes @@ -128,7 +129,7 @@ CONFIGURE_ARGS+= --disable-influxdb .endif do-install: -.for binary in nfanon nfcapd nfpcapd nfdump nfexpire nfreplay +.for binary in nfanon nfcapd nfdump nfexpire nfreplay ${INSTALL_PROGRAM} ${WRKSRC}/bin/.libs/${binary} ${STAGEDIR}${PREFIX}/bin .endfor ${INSTALL_LIB} ${WRKSRC}/bin/.libs/libnfdump-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib