system/apg: Added (Automated Password Generator)

Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
Georgy Shepelev 2010-12-26 12:15:25 -02:00 committed by Niels Horn
parent 26d5ed53da
commit 45f23d100c
4 changed files with 138 additions and 0 deletions

16
system/apg/README Normal file
View file

@ -0,0 +1,16 @@
APG (Automated Password Generator) is a tool set for random password
generation.
* For installation instructions see INSTALL
* For usage instructions see manpages
* For tips see doc/APG_TIPS
* For copying information see COPYING
To build the apg daemon as well, start the script with:
APGD=yes ./apg.SlackBuild
NOTE:
This release (APG v2.2.0) is NOT compatible with TkAPG (Tcl/Tk frontend
for APG).

93
system/apg/apg.SlackBuild Normal file
View file

@ -0,0 +1,93 @@
#!/bin/sh
# Slackware build script for <apg>
# Written by georgy shepelev (geo.shepelev@gmail.com)
PRGNAM=apg
VERSION=${VERSION:-2.2.3}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# if user wants to send generated passwords over network
APGD=${APGD:-no}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -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.?z*
cd $PRGNAM-$VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# edit compilation flags
sed -i -e "s,FLAGS\ =\ -Wall,FLAGS\ =\ -Wall\ $SLKCFLAGS,g" Makefile
if [ "$APGD" = "yes" ]; then
sed -i -e 's,#CS_LIBS\ =\ -lnsl$,CS_LIBS\ =\ -lnsl,g' Makefile
fi
make apg
make apgbfm
if [ "$APGD" = "yes" ]; then
make apgd
fi
make install INSTALL_PREFIX=$PKG/usr
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
for doc_file in README.CYGWIN THANKS INSTALL TODO COPYING \
INSTALL.CYGWIN CHANGES README
do
if [ -f $doc_file ]; then
cp -a \
$doc_file \
$PKG/usr/doc/$PRGNAM-$VERSION
fi
done
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
View file

@ -0,0 +1,10 @@
PRGNAM="apg"
VERSION="2.2.3"
HOMEPAGE="http://www.adel.nursat.kz/apg/index.shtml"
DOWNLOAD="http://www.adel.nursat.kz/apg/download/apg-2.2.3.tar.gz"
MD5SUM="3b3fc4f11e90635519fe627c1137c9ac"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Georgy Shepelev"
EMAIL="geo.shepelev@gmail.com"
APPROVED="Niels Horn"

19
system/apg/slack-desc Normal file
View 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 is a tool set for random password generation.
apg:
apg: Homepage: http://www.adel.nursat.kz/apg/index.shtml
apg:
apg:
apg:
apg:
apg:
apg: