diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2014-06-09 07:31:12 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-06-12 06:51:45 +0700 |
commit | 1346ee23dee74b8b83aed97fea4209a33bf20359 (patch) | |
tree | 2bcf66a6b10e1deb1aea0445c8b9064b29cc7263 /desktop/openbox | |
parent | e7cf4e03215ad98d948adf063cef1e9058e64412 (diff) | |
download | slackbuilds-1346ee23dee74b8b83aed97fea4209a33bf20359.tar.gz |
desktop/openbox: Updated for version 3.5.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/openbox')
-rw-r--r-- | desktop/openbox/README | 2 | ||||
-rw-r--r-- | desktop/openbox/openbox.SlackBuild | 14 | ||||
-rw-r--r-- | desktop/openbox/openbox.info | 6 |
3 files changed, 13 insertions, 9 deletions
diff --git a/desktop/openbox/README b/desktop/openbox/README index a8dab76eac..5f199769ab 100644 --- a/desktop/openbox/README +++ b/desktop/openbox/README @@ -28,3 +28,5 @@ autostart file to be used. 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'. + +imlib2 is an optional dependency. diff --git a/desktop/openbox/openbox.SlackBuild b/desktop/openbox/openbox.SlackBuild index 466f14bd68..bf22c39622 100644 --- a/desktop/openbox/openbox.SlackBuild +++ b/desktop/openbox/openbox.SlackBuild @@ -28,7 +28,7 @@ # Currently maintained by Robby Workman <rw@rlworkman.net> PRGNAM=openbox -VERSION=${VERSION:-3.5.0} +VERSION=${VERSION:-3.5.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -83,10 +83,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -97,16 +97,18 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --enable-startup-notification \ + --enable-static=no \ --build=$ARCH-slackware-linux \ --host=$ARCH-slackware-linux make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done # 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 diff --git a/desktop/openbox/openbox.info b/desktop/openbox/openbox.info index a67316ace4..dd63ee9c11 100644 --- a/desktop/openbox/openbox.info +++ b/desktop/openbox/openbox.info @@ -1,8 +1,8 @@ PRGNAM="openbox" -VERSION="3.5.0" +VERSION="3.5.2" HOMEPAGE="http://openbox.org/" -DOWNLOAD="http://openbox.org/dist/openbox/openbox-3.5.0.tar.gz" -MD5SUM="00441b53cf14c03566c8e82643544ff9" +DOWNLOAD="http://openbox.org/dist/openbox/openbox-3.5.2.tar.gz" +MD5SUM="93df606606053b7e8578a5c116afb8ec" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |