diff options
Diffstat (limited to 'source/a/acpid')
-rwxr-xr-x | source/a/acpid/acpid.SlackBuild | 59 | ||||
-rw-r--r-- | source/a/acpid/doinst.sh | 6 | ||||
-rw-r--r-- | source/a/acpid/rc.acpid | 6 |
3 files changed, 45 insertions, 26 deletions
diff --git a/source/a/acpid/acpid.SlackBuild b/source/a/acpid/acpid.SlackBuild index 3010e0136..cb4831385 100755 --- a/source/a/acpid/acpid.SlackBuild +++ b/source/a/acpid/acpid.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2009 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2009, 2010 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -20,9 +20,20 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=1.0.8 -ARCH=${ARCH:-x86_64} -BUILD=${BUILD:-2} +VERSION=${VERSION:-$(echo acpid-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} + +NUMJOBS=${NUMJOBS:--j8} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi CWD=$(pwd) TMP=${TMP:-/tmp} @@ -42,33 +53,37 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -make || exit 1 -strip acpid acpi_listen -mkdir -p $PKG/usr/sbin -cat acpid > $PKG/usr/sbin/acpid -chmod 755 $PKG/usr/sbin/acpid -mkdir -p $PKG/usr/bin -cat acpi_listen > $PKG/usr/bin/acpi_listen -chmod 755 $PKG/usr/bin/acpi_listen -mkdir -p $PKG/usr/man/man8 -cat acpid.8 | gzip -9c > $PKG/usr/man/man8/acpid.8.gz -cat acpi_listen.8 | gzip -9c > $PKG/usr/man/man8/acpi_listen.8.gz -mkdir -p $PKG/usr/doc/acpid-$VERSION -cp -a Changelog README \ - $PKG/usr/doc/acpid-$VERSION -cp -a samples $PKG/usr/doc/acpid-$VERSION +make install \ + OPT="-O2" \ + PREFIX=/usr \ + MANDIR=/usr/man \ + DOCDIR=/usr/doc/acpid-$VERSION \ + DESTDIR=$PKG \ + || exit 1 + +strip --strip-unneeded $PKG/usr/bin/acpi_listen $PKG/usr/sbin/acpid + +# If there's a ChangeLog, installing at least part of the recent history +# is useful, but don't let it get totally out of control: +if [ -r ChangeLog ]; then + DOCSDIR=$(echo $PKG/usr/doc/*-$VERSION) + cat ChangeLog | head -n 1000 > $DOCSDIR/ChangeLog + touch -r ChangeLog $DOCSDIR/ChangeLog +fi + mkdir -p $PKG/etc/acpi/events zcat $CWD/acpi_handler.sh.gz > $PKG/etc/acpi/acpi_handler.sh.new -chmod 755 $PKG/etc/acpi/acpi_handler.sh.new +chmod 0755 $PKG/etc/acpi/acpi_handler.sh.new zcat $CWD/default.gz > $PKG/etc/acpi/events/default + mkdir -p $PKG/etc/rc.d zcat $CWD/rc.acpid.gz > $PKG/etc/rc.d/rc.acpid -chmod 755 $PKG/etc/rc.d/rc.acpid +chmod 0755 $PKG/etc/rc.d/rc.acpid + mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh -# Build the package: cd $PKG /sbin/makepkg -l y -c n $TMP/acpid-$VERSION-$ARCH-$BUILD.txz diff --git a/source/a/acpid/doinst.sh b/source/a/acpid/doinst.sh index c090b9fe5..dfc78d656 100644 --- a/source/a/acpid/doinst.sh +++ b/source/a/acpid/doinst.sh @@ -1,11 +1,11 @@ -#!/bin/sh config() { NEW="$1" - OLD="`dirname $NEW`/`basename $NEW .new`" + OLD="$(dirname $NEW)/$(basename $NEW .new)" # If there's no config file by that name, mv it over: if [ ! -r $OLD ]; then mv $NEW $OLD - elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy rm $NEW fi # Otherwise, we leave the .new copy for the admin to consider... diff --git a/source/a/acpid/rc.acpid b/source/a/acpid/rc.acpid index 32486d17c..d6b74e881 100644 --- a/source/a/acpid/rc.acpid +++ b/source/a/acpid/rc.acpid @@ -11,7 +11,11 @@ acpid_start() { # Stop acpid: acpid_stop() { - killall acpid + if [ -r /var/run/acpid.pid ]; then + kill $(cat /var/run/acpid.pid) + else + killall acpid + fi } # Restart acpid: |