aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2008-01-23 17:32:24 +0800
committermiwi <miwi@FreeBSD.org>2008-01-23 17:32:24 +0800
commit7056f77030a8239035d173a161036f50c812f9e6 (patch)
tree9caf8326a4ebdf2ac733b0e0c0496c40c07d7c39 /sysutils
parent5d0fea00198bfd73c281bcb26823c26da3127450 (diff)
downloadfreebsd-ports-graphics-7056f77030a8239035d173a161036f50c812f9e6.tar.gz
freebsd-ports-graphics-7056f77030a8239035d173a161036f50c812f9e6.tar.zst
freebsd-ports-graphics-7056f77030a8239035d173a161036f50c812f9e6.zip
iograph counts network traffic for one interface and creates an accounting
statistic by summing up the transfered bytes. Statistics are created hourly, daily and monthly and are saved as static HTML files. It is written in pure C without the need of external libraries, targetted to be used in an embedded firewall system. A HTTP server is not included. WWW: mdolze.gmxhome.de/iograph.shtml PR: ports/119841 Submitted by: Markus Dolze
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/iograph/Makefile26
-rw-r--r--sysutils/iograph/data.binbin0 -> 1104 bytes
-rw-r--r--sysutils/iograph/distinfo3
-rw-r--r--sysutils/iograph/pkg-descr8
5 files changed, 38 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 7cc21cf8dad..3142d4b7429 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -311,6 +311,7 @@
SUBDIR += idled
SUBDIR += iextract
SUBDIR += installwatch
+ SUBDIR += iograph
SUBDIR += ipa
SUBDIR += ipmi-kmod
SUBDIR += ipmitool
diff --git a/sysutils/iograph/Makefile b/sysutils/iograph/Makefile
new file mode 100644
index 00000000000..40debe0482e
--- /dev/null
+++ b/sysutils/iograph/Makefile
@@ -0,0 +1,26 @@
+# New ports collection makefile for: iograph
+# Date created: 28 September 2007
+# Whom: Markus Dolze
+#
+# $FreeBSD$
+#
+
+PORTNAME= iograph
+PORTVERSION= 0.9.1
+CATEGORIES= sysutils
+MASTER_SITES= http://mdolze.gmxhome.de/files/
+
+MAINTAINER= bsdfan@nurfuerspam.de
+COMMENT= Creates HTML statistics of network transfer
+
+PLIST_FILES= bin/iograph \
+ %%DATADIR%%/in.gif \
+ %%DATADIR%%/out.gif \
+ %%DATADIR%%/iograph.gif
+PLIST_DIRS= %%DATADIR%%
+
+GNU_CONFIGURE= yes
+
+MAN8= iograph.8
+
+.include <bsd.port.mk>
diff --git a/sysutils/iograph/data.bin b/sysutils/iograph/data.bin
new file mode 100644
index 00000000000..07657a03bd8
--- /dev/null
+++ b/sysutils/iograph/data.bin
Binary files differ
diff --git a/sysutils/iograph/distinfo b/sysutils/iograph/distinfo
new file mode 100644
index 00000000000..84a9056e435
--- /dev/null
+++ b/sysutils/iograph/distinfo
@@ -0,0 +1,3 @@
+MD5 (iograph-0.9.1.tar.gz) = d36beaed9da7cc11b35b948cdbf44776
+SHA256 (iograph-0.9.1.tar.gz) = 49d07acf292bddf5fc87e77eb546d5c49efd101ec560a2710faa293afe663149
+SIZE (iograph-0.9.1.tar.gz) = 79964
diff --git a/sysutils/iograph/pkg-descr b/sysutils/iograph/pkg-descr
new file mode 100644
index 00000000000..9deb764d7c2
--- /dev/null
+++ b/sysutils/iograph/pkg-descr
@@ -0,0 +1,8 @@
+iograph counts network traffic for one interface and creates an accounting
+statistic by summing up the transfered bytes. Statistics are created hourly,
+daily and monthly and are saved as static HTML files.
+
+It is written in pure C without the need of external libraries, targetted to
+be used in an embedded firewall system. A HTTP server is not included.
+
+WWW: mdolze.gmxhome.de/iograph.shtml