svn commit: r562594 - in branches/2021Q1/net: ndpi ntopng ntopng/files

Guido Falsi madpilot at FreeBSD.org
Mon Jan 25 18:04:31 UTC 2021


Author: madpilot
Date: Mon Jan 25 18:04:29 2021
New Revision: 562594
URL: https://svnweb.freebsd.org/changeset/ports/562594

Log:
  MFH: r562593
  
  - Add unconditional dependency on gcrypt and libgpg-error to ndpi
    and ntopng to ensure full feature set [1]
  - Patch ntopng to link correctly with libgcrypt
  - While here, update ntopng to latest upstream snapshot
  
  PR:		252935 [1]
  Submitted by:	Franco Fichtner <franco at opnsense.org>

Modified:
  branches/2021Q1/net/ndpi/Makefile
  branches/2021Q1/net/ntopng/Makefile
  branches/2021Q1/net/ntopng/distinfo
  branches/2021Q1/net/ntopng/files/patch-configure.seed
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/net/ndpi/Makefile
==============================================================================
--- branches/2021Q1/net/ndpi/Makefile	Mon Jan 25 18:03:29 2021	(r562593)
+++ branches/2021Q1/net/ndpi/Makefile	Mon Jan 25 18:04:29 2021	(r562594)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ndpi
 PORTVERSION=	3.4.d20201222
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	net
 
@@ -12,7 +13,9 @@ COMMENT=	NTOP-maintained superset of the popular OpenD
 LICENSE=	LGPL3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-LIB_DEPENDS=	libjson-c.so:devel/json-c
+LIB_DEPENDS=	libjson-c.so:devel/json-c \
+		libgcrypt.so:security/libgcrypt \
+		libgpg-error.so:security/libgpg-error
 
 USES=		autoreconf compiler:c++11-lang libtool localbase:ldflags pathfix \
 		pkgconfig

Modified: branches/2021Q1/net/ntopng/Makefile
==============================================================================
--- branches/2021Q1/net/ntopng/Makefile	Mon Jan 25 18:03:29 2021	(r562593)
+++ branches/2021Q1/net/ntopng/Makefile	Mon Jan 25 18:04:29 2021	(r562594)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ntopng
-PORTVERSION=	4.2.d20201228
+PORTVERSION=	4.2.d20210122
 PORTEPOCH=	1
 CATEGORIES=	net
 
@@ -20,7 +20,9 @@ LIB_DEPENDS=	librrd.so:databases/rrdtool \
 		libsodium.so:security/libsodium \
 		libmaxminddb.so:net/libmaxminddb \
 		libexpat.so:textproc/expat2 \
-		libzstd.so:archivers/zstd
+		libzstd.so:archivers/zstd \
+		libgcrypt.so:security/libgcrypt \
+		libgpg-error.so:security/libgpg-error
 BUILD_DEPENDS=	bash:shells/bash
 
 USES=		autoreconf compiler:c++11-lang cpe gmake libtool localbase \
@@ -38,7 +40,7 @@ PLIST_SUB=	NTOPNGUSER="${USERS}" NTOPNGROUP="${GROUPS}
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	ntop
-GH_TAGNAME=	d2f4f8f
+GH_TAGNAME=	e91b1b5
 
 CPE_VENDOR=	ntop
 

Modified: branches/2021Q1/net/ntopng/distinfo
==============================================================================
--- branches/2021Q1/net/ntopng/distinfo	Mon Jan 25 18:03:29 2021	(r562593)
+++ branches/2021Q1/net/ntopng/distinfo	Mon Jan 25 18:04:29 2021	(r562594)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1609190757
-SHA256 (ntop-ntopng-4.2.d20201228-d2f4f8f_GH0.tar.gz) = 041547feccd82237d3e8df0a75b163a9712248675a4d8117983719ffc5e61bd8
-SIZE (ntop-ntopng-4.2.d20201228-d2f4f8f_GH0.tar.gz) = 57560717
+TIMESTAMP = 1611571552
+SHA256 (ntop-ntopng-4.2.d20210122-e91b1b5_GH0.tar.gz) = cab743b41b2db631d3134e6745f8328261b13c0cb5cda3d9260fd26ae712f39e
+SIZE (ntop-ntopng-4.2.d20210122-e91b1b5_GH0.tar.gz) = 57562463

Modified: branches/2021Q1/net/ntopng/files/patch-configure.seed
==============================================================================
--- branches/2021Q1/net/ntopng/files/patch-configure.seed	Mon Jan 25 18:03:29 2021	(r562593)
+++ branches/2021Q1/net/ntopng/files/patch-configure.seed	Mon Jan 25 18:04:29 2021	(r562594)
@@ -1,4 +1,4 @@
---- configure.seed.orig	2020-11-02 21:27:19 UTC
+--- configure.seed.orig	2021-01-22 10:38:16 UTC
 +++ configure.seed
 @@ -4,7 +4,7 @@ dnl> Do not add anything above
  
@@ -44,6 +44,15 @@
  SHORT_MACHINE=`uname -m | cut -b1-3`
  
  GIT_RELEASE="@GIT_RELEASE@"
+@@ -233,7 +208,7 @@ else
+   fi
+ fi
+ 
+-AC_CHECK_LIB([gcrypt], [gcry_cipher_checktag], [LDFLAGS="${LDFLAGS} -lgcrypt"])
++AC_CHECK_LIB([gcrypt], [gcry_cipher_checktag], [LDFLAGS="${LDFLAGS} -lgcrypt -lgpg-error"])
+ 
+ AC_MSG_CHECKING(for ntopng professional edition)
+ 
 @@ -678,16 +653,6 @@ AC_DEFINE_UNQUOTED(_CRT_SECURE_NO_WARNINGS, 1, [Disabl
  GMAKE=`which gmake`
  if test x$GMAKE = x; then


More information about the svn-ports-branches mailing list