diff options
author | Eugene Wissner <belka.ew@gmail.com> | 2010-07-29 23:17:53 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-31 22:31:51 -0500 |
commit | dd30c9a90adcaf8b59ce0ddb6a14d255d3f00ad1 (patch) | |
tree | 2e633183f45363d256e9f9181d2242dc177832fc /desktop | |
parent | 88501b2b4ecf73a43ebe28ff641f21f46b6ee778 (diff) | |
download | slackbuilds-dd30c9a90adcaf8b59ce0ddb6a14d255d3f00ad1.tar.gz |
desktop/i3: Added (an improved dynamic tiling window manager)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/i3/README | 12 | ||||
-rw-r--r-- | desktop/i3/doinst.sh | 15 | ||||
-rw-r--r-- | desktop/i3/i3.SlackBuild | 89 | ||||
-rw-r--r-- | desktop/i3/i3.info | 10 | ||||
-rw-r--r-- | desktop/i3/slack-desc | 19 | ||||
-rw-r--r-- | desktop/i3/xinitrc.i3 | 20 |
6 files changed, 165 insertions, 0 deletions
diff --git a/desktop/i3/README b/desktop/i3/README new file mode 100644 index 0000000000..1a9f158c10 --- /dev/null +++ b/desktop/i3/README @@ -0,0 +1,12 @@ +i3 is a tiling window manager, completely written from scratch. + +i3 was created because wmii, our favorite window manager at the time, didn't +provide some features we wanted (multi-monitor done right, for example), had +some bugs, didn't progress since quite some time and wasn't easy to hack at +all (source code comments/documentation completely lacking). Still, we think +the wmii developers and contributors did a great job. Thank you for inspiring +us to create i3. + +Please be aware that i3 is primarily targeted at advanced users and developers. + +This requires libev and yajl. diff --git a/desktop/i3/doinst.sh b/desktop/i3/doinst.sh new file mode 100644 index 0000000000..935f39f357 --- /dev/null +++ b/desktop/i3/doinst.sh @@ -0,0 +1,15 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/i3/config.new + diff --git a/desktop/i3/i3.SlackBuild b/desktop/i3/i3.SlackBuild new file mode 100644 index 0000000000..5e34c3c23a --- /dev/null +++ b/desktop/i3/i3.SlackBuild @@ -0,0 +1,89 @@ +#!/bin/sh + +# Slackware build script for i3 + +# Written by Eugene Wissner <belka.ew@gmail.com> + +PRGNAM=i3 +VERSION=3.e_bf1 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +SRC_VERSION=$(printf $VERSION | tr _ -) + +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} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$SRC_VERSION +tar xvf $CWD/$PRGNAM-$SRC_VERSION.tar.bz2 +cd $PRGNAM-$SRC_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 {} \; + +# instead of ./configure +sed -i "s/-O2/$SLKCFLAGS/" common.mk +sed -i "s,local/lib,lib$LIBDIRSUFFIX," common.mk +make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Don't clobber the default config +mv $PKG/etc/i3/config $PKG/etc/i3/config.new + +# Install an xinitrc script +mkdir -p $PKG/etc/X11/xinit +cat $CWD/xinitrc.i3 > $PKG/etc/X11/xinit/xinitrc.i3 +chmod 0755 $PKG/etc/X11/xinit/xinitrc.i3 + +# Install man pages +mkdir -p $PKG/usr/man/man1 +cp man/*.1 $PKG/usr/man/man1 +find $PKG/usr/man -type f -exec gzip -9 {} \; + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + DEPENDS LICENSE TODO GOALS 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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/desktop/i3/i3.info b/desktop/i3/i3.info new file mode 100644 index 0000000000..74898b62f6 --- /dev/null +++ b/desktop/i3/i3.info @@ -0,0 +1,10 @@ +PRGNAM="i3" +VERSION="3.e-bf1" +HOMEPAGE="http://i3.zekjur.net/" +DOWNLOAD="http://i3.zekjur.net/downloads/i3-3.e-bf1.tar.bz2" +MD5SUM="e13be1a4c6f3ba5180c7264194f57e38" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Eugene Wissner" +EMAIL="belka.ew@gmail.com" +APPROVED="rworkman" diff --git a/desktop/i3/slack-desc b/desktop/i3/slack-desc new file mode 100644 index 0000000000..1759d6dbd7 --- /dev/null +++ b/desktop/i3/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +i3: i3 (an improved dynamic tiling window manager) +i3: +i3: i3 is a tiling window manager, completely written from scratch. +i3: +i3: i3 was created because wmii, our favorite window manager at the time, +i3: didn't provide some features we wanted (multi-monitor done right, +i3: for example), had some bugs, didn't progress since quite some time +i3: and wasn't easy to hack at all (source code comments/documentation +i3: completely lacking). Still, we think the wmii developers and +i3: contributors did a great job. +i3: diff --git a/desktop/i3/xinitrc.i3 b/desktop/i3/xinitrc.i3 new file mode 100644 index 0000000000..47b3a8c767 --- /dev/null +++ b/desktop/i3/xinitrc.i3 @@ -0,0 +1,20 @@ +#!/bin/sh + +userresources=$HOME/.Xresources +usermodmap=$HOME/.Xmodmap +sysresources=/etc/X11/xinit/.Xresources +sysmodmap=/etc/X11/xinit/.Xmodmap + +# Merge in defaults and keymaps +[ -f $sysresources ] && /usr/bin/xrdb -merge $sysresources +[ -f $sysmodmap ] && /usr/bin/xmodmap $sysmodmap +[ -f $userresources ] && /usr/bin/xrdb -merge $userresources +[ -f $usermodmap ] && /usr/bin/xmodmap $usermodmap + +# Start i3 +if [ -z $DESKTOP_SESSION ]; then + exec ck-launch-session i3 +else + exec i3 +fi + |