desktop/openbox: Initial import

This commit is contained in:
Chess Griffin 2010-05-11 14:03:47 +02:00 committed by Michiel van Wessem
parent 063cbe371e
commit 110a47a0d0
5 changed files with 129 additions and 0 deletions

6
desktop/openbox/README Normal file
View file

@ -0,0 +1,6 @@
Openbox is a standards compliant, fast, light-weight, extensible
window manager. Openbox was written first to comply with standards
and to work properly. Openbox is fully functional as a stand-alone
working environment, or can be used as a drop-in replacement for
the default window manager in the GNOME or KDE desktop environments.

View file

@ -0,0 +1,69 @@
#!/bin/sh
# Slackware build script for Openbox
# Written by Chess Griffin <chess at chessgriffin dot com>
PRGNAM=openbox
VERSION=3.3.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=`pwd`
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
DOCS="ABOUT-NLS AUTHORS CHANGELOG COMPLIANCE COPYING README"
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 $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-startup-notification \
|| exit 1
make || exit 1
make install DESTDIR=$PKG || exit 1
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
if [ -d $PKG/usr/man ]; then
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
fi
# Add xinitrc.openbox so that openbox will show up as an option in xwmconfig
install -D -m 0755 $CWD/xinitrc.openbox $PKG/etc/X11/xinit/xinitrc.openbox
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $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.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="openbox"
VERSION="3.3.1"
HOMEPAGE="http://icculus.org/openbox/"
DOWNLOAD="http://icculus.org/openbox/releases/openbox-3.3.1.tar.gz"
MD5SUM="6dc25d5fbff5d6277593b89974f950d8"
MAINTAINER="Chess Griffin"
EMAIL="chess@chessgriffin.com"
APPROVED="BP{k},robw810"

View file

@ -0,0 +1,11 @@
openbox: Openbox window manager.
openbox:
openbox: Openbox is a standards compliant, fast, light-weight, extensible
openbox: window manager. Openbox was written first to comply with standards
openbox: and to work properly. Openbox is fully functional as a stand-alone
openbox: working environment, or can be used as a drop-in replacement for
openbox: the default window manager in the GNOME or KDE desktop environments.
openbox:
openbox: Homepage: http://www.icculus.org/openbox
openbox:
openbox:

View file

@ -0,0 +1,35 @@
#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
/usr/X11R6/bin/xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
/usr/X11R6/bin/xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
/usr/X11R6/bin/xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
/usr/X11R6/bin/xmodmap $usermodmap
fi
# Create default user directory & populate it if not already existent
if [ ! -d $HOME/.config/openbox ]; then
mkdir -p $HOME/.config/openbox
for FILE in menu.xml rc.xml;
do cat /etc/xdg/openbox/$FILE > $HOME/.config/openbox/$FILE;
done
fi
exec openbox