diff options
author | gnubien <resident@scrapshells.com> | 2010-05-11 15:00:13 +0200 |
---|---|---|
committer | Alan Hicks <alan@lizella.net> | 2010-05-11 15:00:13 +0200 |
commit | 4e66159b1201063154b6a19bccbfa549a093d4ec (patch) | |
tree | df4ed321814e6391de8b02c27e6296af770e5d52 /misc | |
parent | 02eb929d0aaa68cdd75649749a21c343b676ce17 (diff) | |
download | slackbuilds-4e66159b1201063154b6a19bccbfa549a093d4ec.tar.gz |
misc/beep: Initial import
Diffstat (limited to 'misc')
-rw-r--r-- | misc/beep/README | 15 | ||||
-rw-r--r-- | misc/beep/beep.SlackBuild | 62 | ||||
-rw-r--r-- | misc/beep/beep.info | 8 | ||||
-rw-r--r-- | misc/beep/slack-desc | 11 |
4 files changed, 96 insertions, 0 deletions
diff --git a/misc/beep/README b/misc/beep/README new file mode 100644 index 0000000000..f78c1af8fd --- /dev/null +++ b/misc/beep/README @@ -0,0 +1,15 @@ +beep does exactly what you would expect: it beeps. + +Unlike printf("\a"), beep allows you to control pitch, duration, and +repetitions. Its job is to live inside shell/perl scripts and allow more +granularity than one would otherwise have. It is controlled completely +through command line options. It's not supposed to be complex, and it +isn't - but it makes system monitoring (or whatever else it gets hacked +onto) that much more informative. + +You may need to set beep executable suid; thre are potential security +issues with doing so, but the beep source code is very small and easily +auditable, and you won't get a lot of use of it unless it's suid, but +that's your call. See the SlackBuild script for the proper variable to +change if you want to install it suid. + diff --git a/misc/beep/beep.SlackBuild b/misc/beep/beep.SlackBuild new file mode 100644 index 0000000000..efd83bb04b --- /dev/null +++ b/misc/beep/beep.SlackBuild @@ -0,0 +1,62 @@ +#!/bin/sh + +# Slackware build script for beep + +# Written by gnubien contact: memo gnubien at freenode.net +# This submission is considered to be in the public domain + +# Modified by Robby Workman of the SlackBuilds.org project + +PRGNAM=beep +VERSION=1.2.2 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp + +# See the manpage for more information on why, but you will need to install +# beep with the suid bit set in order to have full functionality in all +# instances. The default is NO, but it *should* be safe to change it to YES +SET_SUID=NO + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# NO configure file for beep + +# We're going to install the beep executable into /bin instead of /usr/bin +# This way, init scripts can use it if you happen to want to customize them +# with some troubleshooting tones. Thanks to Erik van Tromp (alphageek) for +# the suggestion. + +mkdir -p $PKG/bin $PKG/usr/man/man1 || exit 1 + +make || exit +strip --strip-unneeded beep + +if [ "$SET_SUID" = "YES" ]; then + install -m 4755 beep $PKG/bin +else + install -m 0755 beep $PKG/bin +fi + +install -m 0644 beep.1.gz $PKG/usr/man/man1 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGELOG COPYING CREDITS INSTALL README $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.tgz diff --git a/misc/beep/beep.info b/misc/beep/beep.info new file mode 100644 index 0000000000..a4e9378c70 --- /dev/null +++ b/misc/beep/beep.info @@ -0,0 +1,8 @@ +PRGNAM="beep" +VERSION="1.2.2" +HOMEPAGE="http://www.johnath.com/beep/" +DOWNLOAD="http://www.johnath.com/beep/beep-1.2.2.tar.gz" +MD5SUM="d541419fd7e5642952d7b48cbb40c712" +MAINTAINER="gnubien" +EMAIL="resident@scrapshells.com" +APPROVED="Alan_Hicks,robw810" diff --git a/misc/beep/slack-desc b/misc/beep/slack-desc new file mode 100644 index 0000000000..27266c8028 --- /dev/null +++ b/misc/beep/slack-desc @@ -0,0 +1,11 @@ +beep: beep does exactly what you would expect: it beeps. +beep: +beep: Unlike printf("\a"), beep allows you to control pitch, duration, and +beep: repetitions. Its job is to live inside shell/perl scripts and allow more +beep: granularity than one would otherwise have. It is controlled completely +beep: through command line options. It's not supposed to be complex, and it +beep: isn't - but it makes system monitoring (or whatever else it gets hacked +beep: onto) that much more informative. +beep: +beep: You may need to set beep executable suid. +beep: |