summaryrefslogtreecommitdiffstats
path: root/desktop/xfce4-time-out-plugin
diff options
context:
space:
mode:
author Robby Workman <rw@rlworkman.net>2010-05-13 00:23:54 +0200
committer Erik Hanson <erik@slackbuilds.org>2010-05-13 00:23:54 +0200
commit4935b74cdba3c0cf1b5746b14789595943ce57e5 (patch)
tree6abf7b973c6242db1760f80c45b4078ae2c47ec8 /desktop/xfce4-time-out-plugin
parentbbf90bb92133e55734e0729b39265cd04e897de6 (diff)
downloadslackbuilds-4935b74cdba3c0cf1b5746b14789595943ce57e5.tar.gz
slackbuilds-4935b74cdba3c0cf1b5746b14789595943ce57e5.tar.xz
desktop/xfce4-time-out-plugin: Updated for version 0.1.1
Diffstat (limited to 'desktop/xfce4-time-out-plugin')
-rw-r--r--desktop/xfce4-time-out-plugin/doinst.sh6
-rw-r--r--desktop/xfce4-time-out-plugin/slack-desc4
-rw-r--r--desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.SlackBuild28
-rw-r--r--desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.info2
4 files changed, 30 insertions, 10 deletions
diff --git a/desktop/xfce4-time-out-plugin/doinst.sh b/desktop/xfce4-time-out-plugin/doinst.sh
new file mode 100644
index 0000000000..30eb690936
--- /dev/null
+++ b/desktop/xfce4-time-out-plugin/doinst.sh
@@ -0,0 +1,6 @@
+if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
+ if [ -x /usr/bin/gtk-update-icon-cache ]; then
+ /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
+ fi
+fi
+
diff --git a/desktop/xfce4-time-out-plugin/slack-desc b/desktop/xfce4-time-out-plugin/slack-desc
index 1dff8f8413..ef3937896d 100644
--- a/desktop/xfce4-time-out-plugin/slack-desc
+++ b/desktop/xfce4-time-out-plugin/slack-desc
@@ -7,7 +7,7 @@
|-----handy-ruler------------------------------------------------------|
xfce4-time-out-plugin: xfce4-time-out-plugin (time-out plugin for the Xfce panel)
-xfce4-time-out-plugin:
+xfce4-time-out-plugin:
xfce4-time-out-plugin: xfce4-time-out-plugin is a plugin for the Xfce panel.
xfce4-time-out-plugin: It's a comfortable tool for taking a break from work
xfce4-time-out-plugin: every now and then. You can define a working interval
@@ -16,4 +16,4 @@ xfce4-time-out-plugin: screen is locked for a configurable amount of time -
xfce4-time-out-plugin: which gives you enough time to grab a cup of coffee,
xfce4-time-out-plugin: smoke a cigarette, or even do something healthy like
xfce4-time-out-plugin: eating, exercising, cleaning up or whatever.
-xfce4-time-out-plugin:
+xfce4-time-out-plugin:
diff --git a/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.SlackBuild b/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.SlackBuild
index eec8c31eb1..378d1ce909 100644
--- a/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.SlackBuild
+++ b/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for xfce4-time-out-plugin
-# Copyright 2006-2007 Robby Workman (http://rlworkman.net)
+# Copyright 2006-2009 Robby Workman, Northport, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -35,8 +35,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+ LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
fi
set -e
@@ -55,28 +60,35 @@ find . \
-exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --sysconfdir=/etc/xfce \
+ --mandir=/usr/man \
--enable-shared=yes \
--enable-static=no \
- --enable-debug=no
+ --enable-debug=no \
+ --build=$ARCH-slackware-linux
make
make install DESTDIR=$PKG
( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+ find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
+ xargs strip --strip-unneeded 2> /dev/null
+ find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
+ xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a \
+ AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO \
+ $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
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.info b/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.info
index 947fd0da9c..a89f5d2f18 100644
--- a/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.info
+++ b/desktop/xfce4-time-out-plugin/xfce4-time-out-plugin.info
@@ -2,7 +2,9 @@ PRGNAM="xfce4-time-out-plugin"
VERSION="0.1.1"
HOMEPAGE="http://goodies.xfce.org/"
DOWNLOAD="http://goodies.xfce.org/releases/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.tar.bz2"
+DOWNLOAD_x86_64=""
MD5SUM="d2f5b157cf47c754d8dd007c73a4d1e6"
+MD5SUM_x86_64=""
MAINTAINER="Robby Workman"
EMAIL="rw@rlworkman.net"
APPROVED="Erik Hanson"