mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
system/apg: Added (automated password generator)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
ddbdf980c4
commit
0248f7f6f8
4 changed files with 124 additions and 0 deletions
18
system/apg/README
Normal file
18
system/apg/README
Normal file
|
@ -0,0 +1,18 @@
|
|||
apg (automated password generator)
|
||||
|
||||
apg generates random passwords according to several algorithms. The
|
||||
default algorithm is pronounceable password generation algorithm
|
||||
designed by Morrie Gasser and described in 'A Random Word Generator
|
||||
For Pronounceable Passwords (National Technical Information Service
|
||||
(NTIS) AD-A-017676)'.
|
||||
|
||||
This SlackBuild by default patches apg to use /dev/urandom rather than
|
||||
/dev/random for generating random seeds, to avoid apg blocking while
|
||||
waiting for the kernel to gather more entropy. If you're worried about
|
||||
this being possibly insecure, first read:
|
||||
|
||||
http://web.archive.org/web/20201109034537/https://www.2uo.de/myths-about-urandom/
|
||||
|
||||
Then, if you remain unconvinced, you can run this script with
|
||||
URANDOM=no in the environment to use /dev/random. Remember, apg is
|
||||
only using this to generate *seeds* for its own built-in PRNG!
|
77
system/apg/apg.SlackBuild
Normal file
77
system/apg/apg.SlackBuild
Normal file
|
@ -0,0 +1,77 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for apg
|
||||
|
||||
# Written by B. Watson (yalhcru@gmail.com)
|
||||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# TODO: figure out what's wrong with apgd. It works fine when called
|
||||
# from the command line, but when starting it from inetd it seems
|
||||
# to get stuck in a loop, never prints any output, logs hundreds
|
||||
# of requests, and never generates any output. This is low-priority
|
||||
# because nobody actually *uses* a password-generation TCP service...
|
||||
|
||||
PRGNAM=apg
|
||||
VERSION=${VERSION:-2.2.3}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||
|
||||
[ "${URANDOM:-yes}" = "no" ] || sed -i 's,/dev/random,/dev/urandom,' rnd.h
|
||||
|
||||
# If we were going to build the daemon, we'd use "make all".
|
||||
|
||||
make FLAGS="$SLKCFLAGS -Wl,-s"
|
||||
make install INSTALL_PREFIX=$PKG/usr
|
||||
gzip -9 $PKG/usr/man/man?/*.?
|
||||
|
||||
rm -rf doc/man
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a CHANGES COPYING LICENSE README README.md THANKS TODO doc/* \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
system/apg/apg.info
Normal file
10
system/apg/apg.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="apg"
|
||||
VERSION="2.2.3"
|
||||
HOMEPAGE="https://github.com/jabenninghoff/apg/blob/master/rnd.c"
|
||||
DOWNLOAD="https://github.com/jabenninghoff/apg/archive/v2.2.3/apg-2.2.3.tar.gz"
|
||||
MD5SUM="6d1490d7835dbf5a04ade75fbad3d726"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
19
system/apg/slack-desc
Normal file
19
system/apg/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
apg: apg (automated password generator)
|
||||
apg:
|
||||
apg: apg generates random passwords according to several algorithms. The
|
||||
apg: default algorithm is pronounceable password generation algorithm
|
||||
apg: designed by Morrie Gasser and described in 'A Random Word Generator
|
||||
apg: For Pronounceable Passwords (National Technical Information Service
|
||||
apg: (NTIS) AD-A-017676)'.
|
||||
apg:
|
||||
apg:
|
||||
apg:
|
||||
apg:
|
Loading…
Reference in a new issue