openbsd-ports/misc/ent/Makefile
sthen b8a36d4680 import misc/ent, from maintainer Brad Tilley
ent - a program which applies various tests (Entropy, Chi-square,
Arithmetic Mean, Monte Carlo Value for Pi, Serial Correlation
Coefficient) to sequences of bytes stored in files and reports the
results of those tests. The program is useful for evaluating pseudo
random number generators for encryption and statistical sampling
applications, compression algorithms, and other applications where the
information density of a file is of interest.
2009-09-06 11:15:00 +00:00

34 lines
763 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2009/09/06 11:15:00 sthen Exp $
# Original from: John Walker http://www.fourmilab.ch/random/
CATEGORIES= misc
COMMENT= pseudo random number sequence test program
DISTNAME= ent-1.0
EXTRACT_SUFX= .zip
HOMEPAGE= http://www.fourmilab.ch/random/
MAINTAINER= Brad Tilley <brad@16systems.com>
MASTER_SITES= http://16systems.com/ent/
WRKSRC= ${WRKDIR}
ALL_TARGET= ent
MAKE_FLAGS= CFLAGS="${CFLAGS}" CC="${CC}"
# Public Domain; see ent.html
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += c m
NO_REGRESS= Yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ent ${PREFIX}/bin
${INSTALL_MAN} ${FILESDIR}/ent.1 ${PREFIX}/man/man1
.include <bsd.port.mk>