diff options
author | jrm <jrm@FreeBSD.org> | 2016-09-28 10:27:03 +0800 |
---|---|---|
committer | jrm <jrm@FreeBSD.org> | 2016-09-28 10:27:03 +0800 |
commit | 83ceb4707f4267842a0385cfa6f91098a381b0f8 (patch) | |
tree | 6991fcb1cf933fc99dcdaacb03d00f379a564be3 /net-mgmt | |
parent | 86cd5f573eb3cb5eca9a127f8a0d96c758975736 (diff) | |
download | freebsd-ports-graphics-83ceb4707f4267842a0385cfa6f91098a381b0f8.tar.gz freebsd-ports-graphics-83ceb4707f4267842a0385cfa6f91098a381b0f8.tar.zst freebsd-ports-graphics-83ceb4707f4267842a0385cfa6f91098a381b0f8.zip |
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
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/collectd5/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/collectd5/Makefile b/net-mgmt/collectd5/Makefile index d32a504328f..70225e4652f 100644 --- a/net-mgmt/collectd5/Makefile +++ b/net-mgmt/collectd5/Makefile @@ -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 |