Date: Tue, 3 May 2016 10:49:03 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414525 - head/net/ntop Message-ID: <201605031049.u43An3Md095725@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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} \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605031049.u43An3Md095725>