mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/SDL_gfx: Initial import
This commit is contained in:
parent
c0b7b653ee
commit
b6dd041f0f
4 changed files with 110 additions and 0 deletions
10
libraries/SDL_gfx/README
Normal file
10
libraries/SDL_gfx/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
SDL_gfx Library.
|
||||
|
||||
SDL graphics drawing primitives and other support functions. The
|
||||
SDL_gfx library evolved out of the SDL_gfxPrimitives code which
|
||||
provided basic drawing routines such as lines, circles or polygons
|
||||
and SDL_rotozoom which implemented a interpolating rotozoomer for
|
||||
SDL surfaces.
|
||||
|
||||
homepage: http://www.ferzkopp.net/Software/SDL_gfx-2.0/
|
||||
|
81
libraries/SDL_gfx/SDL_gfx.SlackBuild
Normal file
81
libraries/SDL_gfx/SDL_gfx.SlackBuild
Normal file
|
@ -0,0 +1,81 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for: SDL_gfx
|
||||
# Written by (Michiel van Wessem <BP{k}>) (michiel@slackbuilds.org)
|
||||
|
||||
# Copyright 2007 Michiel van Wessem (http://michielvwessem.wordpress.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.
|
||||
|
||||
# Modified slightly by the SlackBuilds.org Project
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=SDL_gfx
|
||||
VERSION=2.0.16
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
DOCFILES="AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS \
|
||||
README README-rpm Docs/*"
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure --prefix=/usr \
|
||||
--localstatedir=/var \
|
||||
--sysconfdir=/etc \
|
||||
--with-x \
|
||||
--disable-debug \
|
||||
--disable-static \
|
||||
--program-prefix="" \
|
||||
--program-suffix=""
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
|
||||
mkdir $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
libraries/SDL_gfx/SDL_gfx.info
Normal file
8
libraries/SDL_gfx/SDL_gfx.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="SDL_gfx"
|
||||
VERSION="2.0.16"
|
||||
HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
|
||||
DOWNLOAD="http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-2.0.16.tar.gz"
|
||||
MD5SUM="22dc2d9d916197829f9342c490d2d02b"
|
||||
MAINTAINER="Michiel van Wessem"
|
||||
EMAIL="michiel@slackbuilds.org"
|
||||
APPROVED="alien"
|
11
libraries/SDL_gfx/slack-desc
Normal file
11
libraries/SDL_gfx/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
SDL_gfx: SDL_gfx Library.
|
||||
SDL_gfx:
|
||||
SDL_gfx: SDL graphics drawing primitives and other support functions. The
|
||||
SDL_gfx: SDL_gfx library evolved out of the SDL_gfxPrimitives code which
|
||||
SDL_gfx: provided basic drawing routines such as lines, circles or polygons
|
||||
SDL_gfx: and SDL_rotozoom which implemented a interpolating rotozoomer for
|
||||
SDL_gfx: SDL surfaces.
|
||||
SDL_gfx:
|
||||
SDL_gfx: homepage: http://www.ferzkopp.net/Software/SDL_gfx-2.0/
|
||||
SDL_gfx:
|
||||
SDL_gfx:
|
Loading…
Reference in a new issue