desktop/wbar: Added (A quick launch bar designed with speed in mind)

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
Binh Nguyen 2010-08-14 15:07:43 -04:00 committed by dsomero
parent 8839919f6f
commit 028529e6c3
5 changed files with 162 additions and 0 deletions

7
desktop/wbar/README Normal file
View file

@ -0,0 +1,7 @@
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
This requires imlib2.

19
desktop/wbar/slack-desc Normal file
View file

@ -0,0 +1,19 @@
# 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------------------------------------------------------|
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://code.google.com/p/wbar/
wbar:
wbar:

View file

@ -0,0 +1,46 @@
diff -Naur wbar-1.3.3.orig/IconLoader.h wbar-1.3.3/IconLoader.h
--- wbar-1.3.3.orig/IconLoader.h 2006-10-20 02:25:01.000000000 +0300
+++ wbar-1.3.3/IconLoader.h 2008-03-29 14:39:46.000000000 +0200
@@ -4,6 +4,7 @@
extern "C" {
#include <sys/types.h>
#include <regex.h>
+#include <stdlib.h>
};
#include <fstream>
diff -Naur wbar-1.3.3.orig/Main.cc wbar-1.3.3/Main.cc
--- wbar-1.3.3.orig/Main.cc 2007-08-06 15:28:11.000000000 +0300
+++ wbar-1.3.3/Main.cc 2008-03-29 14:42:25.000000000 +0200
@@ -82,7 +82,7 @@
/*}}}*/
/* window configuration *//*{{{*/
- barwin.setName("wbar");
+ barwin.setName((char *)"wbar");
if( optparser.isset("above-desk") ){
barwin.setDockWindow();
barwin.skipTaskNPager();
diff -Naur wbar-1.3.3.orig/SuperBar.h wbar-1.3.3/SuperBar.h
--- wbar-1.3.3.orig/SuperBar.h 2007-02-12 01:32:17.000000000 +0200
+++ wbar-1.3.3/SuperBar.h 2008-03-29 14:39:57.000000000 +0200
@@ -1,6 +1,7 @@
#ifndef _SUPERBAR_H_
#define _SUPERBAR_H_
+#include <stdlib.h>
#include "ImgWrap.h"
#include "Bar.h"
diff -Naur wbar-1.3.3.orig/XWin.cc wbar-1.3.3/XWin.cc
--- wbar-1.3.3.orig/XWin.cc 2007-01-26 21:15:59.000000000 +0200
+++ wbar-1.3.3/XWin.cc 2008-03-29 14:40:16.000000000 +0200
@@ -30,7 +30,7 @@
/* Set WM Protocols to report window delete event */
XSetWMProtocols(display, window, &delWindow, 1);
- XClassHint ch = {"wbar", "wbar"};
+ XClassHint ch = {(char *)"wbar", (char *)"wbar"};
XSetClassHint(display, window, &ch);
}

View file

@ -0,0 +1,80 @@
#!/bin/sh
# Copyright 2010 Binh Nguyen <binhnguyen@fastmail.fm>
# 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:-1.3.3}
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}
set -eu
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tbz2
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 {} \;
# Apply a patch from Arch
patch -p1 < $CWD/wbar-gcc430_and_warnings.patch
make
install -Dm755 wbar $PKG/usr/bin/wbar
sed -i "s|i\: |i\: /usr/share/wbar/|" dot.wbar
sed -i "s|t\: iconpack/wbar.osx/font/12|t\: /usr/share/wbar/iconpack/comic/12|" dot.wbar
install -Dm644 dot.wbar $PKG/usr/share/wbar/dot.wbar
cp -r iconpack $PKG/usr/share/wbar
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 AUTHORS COPYING NEWS README gpl.txt $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
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

10
desktop/wbar/wbar.info Normal file
View file

@ -0,0 +1,10 @@
PRGNAM="wbar"
VERSION="1.3.3"
HOMEPAGE="http://code.google.com/p/wbar/"
DOWNLOAD="http://wbar.googlecode.com/files/wbar-1.3.3.tbz2"
MD5SUM="542335a273188de0d6a93102501351a4"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Binh Nguyen"
EMAIL="binhnguyen@fastmail.fm"
APPROVED="dsomero"