diff options
-rw-r--r-- | desktop/wbar/README | 5 | ||||
-rw-r--r-- | desktop/wbar/doinst.sh | 14 | ||||
-rw-r--r-- | desktop/wbar/slack-desc | 19 | ||||
-rw-r--r-- | desktop/wbar/wbar.SlackBuild | 118 | ||||
-rw-r--r-- | desktop/wbar/wbar.cfg | 44 | ||||
-rw-r--r-- | desktop/wbar/wbar.info | 12 |
6 files changed, 0 insertions, 212 deletions
diff --git a/desktop/wbar/README b/desktop/wbar/README deleted file mode 100644 index ce2f5bc6b9..0000000000 --- a/desktop/wbar/README +++ /dev/null @@ -1,5 +0,0 @@ -wbar is a quick launch bar. - * It's cool eye candy - * It's designed with speed in mind - * It's coded in c++ using imlib2 - * It's lite & fast diff --git a/desktop/wbar/doinst.sh b/desktop/wbar/doinst.sh deleted file mode 100644 index 47bc1b3542..0000000000 --- a/desktop/wbar/doinst.sh +++ /dev/null @@ -1,14 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/wbar.d/wbar.cfg.new diff --git a/desktop/wbar/slack-desc b/desktop/wbar/slack-desc deleted file mode 100644 index 74d9564e78..0000000000 --- a/desktop/wbar/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -wbar: wbar (A quick launch bar designed with speed in mind) -wbar: -wbar: wbar is a quick launch bar. -wbar: * It's cool eye candy -wbar: * It's designed with speed in mind -wbar: * It's coded in c++ using imlib2 -wbar: * It's lite & fast -wbar: -wbar: Homepage: http://lxlinux.com/wbar.html -wbar: -wbar: diff --git a/desktop/wbar/wbar.SlackBuild b/desktop/wbar/wbar.SlackBuild deleted file mode 100644 index d16ff8a236..0000000000 --- a/desktop/wbar/wbar.SlackBuild +++ /dev/null @@ -1,118 +0,0 @@ -#!/bin/sh - -# Slackware build script for wbar - -# Copyright 2010-2012 Binh Nguyen <binhvng@gmail.com> -# Copyright 2014 Ryan P.C. McQuen, WA, ryanpcmcquen@member.fsf.org -# 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=wbar -VERSION=${VERSION:-2.3.4} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) 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 -eu - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tgz -cd $PRGNAM-$VERSION -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 {} \; - -# Use absolute path for pidof (from Salix) -sed -i 's|pidof|/sbin/pidof|g' src/config/Run.cc - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS -Wno-error=literal-suffix" \ -./configure \ - --prefix=/usr \ - --exec-prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --infodir=/usr/info \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --localedir=/usr/share/locale \ - --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 - -# Replace the heavily Debian-oriented default config file -rm $PKG/etc/wbar.d/wbar.cfg -cat $CWD/wbar.cfg > $PKG/etc/wbar.d/wbar.cfg.new - -# And supply an icon set for that config (from Salix) -tar xvf $CWD/icons.tar.gz -mkdir -p $PKG/usr/share/pixmaps/wbar/slack -install -D -m 0644 icons/* $PKG/usr/share/pixmaps/wbar/slack - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS \ - $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.${PKGTYPE:-tgz} diff --git a/desktop/wbar/wbar.cfg b/desktop/wbar/wbar.cfg deleted file mode 100644 index 62d102b3df..0000000000 --- a/desktop/wbar/wbar.cfg +++ /dev/null @@ -1,44 +0,0 @@ -i: /usr/share/pixmaps/wbar/osxbarback.png -c: wbar --bpress --above-desk --vbar --pos right -t: /usr/share/fonts/TTF/DejaVuSans.ttf/10 - -i: /usr/share/pixmaps/wbar/slack/terminal.png -c: exo-open --launch TerminalEmulator -t: Terminal - -i: /usr/share/pixmaps/wbar/slack/file-manager.png -c: thunar -t: File Manager - -i: /usr/share/pixmaps/wbar/slack/web-browser.png -c: exo-open --launch WebBrowser -t: Web Browser - -i: /usr/share/pixmaps/wbar/slack/mail-client.png -c: exo-open --launch MailReader -t: Mail Client - -i: /usr/share/pixmaps/wbar/pidgin.png -c: pidgin -t: Pidgin - -i: /usr/share/pixmaps/wbar/slack/text-editor.png -c: mousepad -t: Text Editor - -i: /usr/share/pixmaps/wbar/slack/image-editor.png -c: gimp -t: Image Editor - -i: /usr/share/pixmaps/wbar/slack/music-player.png -c: audacious -t: Music Player - -i: /usr/share/pixmaps/wbar/slack/media-player.png -c: vlc -t: Media Player - -i: /usr/share/pixmaps/wbar/slack/preferences.png -c: wbar-config -t: Preferences - diff --git a/desktop/wbar/wbar.info b/desktop/wbar/wbar.info deleted file mode 100644 index c35841e270..0000000000 --- a/desktop/wbar/wbar.info +++ /dev/null @@ -1,12 +0,0 @@ -PRGNAM="wbar" -VERSION="2.3.4" -HOMEPAGE="http://lxlinux.com/wbar.html" -DOWNLOAD="https://sourceforge.net/projects/slackbuildsdirectlinks/files/wbar/wbar-2.3.4.tgz \ - https://sourceforge.net/projects/slackbuildsdirectlinks/files/wbar/icons.tar.gz" -MD5SUM="c1ac6b74138937a280904d1bac88115d \ - 358ea5ad109751ad64e78d440d0e4dca" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="imlib2" -MAINTAINER="orphaned - no maintainer" -EMAIL="nobody@nowhere" |