system/wmconfig: Added (window manager menu creator)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Tracy Williams 2011-01-10 17:44:02 -06:00 committed by Robby Workman
parent 0070434229
commit 5c173bbdb1
4 changed files with 124 additions and 0 deletions

18
system/wmconfig/README Normal file
View File

@ -0,0 +1,18 @@
wmconfig is a free tool for automatically generating menus for various
X window managers. It uses a very simple configuration, it's fast and small.
A special toolkit (Gtk or Qt / KDE) is not required and the menu entries may
be edited with the text editor of your choice.
wmconfig will read the application template files located in /etc/wmconfig
and add an entry into the menu if that application is found on your system.
It will also read the application template files from the .wmconfig directory
in the user's home directory. Therefore, the user's settings will override
the system-wide settings. If optionally any extra files are given as an
argument on the command line, those will be read last and merged with the
others (possibly overriding the settings in system and user home dir files).
wmconfig creates menus for the following window managers/desktop environments:
aewm, afterstep, amiwm, blackbox, ctwm, e16, e17, ede, epiwm, equinox,
fluxbox, flwm, freedesktop, fvwm, fvwm2, fvwm95, gnome2, golem, icewm,
kahakai, kde1, kde2, kde3, kde4, launcher, lxde, mlvwm, mwm, olwm, openbox,
pekwm, piewm, pwm, qvwm, sapphire, tvtwm, twm, ude, vtwm, wmaker, wmx, xfce

View File

@ -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 ':'.
|-----handy-ruler-----------------------------------------------------|
wmconfig: wmconfig (window manager menu creator)
wmconfig:
wmconfig: Wmconfig is a free tool for creating menu entries for various X
wmconfig: managers. It uses a very simple configuration, it's fast and small.
wmconfig: A special toolkit (Gtk or Qt / KDE) is not required and the menu
wmconfig: entries may be edited with the text editor of your choice.
wmconfig:
wmconfig: Homepage: http://www.arrishq.net/
wmconfig:
wmconfig:
wmconfig:

View File

@ -0,0 +1,77 @@
#!/bin/sh
# Slackware build script for wmconfig
# Written by Tracy Williams
# contact: t_s_williams[at]yahoo[dot]com
PRGNAM=wmconfig
VERSION=1.3.4
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Set which terminal to use for programs that require it (Mutt, Lynx, etc)
TERMINAL=${TERMINAL:-xterm}
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"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
else
SLKCFLAGS="-O2"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
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 \
--sysconfdir=/etc \
--mandir=/usr/man \
--with-terminal=$TERMINAL \
--build=$ARCH-slackware-linux
make
make install-strip DESTDIR=$PKG
find $PKG/usr/man -type f -exec gzip -9 {} \;
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
AUTHORS ChangeLog COPYING INSTALL NEWS README TODO misc \
$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}

View File

@ -0,0 +1,10 @@
PRGNAM="wmconfig"
VERSION="1.3.4"
HOMEPAGE="http://www.arrishq.net/"
DOWNLOAD="http://www.arrishq.net/files/wmconfig-1.3.4.tar.bz2"
MD5SUM="b9e3fd253ec5bec412222b6f67cc62f1"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Tracy Williams"
EMAIL="t_s_williams[at]yahoo[dot]com"
APPROVED="rworkman"