desktop/wmii: Initial import

This commit is contained in:
eroc 2010-05-11 14:03:48 +02:00 committed by Robby Workman
parent b1378a33a6
commit 8d7ae5b441
5 changed files with 121 additions and 0 deletions

11
desktop/wmii/README Normal file
View file

@ -0,0 +1,11 @@
wmii - window manager improved 2
wmii is a dynamic window manager for X11. It supports classic and
dynamic window management with extended keyboard, mouse, and
filesystem based remote control. It replaces the workspace paradigm
with a new tagging approach. Its minimalist philosophy attempts to
not exceed 10.000 lines of code (including all shipped utilities and
libraries), to enforce simplicity and clarity.
NOTE: It requires libixp and it is a good idea to install dmenu too.

11
desktop/wmii/slack-desc Normal file
View file

@ -0,0 +1,11 @@
wmii: wmii - window manager improved 2
wmii:
wmii: wmii is a dynamic window manager for X11. It supports classic and
wmii: dynamic window management with extended keyboard, mouse, and
wmii: filesystem based remote control. It replaces the workspace paradigm
wmii: with a new tagging approach. Its minimalist philosophy attempts to
wmii: not exceed 10.000 lines of code (including all shipped utilities and
wmii: libraries), to enforce simplicity and clarity.
wmii:
wmii: Homepage: http://wmii.suckless.org
wmii:

View file

@ -0,0 +1,63 @@
#!/bin/sh
# Slackware build script for wmii
# Written by eroc <eroc@linuxmail.org>
# Thanks to selkfoster <selkfoster@gmail.com>
# Modified by the SlackBuilds.org project
PRGNAM=wmii
VERSION=3.5.1
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 $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 a-s,u+rw,go-w .
# Fix the prefix, sysconfdir, and mandir
sed -i s#'PREFIX = /usr/local'#'PREFIX = /usr'# config.mk || exit 1
sed -i s#'CONFPREFIX = ${PREFIX}/etc'#'CONFPREFIX = /etc/X11'# config.mk || exit 1
sed -i s#'MANPREFIX = ${PREFIX}/share/man'#'MANPREFIX = ${PREFIX}/man'# config.mk || exit 1
# Fix the CFLAGS
sed -i 's/CFLAGS = -Os /CFLAGS += /g' config.mk || exit 1
CFLAGS="$SLKCFLAGS" make || exit 1
make install DESTDIR=$PKG || exit 1
find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
( 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
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# xwmconfig is your friend.
install -D -m 0755 $CWD/xinitrc.wmii $PKG/etc/X11/xinit/xinitrc.wmii
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

8
desktop/wmii/wmii.info Normal file
View file

@ -0,0 +1,8 @@
PRGNAM="wmii"
VERSION="3.5.1"
HOMEPAGE="http://wmii.suckless.org/"
DOWNLOAD="http://suckless.org/download/wmii-3.5.1.tar.gz"
MD5SUM="26705a7b59945b7d269921b45ac15cdf"
MAINTAINER="eroc"
EMAIL="eroc@linuxmail.org"
APPROVED="robw810"

28
desktop/wmii/xinitrc.wmii Normal file
View file

@ -0,0 +1,28 @@
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws 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
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
# Start the window manager:
exec wmii