diff options
-rw-r--r-- | desktop/awesome/README | 5 | ||||
-rw-r--r-- | desktop/awesome/awesome.SlackBuild | 76 | ||||
-rw-r--r-- | desktop/awesome/awesome.info | 10 | ||||
-rw-r--r-- | desktop/awesome/slack-desc | 19 | ||||
-rw-r--r-- | desktop/awesome/xinitrc.awesome | 27 |
5 files changed, 0 insertions, 137 deletions
diff --git a/desktop/awesome/README b/desktop/awesome/README deleted file mode 100644 index 2b52c1ba7a00..000000000000 --- a/desktop/awesome/README +++ /dev/null @@ -1,5 +0,0 @@ -awesome is a floating and tiling window manager initially based on a -rewrite of the dwm window manager. It is extremely fast, small, -dynamic, and awesome. - -awesome requires confuse and imlib2. diff --git a/desktop/awesome/awesome.SlackBuild b/desktop/awesome/awesome.SlackBuild deleted file mode 100644 index 09c8c20343c2..000000000000 --- a/desktop/awesome/awesome.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for awesome - -# Written by Chess Griffin <chess@chessgriffin.com> - -PRGNAM=awesome -VERSION=${VERSION:-2.3.6} -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" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -fi - -set -e # Exit on most errors - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/awesome-$VERSION \ - --build=$ARCH-slackware-linux - -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 - -( 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 -) - -install -D -m 0755 $CWD/xinitrc.awesome $PKG/etc/X11/xinit/xinitrc.awesome - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS LICENSE $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.${PKGTYPE:-tgz} diff --git a/desktop/awesome/awesome.info b/desktop/awesome/awesome.info deleted file mode 100644 index d66e7c683492..000000000000 --- a/desktop/awesome/awesome.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="awesome" -VERSION="2.3.6" -HOMEPAGE="http://awesome.naquadah.org" -DOWNLOAD="http://awesome.naquadah.org/download/awesome-2.3.6.tar.gz" -MD5SUM="7f423ec9bba0f90e5305e3476c847371" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Chess Griffin" -EMAIL="chess@chessgriffin.com" -APPROVED="rworkman" diff --git a/desktop/awesome/slack-desc b/desktop/awesome/slack-desc deleted file mode 100644 index 44aaf11368b9..000000000000 --- a/desktop/awesome/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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 ':'. - - |-----handy-ruler----------------------------------------------------| -awesome: awesome (awesome window manager) -awesome: -awesome: awesome is a floating and tiling window manager initially -awesome: based on a rewrite of the dwm window manager. It is -awesome: extremely fast, small, dynamic, and awesome. -awesome: -awesome: Homepage: http://awesome.naquadah.org -awesome: -awesome: -awesome: -awesome: diff --git a/desktop/awesome/xinitrc.awesome b/desktop/awesome/xinitrc.awesome deleted file mode 100644 index d7c301bec0e5..000000000000 --- a/desktop/awesome/xinitrc.awesome +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $ - -userresources=$HOME/.Xresources -usermodmap=$HOME/.Xmodmap -sysresources=/etc/X11/xinit/.Xresources -sysmodmap=/etc/X11/xinit/.Xmodmap - -# merge in defaults and keymaps - -if [ -f $sysresources ]; then - /usr/bin/xrdb -merge $sysresources -fi - -if [ -f $sysmodmap ]; then - /usr/bin/xmodmap $sysmodmap -fi - -if [ -f $userresources ]; then - /usr/bin/xrdb -merge $userresources -fi - -if [ -f $usermodmap ]; then - /usr/bin/xmodmap $usermodmap -fi - -exec awesome |