summaryrefslogtreecommitdiffstats
path: root/desktop/wmshutdown
diff options
context:
space:
mode:
author Michael Heras <userxbw@gmail.com>2018-02-22 23:35:43 +0000
committer David Spencer <idlemoor@slackbuilds.org>2018-02-22 23:35:43 +0000
commit856a9e859b7d228a8620f1d19c8086ab506a8d8a (patch)
tree83ee438d0fd2949052dd744e29fa8e26be7ea4ae /desktop/wmshutdown
parent8b10c0a7b0549a40f3f4793705bd654a5515858a (diff)
downloadslackbuilds-856a9e859b7d228a8620f1d19c8086ab506a8d8a.tar.gz
slackbuilds-856a9e859b7d228a8620f1d19c8086ab506a8d8a.tar.xz
desktop/wmshutdown: Added (dockapp for shutdown).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'desktop/wmshutdown')
-rw-r--r--desktop/wmshutdown/README4
-rw-r--r--desktop/wmshutdown/slack-desc19
-rw-r--r--desktop/wmshutdown/wmshutdown.SlackBuild108
-rw-r--r--desktop/wmshutdown/wmshutdown.info10
4 files changed, 141 insertions, 0 deletions
diff --git a/desktop/wmshutdown/README b/desktop/wmshutdown/README
new file mode 100644
index 0000000000..6b9f142f49
--- /dev/null
+++ b/desktop/wmshutdown/README
@@ -0,0 +1,4 @@
+A Window Maker Dock App for Shutting Down your machine.
+
+Requires adding polkit1 rules to gain root access to reboot and
+shutdown system via user.
diff --git a/desktop/wmshutdown/slack-desc b/desktop/wmshutdown/slack-desc
new file mode 100644
index 0000000000..9b760e0f9b
--- /dev/null
+++ b/desktop/wmshutdown/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------------------------------------------------------|
+wmshutdown: wmshutdown (dockapp for shutdown)
+wmshutdown:
+wmshutdown: A Window Maker Dock App for Rebooting and Shutting Down your machine.
+wmshutdown:
+wmshutdown:
+wmshutdown:
+wmshutdown:
+wmshutdown:
+wmshutdown:
+wmshutdown:
+wmshutdown:
diff --git a/desktop/wmshutdown/wmshutdown.SlackBuild b/desktop/wmshutdown/wmshutdown.SlackBuild
new file mode 100644
index 0000000000..ce73b2f07f
--- /dev/null
+++ b/desktop/wmshutdown/wmshutdown.SlackBuild
@@ -0,0 +1,108 @@
+#!/bin/sh
+
+# Slackware build script for <wmshutdown>
+
+# Copyright <2018> <Michael Heras>
+# 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.
+
+PRGNAM=wmshutdown
+VERSION=${VERSION:-1.4}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+SRCDIR=${SRCDIR:-dockapps-08e7440}
+
+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-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+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 $OUTPUT
+cd $TMP
+rm -rf $SRCDIR
+tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+cd $SRCDIR
+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 {} \;
+
+libtoolize --force
+aclocal
+autoheader
+automake --force-missing --add-missing
+autoconf
+
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --docdir=/usr/doc/$PRGNAM-$VERSION \
+ --build=$ARCH-slackware-linux
+
+make
+make install DESTDIR=$PKG
+
+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 {} \;
+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
+cp -a COPYING ChangeLog 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.${PKGTYPE:-tgz}
diff --git a/desktop/wmshutdown/wmshutdown.info b/desktop/wmshutdown/wmshutdown.info
new file mode 100644
index 0000000000..e023e76787
--- /dev/null
+++ b/desktop/wmshutdown/wmshutdown.info
@@ -0,0 +1,10 @@
+PRGNAM="wmshutdown"
+VERSION="1.4"
+HOMEPAGE="http://www.dockapps.net/wmshutdown"
+DOWNLOAD="http://www.dockapps.net/download/wmshutdown-1.4.tar.gz"
+MD5SUM="a0297f89e100464ed54d2f41a7af69a2"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="Michael Heras"
+EMAIL="userxbw@gmail.com"