svn commit: r422845 - head/net-mgmt/collectd5

Joseph Mingrone jrm at FreeBSD.org
Wed Sep 28 02:27:05 UTC 2016


Author: jrm
Date: Wed Sep 28 02:27:03 2016
New Revision: 422845
URL: https://svnweb.freebsd.org/changeset/ports/422845

Log:
  net-mgmt/collectd5: fix disk plugin issue for FreeBSD versions 10+
  
  The file lib/collectd/disk.so was being commented out in pkg-plist for
  all FreeBSD versions instead of just for versions less than 10.
  
  Reported by:	pierre at guinoiseau.eu (via ports-committers@)
  Reviewed by:	swills (mentor)
  Approved by:	swills (mentor)
  Differential Revision:	https://reviews.freebsd.org/D8042

Modified:
  head/net-mgmt/collectd5/Makefile

Modified: head/net-mgmt/collectd5/Makefile
==============================================================================
--- head/net-mgmt/collectd5/Makefile	Wed Sep 28 02:23:26 2016	(r422844)
+++ head/net-mgmt/collectd5/Makefile	Wed Sep 28 02:27:03 2016	(r422845)
@@ -3,6 +3,7 @@
 
 PORTNAME=	collectd
 PORTVERSION=	5.6.0
+PORTREVISION=	1
 CATEGORIES=	net-mgmt
 MASTER_SITES=	https://collectd.org/files/ \
 		http://collectd.org/files/
@@ -330,7 +331,7 @@ CONFIGURE_ARGS+=--enable-aggregation \
 PLIST_SUB+=	DISK="@comment "
 .else
 CONFIGURE_ARGS+=--enable-disk
-PLIST_SUB+=	DISK="@comment "
+PLIST_SUB+=	DISK=""
 .endif
 
 INSTALL_TARGET=	install-strip


More information about the svn-ports-all mailing list