mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
desktop/openbox: Updated for version 3.4.6.1
This commit is contained in:
parent
a9c884b8eb
commit
db22e1616d
7 changed files with 164 additions and 36 deletions
|
@ -4,3 +4,19 @@ 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.
|
||||
|
||||
To use Openbox in KDE or GNOME please specify this in the script or
|
||||
when running the script by setting KXINIT or GXINIT to "YES",
|
||||
respectively. For example, to add an option to use Openbox in KDE
|
||||
you can run:
|
||||
|
||||
KXINIT=YES ./openbox.SlackBuild
|
||||
|
||||
If you do not make the package with this support and you want to run
|
||||
Openbox in KDE or GNOME, then you should copy the respective xinitrc
|
||||
script from /usr/doc/openbox to /etc/X11/xinit/. You will also need
|
||||
to copy openbox-kde-session or openbox-gnome-session to /usr/bin/.
|
||||
To be used, all the scripts will need to be executable.
|
||||
|
||||
If you do not plan on using a session manager with Openbox you can
|
||||
build a smaller binary by disabling session management support. To
|
||||
do this simply configure with '--disable-session-management'.
|
||||
|
|
|
@ -2,17 +2,32 @@
|
|||
|
||||
# Slackware build script for Openbox
|
||||
|
||||
# Written by Chess Griffin <chess at chessgriffin dot com>
|
||||
# Written by Chess Griffin <chess@chessgriffin.com>
|
||||
# Modifications for KDE and GNOME xinitrc scripts
|
||||
# by Phillip Warner <pc_warner@yahoo.com>
|
||||
|
||||
PRGNAM=openbox
|
||||
VERSION=3.3.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
PRGNAM=openbox
|
||||
VERSION=3.4.6.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# Set these to "YES" if you want your package to include a xinitrc file
|
||||
# for running Openbox in KDE or GNOME, respectively.
|
||||
# Otherwise, you can add the xinitrc files manually to /etc/X11/xinit and
|
||||
# the openbox-kde-session and openbox-gnome-session files to /usr/bin.
|
||||
# The files can be found under /usr/doc/openbox
|
||||
# Don't forget to make them executable if you copy them from /usr/doc!
|
||||
#
|
||||
# This can be specified on the command line when calling the build script:
|
||||
# KXINIT=YES ./openbox.SlackBuild
|
||||
KXINIT=${KXINIT:-NO}
|
||||
GXINIT=${GXINIT:-NO}
|
||||
|
||||
DOCS="ABOUT-NLS AUTHORS CHANGELOG COMPLIANCE COPYING README"
|
||||
|
||||
|
@ -22,12 +37,14 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
|
@ -37,30 +54,49 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--enable-startup-notification \
|
||||
|| exit 1
|
||||
--mandir=/usr/man \
|
||||
--enable-startup-notification
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
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
|
||||
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
|
||||
# Optionally install xinitrc scripts for running Openbox in KDE or GNOME
|
||||
# Move the scripts from /usr/bin if the xinitrc scripts are not installed.
|
||||
if [ "$KXINIT" == "YES" ]; then
|
||||
install -D -m 0755 $CWD/xinitrc.kde-openbox $PKG/etc/X11/xinit/xinitrc.kde-openbox
|
||||
else
|
||||
cat $PKG/usr/bin/openbox-kde-session > $PKG/usr/share/doc/$PRGNAM/openbox-kde-session
|
||||
rm -vf $PKG/usr/bin/openbox-kde-session
|
||||
fi
|
||||
if [ "$GXINIT" == "YES" ]; then
|
||||
install -D -m 0755 $CWD/xinitrc.gnome-openbox $PKG/etc/X11/xinit/xinitrc.gnome-openbox
|
||||
else
|
||||
cat $PKG/usr/bin/openbox-gnome-session > $PKG/usr/share/doc/$PRGNAM/openbox-gnome-session
|
||||
rm -vf $PKG/usr/bin/openbox-gnome-session
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/doc
|
||||
mv $PKG/usr/share/doc/$PRGNAM $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rmdir $PKG/usr/share/doc
|
||||
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
for i in $CWD/xinitrc.*openbox ; do
|
||||
cat $i > $PKG/usr/doc/$PRGNAM-$VERSION/$(basename $i) ;
|
||||
done
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
( cd $PKG/usr/doc ; ln -s $PRGNAM-$VERSION $PRGNAM )
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="openbox"
|
||||
VERSION="3.3.1"
|
||||
VERSION="3.4.6.1"
|
||||
HOMEPAGE="http://icculus.org/openbox/"
|
||||
DOWNLOAD="http://icculus.org/openbox/releases/openbox-3.3.1.tar.gz"
|
||||
MD5SUM="6dc25d5fbff5d6277593b89974f950d8"
|
||||
DOWNLOAD="http://icculus.org/openbox/releases/openbox-3.4.6.1.tar.gz"
|
||||
MD5SUM="0000c3a72d9fb956128cee7fd27ff19f"
|
||||
MAINTAINER="Chess Griffin"
|
||||
EMAIL="chess@chessgriffin.com"
|
||||
APPROVED="BP{k},robw810"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
openbox: Openbox window manager.
|
||||
# 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-----------------------------------------------------|
|
||||
openbox: 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
|
||||
|
@ -6,6 +14,6 @@ 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: Homepage: http://www.icculus.org/openbox
|
||||
openbox:
|
||||
openbox:
|
||||
|
|
34
desktop/openbox/xinitrc.gnome-openbox
Normal file
34
desktop/openbox/xinitrc.gnome-openbox
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/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
|
||||
|
||||
# Create default user directory & populate it if not already existent
|
||||
if [ ! -d $HOME/.config/openbox ]; then
|
||||
mkdir -p $HOME/.config/openbox
|
||||
cat /etc/xdg/openbox/menu.xml > $HOME/.config/openbox/menu.xml
|
||||
cat /etc/xdg/openbox/rc.xml > $HOME/.config/openbox/rc.xml
|
||||
fi
|
||||
|
||||
exec openbox-gnome-session
|
35
desktop/openbox/xinitrc.kde-openbox
Normal file
35
desktop/openbox/xinitrc.kde-openbox
Normal file
|
@ -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=/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
|
||||
|
||||
# Create default user directory & populate it if not already existent
|
||||
if [ ! -d $HOME/.config/openbox ]; then
|
||||
mkdir -p $HOME/.config/openbox
|
||||
cat /etc/xdg/openbox/menu.xml > $HOME/.config/openbox/menu.xml
|
||||
cat /etc/xdg/openbox/rc.xml > $HOME/.config/openbox/rc.xml
|
||||
fi
|
||||
|
||||
exec openbox-kde-session
|
||||
|
|
@ -3,33 +3,32 @@
|
|||
|
||||
userresources=$HOME/.Xresources
|
||||
usermodmap=$HOME/.Xmodmap
|
||||
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
|
||||
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
|
||||
sysresources=/etc/X11/xinit/.Xresources
|
||||
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||
|
||||
# merge in defaults and keymaps
|
||||
|
||||
if [ -f $sysresources ]; then
|
||||
/usr/X11R6/bin/xrdb -merge $sysresources
|
||||
/usr/bin/xrdb -merge $sysresources
|
||||
fi
|
||||
|
||||
if [ -f $sysmodmap ]; then
|
||||
/usr/X11R6/bin/xmodmap $sysmodmap
|
||||
/usr/bin/xmodmap $sysmodmap
|
||||
fi
|
||||
|
||||
if [ -f $userresources ]; then
|
||||
/usr/X11R6/bin/xrdb -merge $userresources
|
||||
/usr/bin/xrdb -merge $userresources
|
||||
fi
|
||||
|
||||
if [ -f $usermodmap ]; then
|
||||
/usr/X11R6/bin/xmodmap $usermodmap
|
||||
/usr/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
|
||||
cat /etc/xdg/openbox/menu.xml > $HOME/.config/openbox/menu.xml
|
||||
cat /etc/xdg/openbox/rc.xml > $HOME/.config/openbox/rc.xml
|
||||
fi
|
||||
|
||||
exec openbox
|
||||
exec openbox-session
|
||||
|
|
Loading…
Reference in a new issue