Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Aug 2017 12:55:15 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448518 - in head/net/ntopng: . files
Message-ID:  <201708221255.v7MCtFwK096063@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: madpilot
Date: Tue Aug 22 12:55:15 2017
New Revision: 448518
URL: https://svnweb.freebsd.org/changeset/ports/448518

Log:
  - Update to newer upstream snapshot
  - Silence portlint warning about variable ordering

Modified:
  head/net/ntopng/Makefile
  head/net/ntopng/distinfo
  head/net/ntopng/files/patch-Makefile.in

Modified: head/net/ntopng/Makefile
==============================================================================
--- head/net/ntopng/Makefile	Tue Aug 22 12:38:54 2017	(r448517)
+++ head/net/ntopng/Makefile	Tue Aug 22 12:55:15 2017	(r448518)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ntopng
-PORTVERSION=	3.0.2017.06.05
+PORTVERSION=	3.0.2017.08.12
 CATEGORIES=	net
 
 MAINTAINER=	madpilot@FreeBSD.org
@@ -20,19 +20,19 @@ LIB_DEPENDS=	librrd.so:databases/rrdtool \
 		libsodium.so:security/libsodium
 BUILD_DEPENDS=  bash:shells/bash
 
-GNU_CONFIGURE=	yes
-USE_LDCONFIG=	yes
 USES=	 	autoreconf cpe gmake libtool localbase mysql pathfix pkgconfig \
 		shebangfix sqlite ssl
 SUB_FILES=	ntopng-geoipupdate.sh pkg-deinstall
 SHEBANG_FILES=	httpdocs/misc/ntopng-add-user.sh
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
 
 USERS=		ntopng
 GROUPS=		ntopng
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	ntop
-GH_TAGNAME=	3de9516
+GH_TAGNAME=	8e2a743
 
 CPE_VENDOR=	ntop
 

Modified: head/net/ntopng/distinfo
==============================================================================
--- head/net/ntopng/distinfo	Tue Aug 22 12:38:54 2017	(r448517)
+++ head/net/ntopng/distinfo	Tue Aug 22 12:55:15 2017	(r448518)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1496678053
-SHA256 (ntop-ntopng-3.0.2017.06.05-3de9516_GH0.tar.gz) = 48f5bb14f1d82c5dc8a220e7e4d7e2f5fec2accf6fd8efa65af98654072c016f
-SIZE (ntop-ntopng-3.0.2017.06.05-3de9516_GH0.tar.gz) = 23019840
+TIMESTAMP = 1503329023
+SHA256 (ntop-ntopng-3.0.2017.08.12-8e2a743_GH0.tar.gz) = 3adf3f00eb94da7981831d03ee9ba554caf6315e5cbd9bbb25cff590db2dac17
+SIZE (ntop-ntopng-3.0.2017.08.12-8e2a743_GH0.tar.gz) = 23022290

Modified: head/net/ntopng/files/patch-Makefile.in
==============================================================================
--- head/net/ntopng/files/patch-Makefile.in	Tue Aug 22 12:38:54 2017	(r448517)
+++ head/net/ntopng/files/patch-Makefile.in	Tue Aug 22 12:55:15 2017	(r448518)
@@ -1,19 +1,6 @@
---- Makefile.in.orig	2017-06-01 07:18:57 UTC
+--- Makefile.in.orig	2017-08-12 15:15:33 UTC
 +++ Makefile.in
-@@ -51,8 +51,10 @@ else
- endif
- ######
- ifeq ($(OS), $(filter $(OS), FreeBSD))
--	LIBNBPF_HOME=${PWD}/../PF_RING/userland/nbpf
--	LIBNBPF_LIB=$(LIBNBPF_HOME)/libnbpf.a
-+	ifneq (, $(wildcard "${PWD}/../PF_RING/userland/nbpf/libnbpf.a"))
-+		LIBNBPF_HOME=${PWD}/../PF_RING/userland/nbpf
-+		LIBNBPF_LIB=$(LIBNBPF_HOME)/libnbpf.a
-+	endif
- endif
- ######
- HTTPCLIENT_INC=${PWD}/third-party/http-client-c/src/
-@@ -79,7 +81,7 @@ endif
+@@ -89,7 +89,7 @@ endif
  HAS_ZEROMQ=$(shell pkg-config --exists libzmq; echo $$?)
  ifeq ($(HAS_ZEROMQ), 0)
  	ZEROMQ_INC = $(shell pkg-config --cflags libzmq)
@@ -22,18 +9,3 @@
  	ifeq ($(wildcard $(ZMQ_STATIC)),)
  		ZEROMQ_LIB = $(shell pkg-config --libs libzmq)
  	else
-@@ -178,10 +180,10 @@ geoip:
- 	  cp ~/dat_files/* httpdocs/geoip; gunzip -f httpdocs/geoip/*.dat.gz ; \
- 	else \
- 	  cd httpdocs/geoip; \
--	  wget -nc http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz; \
--	  wget -nc http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz; \
--	  wget -nc http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz; \
--	  wget -nc http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz; \
-+	  fetch http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz; \
-+	  fetch http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz; \
-+	  fetch http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz; \
-+	  fetch http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz; \
- 	  gunzip -f *.dat.gz ; \
- 	fi
- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708221255.v7MCtFwK096063>