From 110a47a0d05bb5a643211b449f97a0bd8e00a122 Mon Sep 17 00:00:00 2001 From: Chess Griffin Date: Tue, 11 May 2010 14:03:47 +0200 Subject: desktop/openbox: Initial import --- desktop/openbox/README | 6 ++++ desktop/openbox/openbox.SlackBuild | 69 ++++++++++++++++++++++++++++++++++++++ desktop/openbox/openbox.info | 8 +++++ desktop/openbox/slack-desc | 11 ++++++ desktop/openbox/xinitrc.openbox | 35 +++++++++++++++++++ 5 files changed, 129 insertions(+) create mode 100644 desktop/openbox/README create mode 100644 desktop/openbox/openbox.SlackBuild create mode 100644 desktop/openbox/openbox.info create mode 100644 desktop/openbox/slack-desc create mode 100644 desktop/openbox/xinitrc.openbox diff --git a/desktop/openbox/README b/desktop/openbox/README new file mode 100644 index 0000000000..f5f7719846 --- /dev/null +++ b/desktop/openbox/README @@ -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. + diff --git a/desktop/openbox/openbox.SlackBuild b/desktop/openbox/openbox.SlackBuild new file mode 100644 index 0000000000..231553917f --- /dev/null +++ b/desktop/openbox/openbox.SlackBuild @@ -0,0 +1,69 @@ +#!/bin/sh + +# Slackware build script for Openbox + +# Written by Chess Griffin + +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 diff --git a/desktop/openbox/openbox.info b/desktop/openbox/openbox.info new file mode 100644 index 0000000000..eedc791580 --- /dev/null +++ b/desktop/openbox/openbox.info @@ -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" diff --git a/desktop/openbox/slack-desc b/desktop/openbox/slack-desc new file mode 100644 index 0000000000..e71b1d1bc7 --- /dev/null +++ b/desktop/openbox/slack-desc @@ -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: diff --git a/desktop/openbox/xinitrc.openbox b/desktop/openbox/xinitrc.openbox new file mode 100644 index 0000000000..b12c4169be --- /dev/null +++ b/desktop/openbox/xinitrc.openbox @@ -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 -- cgit v1.2.3