libraries/wxGTK: Updated for version 2.8.9

This commit is contained in:
Chess Griffin 2010-05-12 17:42:16 +02:00 committed by David Somero
parent 1fcdb5ec04
commit 1fdf4742bc
3 changed files with 41 additions and 13 deletions

View File

@ -1,4 +1,4 @@
wxGTK is part of wxWidgets, a cross-platform API for writing GUI
wxGTK is part of wxWidgets, a cross-platform API for writing GUI
applications on multiple platforms that still utilize the native
platform's controls and utilities.

View File

@ -7,8 +7,8 @@
|-----handy-ruler------------------------------------------------------|
wxGTK: wxGTK (cross-platform GUI toolkit)
wxGTK:
wxGTK: wxGTK is part of wxWidgets, a cross-platform API for writing GUI
wxGTK:
wxGTK: wxGTK is part of wxWidgets, a cross-platform API for writing GUI
wxGTK: applications on multiple platforms that still utilize the native
wxGTK: platform's controls and utilities.
wxGTK:

View File

@ -2,16 +2,34 @@
# Slackware build script for wxGTK
# Written by Chess Griffin <chess at chessgriffin dot com>
# with lots of key help from Eric Hameleers and the SBo
# admins. Thanks for all the help!
# Copyright 2006-2009 Chess Griffin <chess@chessgriffin.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Lots of key help from Eric Hameleers and the SBo admins.
# Modified by the SlackBuilds.org project
PRGNAM=wxGTK
VERSION=2.8.9
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
CWD=$(pwd)
@ -25,10 +43,13 @@ UNICODE=${UNICODE:-YES}
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
rm -rf $PKG
@ -37,9 +58,12 @@ cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
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 {} \;
# Set unicode flag as desired by UNICODE variable
if [ "$UNICODE" = "YES" ]; then
@ -52,8 +76,10 @@ CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--enable-shared \
--with-opengl \
--${_do_unicode}able-unicode \
|| exit 1
@ -61,17 +87,19 @@ make || exit 1
make install DESTDIR=$PKG || exit 1
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | 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
)
# Now let's fix the broken symlink created by the package
cd $PKG/usr/bin
rm wx-config
if [ "$UNICODE" = "YES" ]; then
ln -s /usr/lib/wx/config/gtk2-unicode-release-2.8 wx-config
ln -s /usr/lib${LIBDIRSUFFIX}/wx/config/gtk2-unicode-release-2.8 wx-config
elif [ "$UNICODE" = "NO" ]; then
ln -s /usr/lib/wx/config/gtk2-ansi-release-2.8 wx-config
ln -s /usr/lib${LIBDIRSUFFIX}/wx/config/gtk2-ansi-release-2.8 wx-config
fi
cd -