Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Sep 2016 02:27:04 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422845 - head/net-mgmt/collectd5
Message-ID:  <201609280227.u8S2R48v013384@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



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