diff options
author | dan <dan@pkgsrc.org> | 2003-08-29 00:25:34 +0000 |
---|---|---|
committer | dan <dan@pkgsrc.org> | 2003-08-29 00:25:34 +0000 |
commit | c9d6bffb74c8ca7ad4b9f0e4c1ef3a6474f90a86 (patch) | |
tree | aed086c20b84fd97dc8ba0b675f41ccb3079b3f6 /security | |
parent | 663793b95110bf7c1020af8c1689f19f6660c7f3 (diff) | |
download | pkgsrc-c9d6bffb74c8ca7ad4b9f0e4c1ef3a6474f90a86.tar.gz |
bitstir monitors rnd(4) for low entropy and uses find(1) to solicit more.
program and pkg from Peter Hendrickson <pdh@wiredyne.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 3 | ||||
-rw-r--r-- | security/bitstir/DESCR | 7 | ||||
-rw-r--r-- | security/bitstir/Makefile | 16 | ||||
-rw-r--r-- | security/bitstir/Makefile~ | 14 | ||||
-rw-r--r-- | security/bitstir/PLIST | 4 | ||||
-rw-r--r-- | security/bitstir/distinfo | 5 | ||||
-rw-r--r-- | security/bitstir/patches/patch-aa | 15 |
7 files changed, 63 insertions, 1 deletions
diff --git a/security/Makefile b/security/Makefile index 9ea104747b4..2f0c1d1e6e2 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.139 2003/08/19 15:48:17 agc Exp $ +# $NetBSD: Makefile,v 1.140 2003/08/29 00:25:34 dan Exp $ # COMMENT= Security tools @@ -15,6 +15,7 @@ SUBDIR+= arirang SUBDIR+= audit-packages SUBDIR+= avcheck SUBDIR+= beecrypt +SUBDIR+= bitstir SUBDIR+= cfs SUBDIR+= crack SUBDIR+= cy-login diff --git a/security/bitstir/DESCR b/security/bitstir/DESCR new file mode 100644 index 00000000000..26b801f31b9 --- /dev/null +++ b/security/bitstir/DESCR @@ -0,0 +1,7 @@ +Bitstir monitors the level of entropy available from /dev/random and +generates disk activity to automatically restore this level when it +gets low. Programs which block when entropy runs out are delayed only +momentarily if at all. + +Bitstir was written by Peter Hendrickson <pdh@wiredyne.com>. There +is a page at http://www.wiredyne.com/software/bitstir.html. diff --git a/security/bitstir/Makefile b/security/bitstir/Makefile new file mode 100644 index 00000000000..48e56d804fc --- /dev/null +++ b/security/bitstir/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2003/08/29 00:25:35 dan Exp $ +# + +DISTNAME= bitstir-0.2 +CATEGORIES= security +MASTER_SITES= http://www.wiredyne.com/software/downloads/ + +MAINTAINER= pdh@wiredyne.com +HOMEPAGE= http://www.wiredyne.com/software/downloads/ +COMMENT= Entropy restoration daemon + +USE_BUILDLINK2= yes + +ONLY_FOR_PLATFORM= NetBSD-*-* + +.include "../../mk/bsd.pkg.mk" diff --git a/security/bitstir/Makefile~ b/security/bitstir/Makefile~ new file mode 100644 index 00000000000..12d593b1d01 --- /dev/null +++ b/security/bitstir/Makefile~ @@ -0,0 +1,14 @@ +# $NetBSD: Makefile~,v 1.1 2003/08/29 00:25:36 dan Exp $ +# + +DISTNAME= bitstir-0.2 +CATEGORIES= security +MASTER_SITES= http://www.wiredyne.com/software/downloads/ + +MAINTAINER= pdh@wiredyne.com +HOMEPAGE= http://www.wiredyne.com/software/downloads/ +COMMENT= Entropy restoration daemon + +USE_BUILDLINK2= yes + +.include "../../mk/bsd.pkg.mk" diff --git a/security/bitstir/PLIST b/security/bitstir/PLIST new file mode 100644 index 00000000000..72202e6d672 --- /dev/null +++ b/security/bitstir/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1 2003/08/29 00:25:36 dan Exp $ +bin/bits-avail +bin/bitstir +man/man8/bitstir.8 diff --git a/security/bitstir/distinfo b/security/bitstir/distinfo new file mode 100644 index 00000000000..cc90439a1fc --- /dev/null +++ b/security/bitstir/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2003/08/29 00:25:36 dan Exp $ + +SHA1 (bitstir-0.2.tar.gz) = 867fc2b28805a71ca2f1e3e3337b3c906951e121 +Size (bitstir-0.2.tar.gz) = 6423 bytes +SHA1 (patch-aa) = 564b3895b84f07dc05553b3289165e1a2abbe747 diff --git a/security/bitstir/patches/patch-aa b/security/bitstir/patches/patch-aa new file mode 100644 index 00000000000..caf95edc71f --- /dev/null +++ b/security/bitstir/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2003/08/29 00:25:37 dan Exp $ + +--- Makefile.orig Wed Aug 27 12:58:29 2003 ++++ Makefile +@@ -2,8 +2,8 @@ + + # Makefile for bitstir. + +-INSTALLDIR= /usr/local/bin +-MANDIR= /usr/local/man ++INSTALLDIR= ${PREFIX}/bin ++MANDIR= ${PREFIX}/man + FIND?= /usr/bin/find + + CC?= cc |