net-mgmt/bwm-ng: Update to 0.6.3

This commit is contained in:
Tim Bishop 2023-01-09 09:35:57 +00:00
parent 27d1763730
commit 14d0a7b345
No known key found for this signature in database
GPG Key ID: 6C226B37FDF38D55
4 changed files with 7 additions and 44 deletions

View File

@ -1,6 +1,5 @@
PORTNAME= bwm-ng
PORTVERSION= 0.6
PORTREVISION= 2
PORTVERSION= 0.6.3
CATEGORIES= net-mgmt
MASTER_SITES= http://www.gropp.org/bwm-ng/
@ -8,10 +7,12 @@ MAINTAINER= tdb@FreeBSD.org
COMMENT= Small and simple bandwidth monitor
WWW= https://www.gropp.org/?id=projects&sub=bwm-ng
LICENSE= GPLv2+
LIB_DEPENDS= libstatgrab.so:devel/libstatgrab
GNU_CONFIGURE= yes
USES= ncurses pkgconfig
USES= autoreconf ncurses pkgconfig
USE_CSTD= gnu89
PLIST_FILES= bin/bwm-ng man/man1/bwm-ng.1.gz

View File

@ -1,2 +1,3 @@
SHA256 (bwm-ng-0.6.tar.gz) = c1134358e268329d438b0996399003b0f0b966034fb4b5b138761c2f3c62ffdd
SIZE (bwm-ng-0.6.tar.gz) = 141564
TIMESTAMP = 1673197275
SHA256 (bwm-ng-0.6.3.tar.gz) = c1a552b6ff48ea3e4e10110a7c188861abc4750befc67c6caaba8eb3ecf67f46
SIZE (bwm-ng-0.6.3.tar.gz) = 70094

View File

@ -1,17 +0,0 @@
--- ./src/bwm-ng.c.orig 2007-02-27 14:29:33.000000000 +0000
+++ ./src/bwm-ng.c 2014-05-10 23:06:43.231799957 +0100
@@ -193,7 +193,13 @@
deinit(1,"invalid output selected\n");
if (input_method<0)
deinit(1,"invalid input selected\n");
-
+
+#ifdef LIBSTATGRAB
+ if (sg_init(0) != 0) {
+ deinit(1,"libstatgrab failed to initialise\n");
+ }
+#endif
+
/* init total stats to zero */
memset(&if_stats_total,0,(size_t)sizeof(t_iface_stats));
#ifdef HAVE_CURSES

View File

@ -1,22 +0,0 @@
--- ./src/input/libstatgrab.c.orig 2007-02-28 02:05:56.000000000 +0000
+++ ./src/input/libstatgrab.c 2014-05-10 23:06:43.234799929 +0100
@@ -27,7 +27,8 @@
/* do the actual work, get and print stats if verbose */
void get_iface_stats_libstat (char verbose) {
sg_network_io_stats *network_stats=NULL;
- int num_network_stats,current_if_num=0,hidden_if=0;
+ size_t num_network_stats;
+ int current_if_num=0,hidden_if=0;
t_iface_speed_stats stats; /* local struct, used to calc total values */
t_iface_speed_stats tmp_if_stats;
@@ -61,7 +62,8 @@
void get_iface_stats_libstatdisk (char verbose) {
sg_disk_io_stats *disk_stats=NULL;
- int num_disk_stats,current_if_num=0,hidden_if=0;
+ size_t num_disk_stats;
+ int current_if_num=0,hidden_if=0;
t_iface_speed_stats stats; /* local struct, used to calc total values */
t_iface_speed_stats tmp_if_stats;