diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2014-04-02 01:08:38 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-04-07 14:43:48 +0700 |
commit | 07a78ff4a0a26235630cb78f931ce18ac94551a8 (patch) | |
tree | 5d473cc4455335590a7f94383acb39577c0ce8ea /system/apcupsd/apcupsd.SlackBuild | |
parent | 78ee30de20073bb054727c4141a903ee6600a6c7 (diff) | |
download | slackbuilds-07a78ff4a0a26235630cb78f931ce18ac94551a8.tar.gz slackbuilds-07a78ff4a0a26235630cb78f931ce18ac94551a8.tar.xz |
system/apcupsd: Updated for version 3.14.12.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/apcupsd/apcupsd.SlackBuild')
-rw-r--r-- | system/apcupsd/apcupsd.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/system/apcupsd/apcupsd.SlackBuild b/system/apcupsd/apcupsd.SlackBuild index 38bce38c793..13612a607af 100644 --- a/system/apcupsd/apcupsd.SlackBuild +++ b/system/apcupsd/apcupsd.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for apcupsd -# Copyright 2006-2013 Robby Workman Northport, AL, USA +# Copyright 2006-2014 Robby Workman Northport, AL, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,8 +26,8 @@ # * added log rotation PRGNAM=apcupsd -VERSION=${VERSION:-3.14.10} -BUILD=${BUILD:-4} +VERSION=${VERSION:-3.14.12} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -79,6 +79,9 @@ patch -p1 < $CWD/patches/create_lockdir_in_init_script.diff # Use /var/lock/subsys as the LOCKDIR in apcupsd.conf patch -p1 < $CWD/patches/fix_lockdir_in_config_file.diff +# Fixup up a couple of nitpicks in the init script +patch -p1 < $CWD/patches/nitpicky-fixes-to-init-script.diff + # The "--disable-install-distdir" is important - don't remove it. # If you enable the distribution-specific install, then apcupsd will attempt # to patch the /etc/rc.d/rc.6 script on your system. This may be acceptable @@ -117,7 +120,7 @@ CXXFLAGS="$SLKCFLAGS -DNETSNMP_NO_LEGACY_DEFINITIONS=1" \ make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 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 {} \; @@ -141,8 +144,7 @@ done rm -rf $PKG/usr/share/hal mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - COPYING ChangeLog DISCLAIMER Developers INSTALL ReleaseNotes \ +cp -a COPYING ChangeLog DISCLAIMER Developers INSTALL ReleaseNotes \ VERIFYING examples doc/* $CWD/README.SLACKWARE $CWD/$PRGNAM.SlackBuild \ $PKG/usr/doc/$PRGNAM-$VERSION find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; |