svn commit: r414525 - head/net/ntop

Matthew Seaman matthew at FreeBSD.org
Tue May 3 10:49:04 UTC 2016


Author: matthew
Date: Tue May  3 10:49:03 2016
New Revision: 414525
URL: https://svnweb.freebsd.org/changeset/ports/414525

Log:
  ntop is failing to configure after r414458 updated rrdtool to version
  1.6.0.  ntop depends on librrd_th.so (threading enabled shlib) which
  has been removed from the latest rrdtool package -- threading is now
  always enabled.
  
  Quick fix: make ntop depend on the older rrdtool12 port.
  
  Longer term fix: investigate 'ntopng'
    http://www.ntop.org/products/traffic-analysis/ntop/
  
  PR:		209230

Modified:
  head/net/ntop/Makefile

Modified: head/net/ntop/Makefile
==============================================================================
--- head/net/ntop/Makefile	Tue May  3 10:39:44 2016	(r414524)
+++ head/net/ntop/Makefile	Tue May  3 10:49:03 2016	(r414525)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ntop
 PORTVERSION=	5.0.1
-PORTREVISION=	9
+PORTREVISION=	10
 CATEGORIES=	net
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/Stable
 
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libgdbm.so:databases/gdbm \
 		libevent.so:devel/libevent2
-BUILD_DEPENDS=	rrdtool>=1.2:databases/rrdtool \
+BUILD_DEPENDS=	rrdtool12>=1.2:databases/rrdtool12 \
 		dot:graphics/graphviz \
 		geoiplookup:net/GeoIP
 RUN_DEPENDS:=	${BUILD_DEPENDS} \


More information about the svn-ports-all mailing list