diff options
author | matthew <matthew@FreeBSD.org> | 2016-05-03 18:49:03 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2016-05-03 18:49:03 +0800 |
commit | 7c9e057fc452a43dc5fda70cdd9bc37f6ead3959 (patch) | |
tree | 57fc5924d774a6ad0e4ec2958f4180ee6a996c29 /net | |
parent | 0cfcd43c12eabcd2005c66462999bcabd9ccc769 (diff) | |
download | freebsd-ports-gnome-7c9e057fc452a43dc5fda70cdd9bc37f6ead3959.tar.gz freebsd-ports-gnome-7c9e057fc452a43dc5fda70cdd9bc37f6ead3959.tar.zst freebsd-ports-gnome-7c9e057fc452a43dc5fda70cdd9bc37f6ead3959.zip |
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
Diffstat (limited to 'net')
-rw-r--r-- | net/ntop/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ntop/Makefile b/net/ntop/Makefile index 4a1a3da32e8c..8d18b2f74395 100644 --- a/net/ntop/Makefile +++ b/net/ntop/Makefile @@ -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} \ |