diff options
Diffstat (limited to 'desktop/lxlauncher/lxlauncher.SlackBuild')
-rw-r--r-- | desktop/lxlauncher/lxlauncher.SlackBuild | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/desktop/lxlauncher/lxlauncher.SlackBuild b/desktop/lxlauncher/lxlauncher.SlackBuild index 9a56738a5c..9d1894b1d9 100644 --- a/desktop/lxlauncher/lxlauncher.SlackBuild +++ b/desktop/lxlauncher/lxlauncher.SlackBuild @@ -22,14 +22,14 @@ # SUCH DAMAGE. # ----------------------------------------------------------------------------- # -# Slackware SlackBuild script +# Slackware SlackBuild script # =========================== # By: Eric Hameleers <alien@slackware.com> # For: lxlauncher # Descr: Application launcher for Asus Eee pc # URL: http://lxde.sourceforge.net/ # Needs: lxmenu-data -# Changelog: +# Changelog: # 0.2-1: 29/jun/2008 by Eric Hameleers <alien@slackware.com> # * Initial build. # 0.2.1-1: 11/sep/2009 by Eric Hameleers <alien@slackware.com> @@ -37,24 +37,24 @@ # 20100903_3480629: 12/sep/2010 by ponce <matteo.bernardini@gmail.com> # * Adapted to slackbuilds.org's autotools template. # * updated to git snapshot. -# +# 0.2.2-1: 26/dec/2011 by ponce <matteo.bernardini@gmail.com> +# * update. +# # Run 'sh lxlauncher.SlackBuild' to build a Slackware package. # The package is created in /tmp . -# Install using 'installpkg'. +# Install using 'installpkg'. # # ----------------------------------------------------------------------------- PRGNAM=lxlauncher -VERSION=${VERSION:-20100903_3480629} +VERSION=${VERSION:-0.2.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -95,7 +95,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -sh autogen.sh +# fix no displaying of icons +patch -p1 < $CWD/fix-empty-lxlauncher.patch + +sh autogen.sh || true CXXFLAGS="$SLKCFLAGS" \ CFLAGS="$SLKCFLAGS" \ @@ -104,7 +107,6 @@ CFLAGS="$SLKCFLAGS" \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ - --mandir=/usr/man \ --program-prefix= \ --program-suffix= \ --build=$ARCH-slackware-linux |