From 028529e6c3cebba2da1b4a2765bb0dcd8b450262 Mon Sep 17 00:00:00 2001 From: Binh Nguyen Date: Sat, 14 Aug 2010 15:07:43 -0400 Subject: desktop/wbar: Added (A quick launch bar designed with speed in mind) Signed-off-by: dsomero --- desktop/wbar/README | 7 +++ desktop/wbar/slack-desc | 19 +++++++ desktop/wbar/wbar-gcc430_and_warnings.patch | 46 +++++++++++++++++ desktop/wbar/wbar.SlackBuild | 80 +++++++++++++++++++++++++++++ desktop/wbar/wbar.info | 10 ++++ 5 files changed, 162 insertions(+) create mode 100644 desktop/wbar/README create mode 100644 desktop/wbar/slack-desc create mode 100644 desktop/wbar/wbar-gcc430_and_warnings.patch create mode 100644 desktop/wbar/wbar.SlackBuild create mode 100644 desktop/wbar/wbar.info diff --git a/desktop/wbar/README b/desktop/wbar/README new file mode 100644 index 0000000000..fd363e8d9c --- /dev/null +++ b/desktop/wbar/README @@ -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. diff --git a/desktop/wbar/slack-desc b/desktop/wbar/slack-desc new file mode 100644 index 0000000000..b6e7edb049 --- /dev/null +++ b/desktop/wbar/slack-desc @@ -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: diff --git a/desktop/wbar/wbar-gcc430_and_warnings.patch b/desktop/wbar/wbar-gcc430_and_warnings.patch new file mode 100644 index 0000000000..61b7df7b9e --- /dev/null +++ b/desktop/wbar/wbar-gcc430_and_warnings.patch @@ -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 + #include ++#include + }; + + #include +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 + #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); + } + diff --git a/desktop/wbar/wbar.SlackBuild b/desktop/wbar/wbar.SlackBuild new file mode 100644 index 0000000000..3c22022eab --- /dev/null +++ b/desktop/wbar/wbar.SlackBuild @@ -0,0 +1,80 @@ +#!/bin/sh + +# Copyright 2010 Binh Nguyen +# 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} diff --git a/desktop/wbar/wbar.info b/desktop/wbar/wbar.info new file mode 100644 index 0000000000..8715313bb7 --- /dev/null +++ b/desktop/wbar/wbar.info @@ -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" -- cgit v1.2.3-80-g2a13