desktop/alltray: Initial import

This commit is contained in:
eroc 2010-05-11 14:03:45 +02:00 committed by Robby Workman
parent 01bd39f3b3
commit 17639f4ee8
5 changed files with 92 additions and 0 deletions

8
desktop/alltray/README Normal file
View file

@ -0,0 +1,8 @@
With AllTray you can dock any application with no native tray icon (like
Evolution, Thunderbird, Terminals) into the system tray. A highlight feature
is that a click on the "close" button will minimize back to system tray.
It works well with Gnome, KDE, Xfce 4.*, Fluxbox, and WindowMaker.
NOTE: If you have installed one of the GNOME Distribution for Slackware, then
you can safely remove the "--disable-gconf" line in the build script.

View file

@ -0,0 +1,60 @@
#!/bin/sh
# Slackware build script for alltray
# Written by eroc <eroc@linuxmail.org>
# Modified by the SlackBuilds.org project
set -e
PRGNAM=alltray
VERSION=0.69
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=`pwd`
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG/usr $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R a-s,u+rw,go-w .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--disable-gconf
make
make install-strip DESTDIR=$PKG
# Fix icon path in .desktop file so that the icons shows up in KDE
sed -i 's%Icon=alltray.png%Icon=/usr/share/pixmaps/alltray.png%g' \
$PKG/usr/share/applications/alltray.desktop || exit 1
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
gzip -9 $PKG/usr/man/man1/*.1
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.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="alltray"
VERSION="0.69"
HOMEPAGE="http://alltray.sourceforge.net"
DOWNLOAD="http://dl.sourceforge.net/alltray/alltray-0.69.tar.gz"
MD5SUM="ebc1c8eea945aff703d758e296b76cc9"
MAINTAINER="eroc"
EMAIL="eroc@linuxmail.org"
APPROVED="robw810"

View file

@ -0,0 +1,5 @@
if [ -x usr/bin/update-desktop-database ]; then
./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
fi

View file

@ -0,0 +1,11 @@
alltray: AllTray
alltray:
alltray: With AllTray you can dock any application with no native tray icon
alltray: (like Evolution, Thunderbird, Terminals) into the system tray. A
alltray: high-light feature is that a click on the "close" button will
alltray: minimize back to system tray. It works well with Gnome, KDE,
alltray: XFCE 4*, Fluxbox* and WindowMaker*
alltray:
alltray: Homepage: http://alltray.sourceforge.net
alltray:
alltray: