diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-05-01 17:31:38 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-05-01 17:31:38 +0000 |
commit | 33065b97e722101085e1012c80fb4b0bd84fea60 (patch) | |
tree | 9fc564d4d60c01f78b2dfdda2897480adada072b /misc | |
parent | 0d0e9a428d6b8a10f80d7c375ad06c055a29c0fd (diff) | |
download | FreeBSD-ports-33065b97e722101085e1012c80fb4b0bd84fea60.zip FreeBSD-ports-33065b97e722101085e1012c80fb4b0bd84fea60.tar.gz |
add stan
Generate several statisical information of a stream
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/stan/Makefile | 20 | ||||
-rw-r--r-- | misc/stan/distinfo | 1 | ||||
-rw-r--r-- | misc/stan/pkg-comment | 1 | ||||
-rw-r--r-- | misc/stan/pkg-descr | 24 | ||||
-rw-r--r-- | misc/stan/pkg-plist | 1 |
6 files changed, 48 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index c9cece6..5e46205 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -145,6 +145,7 @@ SUBDIR += snowflake SUBDIR += splitvt SUBDIR += sshbuddy + SUBDIR += stan SUBDIR += tcb SUBDIR += team SUBDIR += tet diff --git a/misc/stan/Makefile b/misc/stan/Makefile new file mode 100644 index 0000000..0dcf947 --- /dev/null +++ b/misc/stan/Makefile @@ -0,0 +1,20 @@ +# ex:ts=8 +# New ports collection makefile for: stan +# Date created: May 1, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= stan +PORTVERSION= 0.2 +CATEGORIES= misc +MASTER_SITES= http://www.r0q.cx/stan/ + +MAINTAINER= ijliao@FreeBSD.org + +GNU_CONFIGURE= yes + +MAN1= stan.1 + +.include <bsd.port.mk> diff --git a/misc/stan/distinfo b/misc/stan/distinfo new file mode 100644 index 0000000..8c8bc78 --- /dev/null +++ b/misc/stan/distinfo @@ -0,0 +1 @@ +MD5 (stan-0.2.tar.gz) = 2b4d0a9fdd1ff203bc613fe77ae2525a diff --git a/misc/stan/pkg-comment b/misc/stan/pkg-comment new file mode 100644 index 0000000..8bc4a82 --- /dev/null +++ b/misc/stan/pkg-comment @@ -0,0 +1 @@ +Generate several statisical information of a stream diff --git a/misc/stan/pkg-descr b/misc/stan/pkg-descr new file mode 100644 index 0000000..69c236f --- /dev/null +++ b/misc/stan/pkg-descr @@ -0,0 +1,24 @@ +Stan is a small console application that works on all Unix systems. It is +able to generate several statisical information of a stream. A stream can +be either standard input or given files. Stan can be used in order to analyse +encrypted data or to measure the quality of a pseudo random number generator. + +There are three types of statistics generated by Stan: + + - General Statistics + General statistical standard values are based on the bytes of the input + stream. Stan is able to calculate the mean, the median, the deviation + and the chi-squared value of the given stream. + + - Pattern Statistics + It is possible to do pattern analysis up to a specified pattern length. + Stan will analyse the patterns inside the stream and output the most + used patterns and the range of patterns used. + + - Bit Statistics + By analysing the bit of the given stream and dividing them into run, + sequences of the same bit, stan is able to show information that are + useful for analysing pseudo random numbers. Stan calculates ratios + between run lengths and 0 runs to 1 runs. + +WWW: http://www.r0q.cx/stan/ diff --git a/misc/stan/pkg-plist b/misc/stan/pkg-plist new file mode 100644 index 0000000..5cdfaa6 --- /dev/null +++ b/misc/stan/pkg-plist @@ -0,0 +1 @@ +bin/stan |