diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2012-09-29 13:49:18 +0200 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-09-29 13:49:36 +0200 |
commit | 2b9aa2227d2834f9dcb7b64c2640885bcded2c3a (patch) | |
tree | 69ba0feaa219662d2453865032e6af11fc645274 | |
parent | b277cbc6bc2798ce26a98384a61a22d14f5305d4 (diff) | |
download | slackbuilds-2b9aa2227d2834f9dcb7b64c2640885bcded2c3a.tar.gz |
desktop/windowlist: Removed (included in Slackware)
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r-- | desktop/windowlist/README | 23 | ||||
-rw-r--r-- | desktop/windowlist/slack-desc | 19 | ||||
-rw-r--r-- | desktop/windowlist/windowlist.SlackBuild | 79 | ||||
-rw-r--r-- | desktop/windowlist/windowlist.info | 10 |
4 files changed, 0 insertions, 131 deletions
diff --git a/desktop/windowlist/README b/desktop/windowlist/README deleted file mode 100644 index 369f1dd08b..0000000000 --- a/desktop/windowlist/README +++ /dev/null @@ -1,23 +0,0 @@ -windowlist (KDE plasmoid Window List) - -Simple plasmoid to show list of opened windows. -Inspired by the KDE3 equivalent. - -Features: -- shows list of all windows grouped by desktop on left mouse click; -- shows list of windows on current desktop on middle mouse click; -- selecting active window minimizes it or activates it if not active; -- possibility to drag window entry on pager to move it to another desktop; -- switch windows using mouse wheel; -- actions menu for each window after right clicking on it's entry; -- "Cascade windows" and "Unclutter windows" actions; -- automatically group windows in sub menus if there is more than five per desktop; -- configurable keyboard shortcut. - -After installing, if you are currently running KDE, you need to run -"kbuildsycoca4" as your normal user. - -If the plasmoid does not show up in the "Add Applets" dialog, then try restarting -plasma with "kquitapp plasma && plasma" - -Please see the README file if you want to use a different icon for this plasmoid. diff --git a/desktop/windowlist/slack-desc b/desktop/windowlist/slack-desc deleted file mode 100644 index 6324f1d527..0000000000 --- a/desktop/windowlist/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -windowlist: windowlist (KDE plasmoid to list open windows) -windowlist: -windowlist: Simple plasmoid to show list of opened windows. -windowlist: Inspired by the KDE3 equivalent. -windowlist: -windowlist: http://www.kde-look.org/content/show.php/Window+List?content=96486 -windowlist: -windowlist: -windowlist: -windowlist: -windowlist: diff --git a/desktop/windowlist/windowlist.SlackBuild b/desktop/windowlist/windowlist.SlackBuild deleted file mode 100644 index e1b36005c0..0000000000 --- a/desktop/windowlist/windowlist.SlackBuild +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh - -# Slackware build script for windowlist (KDE4 plasmoid) -# Written by Phillip Warner <pc_warner@yahoo.com> - -PRGNAM=windowlist -VERSION=${VERSION:-3.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -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" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -rm -rf $TMP/$PRGNAM-$VERSION -cd $TMP -tar xvf $CWD/96486-$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -mkdir build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} \ - -DCMAKE_BUILD_TYPE=Release .. - - make - make install DESTDIR=$PKG -cd - - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING CHANGELOG README INSTALL TODO $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir $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/windowlist/windowlist.info b/desktop/windowlist/windowlist.info deleted file mode 100644 index 551bdf5bb2..0000000000 --- a/desktop/windowlist/windowlist.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="windowlist" -VERSION="3.1" -HOMEPAGE="http://www.kde-look.org/content/show.php/Window+List?content=96486" -DOWNLOAD="http://www.kde-look.org/CONTENT/content-files/96486-windowlist-3.1.tar.bz2" -MD5SUM="ec614368f9a04f989640634f48d96162" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Phillip Warner" -EMAIL="pc_warner@yahoo.com" |