diff options
author | Robby Workman | 2010-05-13 00:23:42 +0200 |
---|---|---|
committer | David Somero | 2010-05-13 00:23:42 +0200 |
commit | 991b552f881b814204bb04dd5700ee1de9500c37 (patch) | |
tree | 75a3c0b060c88f751e362a2d9dbf41719bf7f51e /desktop/xfce4-fsguard-plugin | |
parent | d685aaa13f7d423f00fa5e9d58743fff39e39156 (diff) | |
download | slackbuilds-991b552f881b814204bb04dd5700ee1de9500c37.tar.gz |
desktop/xfce4-fsguard-plugin: Updated for version 0.4.2
Diffstat (limited to 'desktop/xfce4-fsguard-plugin')
-rw-r--r-- | desktop/xfce4-fsguard-plugin/doinst.sh | 6 | ||||
-rw-r--r-- | desktop/xfce4-fsguard-plugin/slack-desc | 10 | ||||
-rw-r--r-- | desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild | 22 | ||||
-rw-r--r-- | desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.info | 2 |
4 files changed, 32 insertions, 8 deletions
diff --git a/desktop/xfce4-fsguard-plugin/doinst.sh b/desktop/xfce4-fsguard-plugin/doinst.sh new file mode 100644 index 0000000000..30eb690936 --- /dev/null +++ b/desktop/xfce4-fsguard-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-fsguard-plugin/slack-desc b/desktop/xfce4-fsguard-plugin/slack-desc index b6e529f54b..fd12d626bc 100644 --- a/desktop/xfce4-fsguard-plugin/slack-desc +++ b/desktop/xfce4-fsguard-plugin/slack-desc @@ -1,5 +1,13 @@ +# 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 ':'. + + |-----handy-ruler------------------------------------------------------| xfce4-fsguard-plugin: xfce4-fsguard-plugin (fsguard plugin for the Xfce panel) -xfce4-fsguard-plugin: +xfce4-fsguard-plugin: xfce4-fsguard-plugin: The fsguard plugin checks a chosen mountpoint for the xfce4-fsguard-plugin: amount of free disk space. xfce4-fsguard-plugin: diff --git a/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild b/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild index 93dbb0548b..e4a1246898 100644 --- a/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild +++ b/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for xfce4-fsguard-plugin -# Copyright 2006-2008 Robby Workman, Northport, Alabama, USA +# Copyright 2006-2009 Robby Workman, Northport, Alabama, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -35,10 +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 @@ -57,9 +60,10 @@ find . \ -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc/xfce \ --enable-shared=yes \ --enable-static=no \ --enable-debug=no \ @@ -69,17 +73,21 @@ 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 \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog INSTALL NEWS 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 +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-fsguard-plugin/xfce4-fsguard-plugin.info b/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.info index 36613d9d19..5bc8d61c06 100644 --- a/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.info +++ b/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.info @@ -2,7 +2,9 @@ PRGNAM="xfce4-fsguard-plugin" VERSION="0.4.2" HOMEPAGE="http://goodies.xfce.org/" DOWNLOAD="http://goodies.xfce.org/releases/xfce4-fsguard-plugin/xfce4-fsguard-plugin-0.4.2.tar.bz2" +DOWNLOAD_x86_64="" MD5SUM="50e9d133fd8af1bf5acc3059872eb924" +MD5SUM_x86_64="" MAINTAINER="Robby Workman" EMAIL="rw@rlworkman.net" APPROVED="dsomero" |