pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/nload Import nload from pkgsrc-wip. Packaged by B...
details: https://anonhg.NetBSD.org/pkgsrc/rev/157b9a63ea69
branches: trunk
changeset: 503043:157b9a63ea69
user: minskim <minskim%pkgsrc.org@localhost>
date: Sun Nov 13 08:31:05 2005 +0000
description:
Import nload from pkgsrc-wip. Packaged by Bartosz Kuzma.
nload is a console application which monitors network traffic and
bandwidth usage in real time. It visualizes the in- and outgoing
traffic using two graphs and provides additional info like the total
amount of transfered data and min/max network usage.
diffstat:
net/nload/DESCR | 4 ++++
net/nload/Makefile | 16 ++++++++++++++++
net/nload/PLIST | 3 +++
net/nload/distinfo | 8 ++++++++
net/nload/patches/patch-aa | 13 +++++++++++++
net/nload/patches/patch-ab | 13 +++++++++++++
net/nload/patches/patch-ac | 13 +++++++++++++
7 files changed, 70 insertions(+), 0 deletions(-)
diffs (98 lines):
diff -r 65d895602476 -r 157b9a63ea69 net/nload/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/DESCR Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,4 @@
+nload is a console application which monitors network traffic and
+bandwidth usage in real time. It visualizes the in- and outgoing
+traffic using two graphs and provides additional info like the total
+amount of transfered data and min/max network usage.
diff -r 65d895602476 -r 157b9a63ea69 net/nload/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/Makefile Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/11/13 08:31:05 minskim Exp $
+#
+
+DISTNAME= nload-0.6.0
+CATEGORIES= net sysutils
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nload/}
+
+MAINTAINER= bartosz%atom.eu.org@localhost
+HOMEPAGE= http://www.roland-riegel.de/nload/
+COMMENT= Monitoring network traffic and bandwidth usage
+
+MANCOMPRESSED= yes
+GNU_CONFIGURE= yes
+
+.include "../../devel/ncurses/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 65d895602476 -r 157b9a63ea69 net/nload/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/PLIST Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/11/13 08:31:05 minskim Exp $
+bin/nload
+man/man1/nload.1
diff -r 65d895602476 -r 157b9a63ea69 net/nload/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/distinfo Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,8 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/11/13 08:31:05 minskim Exp $
+
+SHA1 (nload-0.6.0.tar.gz) = 3f71fb4fce9b8f4da7dccf9ab9696c3d051012c2
+RMD160 (nload-0.6.0.tar.gz) = d7bcd89d32b90ce4e5676c6630e478cd3e73a9d7
+Size (nload-0.6.0.tar.gz) = 121136 bytes
+SHA1 (patch-aa) = 2a335e0aa7d080247c03a0b5692621ddd5dcf61f
+SHA1 (patch-ab) = 2c404b9eb92a1a79a7c1b0b442bcfa1047b89758
+SHA1 (patch-ac) = 83de623394a7ec1eefa672c4c1f98366f887b0b9
diff -r 65d895602476 -r 157b9a63ea69 net/nload/patches/patch-aa
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/patches/patch-aa Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/11/13 08:31:05 minskim Exp $
+
+--- src/form_field.cpp.orig 2003-11-25 19:05:01.000000000 +0100
++++ src/form_field.cpp 2005-11-07 21:50:38.000000000 +0100
+@@ -30,7 +30,7 @@
+
+ void Field::setBuffer( const char* new_buffer )
+ {
+- set_field_buffer( m_field, 0, new_buffer );
++ set_field_buffer( m_field, 0, ( char* )new_buffer );
+ }
+
+ const char* Field::buffer()
diff -r 65d895602476 -r 157b9a63ea69 net/nload/patches/patch-ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/patches/patch-ab Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2005/11/13 08:31:05 minskim Exp $
+
+--- configure.in.orig 2003-12-14 23:41:18.000000000 -0800
++++ configure.in
+@@ -32,7 +32,7 @@ case $host_os in
+ AC_DEFINE(HAVE_LINUX, 1, [Define to 1 if your build target is Linux.])
+ AC_CHECK_FUNCS([memset])
+ ;;
+- *bsd*)
++ *bsd* | *darwin*)
+ AC_DEFINE(HAVE_BSD, 1, [Define to 1 if your build target is BSD.])
+ AC_FUNC_MALLOC
+ ;;
diff -r 65d895602476 -r 157b9a63ea69 net/nload/patches/patch-ac
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/nload/patches/patch-ac Sun Nov 13 08:31:05 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1.1.1 2005/11/13 08:31:05 minskim Exp $
+
+--- configure.orig 2003-12-14 23:41:34.000000000 -0800
++++ configure
+@@ -3833,7 +3833,7 @@ fi
+ done
+
+ ;;
+- *bsd*)
++ *bsd* | *darwin*)
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_BSD 1
Home |
Main Index |
Thread Index |
Old Index