libraries/fltk2: Updated for version 2.0.x_r8365.

Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
Mikhail Zotov 2011-03-03 23:32:42 -03:00 committed by Niels Horn
parent 63d99c2e9f
commit 232dc2c9ef
4 changed files with 31 additions and 42 deletions

View file

@ -1,10 +1,10 @@
The Fast Light Tool Kit ("FLTK", pronounced "fulltick") is a LGPL'd C++ The Fast Light Tool Kit ("FLTK", pronounced "fulltick") is a LGPL'd C++
graphical user interface toolkit for X (UNIX(r)), OpenGL(r), and Microsoft(r) graphical user interface toolkit for X (UNIX(r)), OpenGL(r), and
Windows(r). It was originally developed by Mr. Bill Spitzak and is currently Microsoft(r) Windows(r). It was originally developed by Mr. Bill Spitzak
maintained by a small group of developers across the world with a central and is currently maintained by a small group of developers across the world
repository in the US. with a central repository in the US.
The build script is for the development branch (version 2.0.x), thus it is The build script is for the development branch (version 2.0.x), thus it is
named "fltk2" to distinguish from the stable one ("fltk") available at named "fltk2" to distinguish from the stable one ("fltk") available at
SlackBuilds.org. Notice that fltk2 does not overwrite any files of fltk; SlackBuilds.org. Notice that fltk2 does not overwrite any files of fltk.
thus, it is possible to have both of them in the system if desired. Thus, it is possible to have both of them in the system if desired.

View file

@ -1,32 +1,14 @@
#!/bin/sh #!/bin/sh
#
# Slackware build script for fltk, version 2 # Slackware build script for fltk, version 2
#
# Maintainer of the script: Mikhail Zotov <mikhail dot ru@gmail dot com>
#
# The script is based on the build script for FLTK, version 1, by LukenShiro. # The script is based on the build script for FLTK, version 1, by LukenShiro.
# The script has been fixed by the SlackBuilds.org team. # The script has been fixed by the SlackBuilds.org team.
# Copyright 2009-2010 Mikhail Zotov <mikhail dot ru@gmail dot 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.
PRGNAM=fltk2 PRGNAM=fltk2
VERSION=2.0.x_r7513 VERSION=2.0.x_r8365
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
@ -71,13 +53,20 @@ rm -rf $SRC_PRGNAM-$SRC_VERSION
tar xvf $CWD/$SRC_PRGNAM-$SRC_VERSION.tar.bz2 tar xvf $CWD/$SRC_PRGNAM-$SRC_VERSION.tar.bz2
cd $SRC_PRGNAM-$SRC_VERSION cd $SRC_PRGNAM-$SRC_VERSION
chown -R root:root . 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 {} \;
# Fix linking when --libdir=/usr/lib64 # Fix linking when --libdir=/usr/lib64
sed -i \ sed -i \
-e '/RANLIB/s:$(libdir)/\(.*LIBNAME)\):$(libdir)/`basename \1`:g' \ -e '/RANLIB/s:$(libdir)/\(.*LIBNAME)\):$(libdir)/`basename \1`:g' \
src/Makefile || exit src/Makefile || exit
# Make building more "verbose"
sed -i 's/\.SILENT://' makeinclude.in
CFLAGS="$SLKCFLAGS" \ CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \
./configure \ ./configure \
@ -86,18 +75,18 @@ CXXFLAGS="$SLKCFLAGS" \
--mandir=/usr/man \ --mandir=/usr/man \
--enable-shared --enable-shared
make make VERBOSE=1
make install DESTDIR=$PKG 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 | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
# No manpages are installed # Remove empty directories since no manual pages are installed
rm -rf $PKG/usr/man rm -rf $PKG/usr/man
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/
cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/fltk2.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/fltk2.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc

View file

@ -1,10 +1,10 @@
PRGNAM="fltk2" PRGNAM="fltk2"
VERSION="2.0.x-r7513" VERSION="2.0.x_r8365"
HOMEPAGE="http://www.fltk.org/" HOMEPAGE="http://www.fltk.org/"
DOWNLOAD="http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/fltk/snapshots/fltk-2.0.x-r7513.tar.bz2" DOWNLOAD="http://ftp.easysw.com/pub/fltk/snapshots/fltk-2.0.x-r8365.tar.bz2"
MD5SUM="557544badbacca4ee1ebb2448f6e1f8a" MD5SUM="a4a78694b8fc0e602cbc1c2a44267847"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
MAINTAINER="Mikhail Zotov" MAINTAINER="Mikhail Zotov"
EMAIL="mikhail dot ru at gmail dot com" EMAIL="mikhail dot ru at gmail dot com"
APPROVED="Erik Hanson" APPROVED="Niels Horn"

View file

@ -6,7 +6,7 @@
# customary to leave one space after the ':'. # customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------| |-----handy-ruler------------------------------------------------------|
fltk2: FLTK (Fast Light Tool Kit), version 2 fltk2: FLTK (Fast Light Tool Kit, version 2)
fltk2: fltk2:
fltk2: The Fast Light Tool Kit ("FLTK", pronounced "fulltick") is a LGPL'd fltk2: The Fast Light Tool Kit ("FLTK", pronounced "fulltick") is a LGPL'd
fltk2: C++ graphical user interface toolkit for X (UNIX(r)), OpenGL(r), fltk2: C++ graphical user interface toolkit for X (UNIX(r)), OpenGL(r),