diff options
author | Adrien Nader <adrien@notk.org> | 2014-02-05 21:39:52 +0100 |
---|---|---|
committer | Adrien Nader <adrien@notk.org> | 2014-02-05 21:39:52 +0100 |
commit | a82e5d01dfbca6de50c900d88e34b34cb9415cb1 (patch) | |
tree | 09ef2a4de36560c3cae00d7c3fe9f1804ec8ec3a /x | |
parent | b4aa70835b1bb96221f2f8677911bd2923c8d756 (diff) | |
parent | 54f6887304ca0a07292b2699e36b9cd3d296827c (diff) |
Merge remote-tracking branch 'volkerdi/master'
Diffstat (limited to 'x')
-rwxr-xr-x | x/glew/glew.SlackBuild | 96 | ||||
-rw-r--r-- | x/glew/glew.url | 2 | ||||
-rw-r--r-- | x/glew/slack-desc | 19 |
3 files changed, 117 insertions, 0 deletions
diff --git a/x/glew/glew.SlackBuild b/x/glew/glew.SlackBuild new file mode 100755 index 0000000..5187bb7 --- /dev/null +++ b/x/glew/glew.SlackBuild @@ -0,0 +1,96 @@ +#!/bin/sh + +# Copyright 2009, 2010 Patrick J. Volkerding, Sebeka, MN, USA +# 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. + +# Slackware build script for glew + +PKGNAM=glew +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + +NUMJOBS=${NUMJOBS:--j8} + +CWD=$(pwd) +TMP=${TMP:-/tmp} +PKG=$TMP/package-$PKGNAM + +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" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG +cd $TMP || exit 1 +rm -rf $PKGNAM-$VERSION +tar xvf $CWD/$PKGNAM-${VERSION}.tar.?z* || exit 1 +cd $PKGNAM-${VERSION} || exit 1 +chown -R root:root . +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 {} \; + +# Remove the DOS linefeeds from config.guess +TEMPFILE=$(mktemp) +fromdos < config/config.guess > $TEMPFILE +cat $TEMPFILE > config/config.guess ; rm -f $TEMPFILE + +make $NUMJOBS OPT="$SLKCFLAGS" || make OPT="$SLKCFLAGS" || exit 1 +make install GLEW_DEST=$PKG/usr || exit 1 + +( cd $PKG + 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 +) + +mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION +cp -a \ + LICENSE* README* doc/* \ + $PKG/usr/doc/$PKGNAM-$VERSION + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz diff --git a/x/glew/glew.url b/x/glew/glew.url new file mode 100644 index 0000000..8cc4357 --- /dev/null +++ b/x/glew/glew.url @@ -0,0 +1,2 @@ +http://glew.sourceforge.net +http://downloads.sourceforge.net/glew/glew-1.5.5.tgz diff --git a/x/glew/slack-desc b/x/glew/slack-desc new file mode 100644 index 0000000..20583fe --- /dev/null +++ b/x/glew/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +glew: glew (the OpenGL Extension Wrangler Library) +glew: +glew: The OpenGL Extension Wrangler Library (GLEW) is a cross-platform +glew: open-source C/C++ extension loading library. GLEW provides efficient +glew: run-time mechanisms for determining which OpenGL extensions are +glew: supported on the target platform. +glew: +glew: Homepage: http://glew.sourceforge.net/ +glew: +glew: +glew: |