summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2012-08-18 20:21:10 -0500
committer Robby Workman <rworkman@slackbuilds.org>2012-08-18 20:21:10 -0500
commit61ec1864d0381692e9935ccba3df66d2887c8a28 (patch)
treede57e05e1dc6ac2ae8156d6cdcfba7e1a6e92439 /desktop
parent456a23c26e16b06bc65fa8b6b8ee37b7ef924a65 (diff)
downloadslackbuilds-61ec1864d0381692e9935ccba3df66d2887c8a28.tar.gz
slackbuilds-61ec1864d0381692e9935ccba3df66d2887c8a28.tar.xz
desktop/wmudmount: Kill gkr and udisks mention in README
Also enable grk usage in the build script. gkr and udisks are part of Slackware 14.0 Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/wmudmount/README9
-rw-r--r--desktop/wmudmount/wmudmount.SlackBuild10
2 files changed, 1 insertions, 18 deletions
diff --git a/desktop/wmudmount/README b/desktop/wmudmount/README
index b2c91afc78..bd0e92d087 100644
--- a/desktop/wmudmount/README
+++ b/desktop/wmudmount/README
@@ -2,12 +2,3 @@ wmudmount is a (dockapp) filesystem mounter that uses udisks to handle
notification of new filesystems as a non-root user. It also includes
a mode to display the mounted filesystems with the least free space
percentage (similar to wmfsm).
-
-This requires udisks and, optionally, gnome-keyring.
-
-To compile with gnome-keyring this needs to be explicitly requested with:
-
-KEYRING="YES" ./wmudmount.SlackBuild
-
-Note that if you don't compile with gnome-keyring (default behavior) you
-need to run wmudmount with the "--allow-insecure-memory" command line flag.
diff --git a/desktop/wmudmount/wmudmount.SlackBuild b/desktop/wmudmount/wmudmount.SlackBuild
index 09a3b91def..466de132cc 100644
--- a/desktop/wmudmount/wmudmount.SlackBuild
+++ b/desktop/wmudmount/wmudmount.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=wmudmount
VERSION=${VERSION:-1.8}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -54,9 +54,6 @@ else
LIBDIRSUFFIX=""
fi
-# To compile with gnome-keyring support, set this to "YES"
-KEYRING=${KEYRING:-NO}
-
set -e
rm -rf $PKG
@@ -72,16 +69,11 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
-if [ "$KEYRING" != "YES" ]; then
- EXTRA_OPTIONS="--without-gnome-keyring"
-fi
-
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--mandir=/usr/man \
- ${EXTRA_OPTIONS} \
--build=$ARCH-slackware-linux
make