diff options
author | miwi <miwi@FreeBSD.org> | 2008-01-23 17:32:24 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-01-23 17:32:24 +0800 |
commit | 7056f77030a8239035d173a161036f50c812f9e6 (patch) | |
tree | 9caf8326a4ebdf2ac733b0e0c0496c40c07d7c39 /sysutils/iograph | |
parent | 5d0fea00198bfd73c281bcb26823c26da3127450 (diff) | |
download | freebsd-ports-gnome-7056f77030a8239035d173a161036f50c812f9e6.tar.gz freebsd-ports-gnome-7056f77030a8239035d173a161036f50c812f9e6.tar.zst freebsd-ports-gnome-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/iograph')
-rw-r--r-- | sysutils/iograph/Makefile | 26 | ||||
-rw-r--r-- | sysutils/iograph/data.bin | bin | 0 -> 1104 bytes | |||
-rw-r--r-- | sysutils/iograph/distinfo | 3 | ||||
-rw-r--r-- | sysutils/iograph/pkg-descr | 8 |
4 files changed, 37 insertions, 0 deletions
diff --git a/sysutils/iograph/Makefile b/sysutils/iograph/Makefile new file mode 100644 index 000000000000..40debe0482ed --- /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 Binary files differnew file mode 100644 index 000000000000..07657a03bd85 --- /dev/null +++ b/sysutils/iograph/data.bin diff --git a/sysutils/iograph/distinfo b/sysutils/iograph/distinfo new file mode 100644 index 000000000000..84a9056e435a --- /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 000000000000..9deb764d7c29 --- /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 |