diff options
author | Nikos Yotis <giotis.nikos@gmail.com> | 2017-09-03 20:49:31 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-09-09 06:56:11 +0700 |
commit | 7dc7d7da773008ec5b1a627155d04e96da798895 (patch) | |
tree | 1398acfde779e629840b1c21be6af09b3f3695b4 | |
parent | 3f816acd448e538d09e778acd633d33a3a4094ef (diff) | |
download | slackbuilds-7dc7d7da773008ec5b1a627155d04e96da798895.tar.gz |
system/rndaddentropy: Added (Small wrapper around RNDADDENTROPY).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/rndaddentropy/README | 2 | ||||
-rw-r--r-- | system/rndaddentropy/rndaddentropy.SlackBuild | 97 | ||||
-rw-r--r-- | system/rndaddentropy/rndaddentropy.info | 10 | ||||
-rw-r--r-- | system/rndaddentropy/slack-desc | 19 |
4 files changed, 128 insertions, 0 deletions
diff --git a/system/rndaddentropy/README b/system/rndaddentropy/README new file mode 100644 index 0000000000..b73178bae4 --- /dev/null +++ b/system/rndaddentropy/README @@ -0,0 +1,2 @@ +rndaddentropy is a small c program that pipes whatever is in it's +stdin to the kernel entropy pool. It is part of the twuewand package. diff --git a/system/rndaddentropy/rndaddentropy.SlackBuild b/system/rndaddentropy/rndaddentropy.SlackBuild new file mode 100644 index 0000000000..763f90ba44 --- /dev/null +++ b/system/rndaddentropy/rndaddentropy.SlackBuild @@ -0,0 +1,97 @@ +#!/bin/sh + +# Slackware build script for rndaddentropy + +# Copyright 2017, Nikos Giotis, Athens, GR +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PKGNAM=rndaddentropy +SRCNAM=twuewand +VERSION=${VERSION:-3.0.0} +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-$PKGNAM + +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 +cd $TMP +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +cd rndaddentropy +make + +# binary +mkdir -p $PKG/sbin +cp rndaddentropy $PKG/sbin +chmod 0700 $PKG/sbin/rndaddentropy +cd .. + +# manpages +mkdir -p $PKG/usr/man +cp doc/rndaddentropy.1 $PKG/usr/man +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 + +# docs +mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION +cp -a $TMP/$SRCNAM-$VERSION/{README,COPYING} \ + $PKG/usr/doc/$PKGNAM-$VERSION +cat $CWD/$PKGNAM.SlackBuild > $PKG/usr/doc/$PKGNAM-$VERSION/$PKGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/rndaddentropy/rndaddentropy.info b/system/rndaddentropy/rndaddentropy.info new file mode 100644 index 0000000000..571aa1049f --- /dev/null +++ b/system/rndaddentropy/rndaddentropy.info @@ -0,0 +1,10 @@ +PRGNAM="rndaddentropy" +VERSION="3.0.0" +HOMEPAGE="https://www.finnie.org/software/twuewand/" +DOWNLOAD="https://www.finnie.org/software/twuewand/twuewand-3.0.0.tar.gz" +MD5SUM="01db5df451cb89181f0243ed8915b0ce" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Nikos Yotis" +EMAIL="giotis.nikos@gmail.com"
\ No newline at end of file diff --git a/system/rndaddentropy/slack-desc b/system/rndaddentropy/slack-desc new file mode 100644 index 0000000000..815b28db5d --- /dev/null +++ b/system/rndaddentropy/slack-desc @@ -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------------------------------------------------------| +rndaddentropy: rndaddentropy (Small wrapper around RNDADDENTROPY ioctl) +rndaddentropy: +rndaddentropy: rndaddentropy is a small c program that pipes whatever is in it's +rndaddentropy: stdin to the kernel entropy pool. It is part of the twuewand package. +rndaddentropy: +rndaddentropy: https://www.finnie.org/software/twuewand/ +rndaddentropy: +rndaddentropy: +rndaddentropy: +rndaddentropy: +rndaddentropy: |