summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Robby Workman2011-03-09 17:25:50 +0100
committer Robby Workman2011-03-10 06:15:51 +0100
commiteb72264e841a1aeb0eb2351a4557d517e6106aba (patch)
treeb50e00aed1dfe288dc5c04c3da921469b2fd19fb /games
parent1009161c585a01072bede6b17dc7db6fc4956dfa (diff)
downloadold.slackbuilds-eb72264e841a1aeb0eb2351a4557d517e6106aba.tar.gz
games/xaos: Removed. This is part of Slackware 13.37.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/xaos/README10
-rw-r--r--games/xaos/slack-desc19
-rw-r--r--games/xaos/xaos.SlackBuild115
-rw-r--r--games/xaos/xaos.desktop10
-rw-r--r--games/xaos/xaos.info10
-rw-r--r--games/xaos/xaos.pngbin14980 -> 0 bytes
6 files changed, 0 insertions, 164 deletions
diff --git a/games/xaos/README b/games/xaos/README
deleted file mode 100644
index dfd1108a6d..0000000000
--- a/games/xaos/README
+++ /dev/null
@@ -1,10 +0,0 @@
-XaoS is an interactive fractal zoomer. It allows the user to continuously
-to zoom in or out of a fractal in a fluid, continuous motion. This
-capability makes XaoS great for exploring fractals, and it’s just
-plain fun!
-
-Note to users of 64-bit and other non-x86 Slackware derivatives: if
-you want to be able to define your own fractal formulae, you'll need
-to install the GSL library, and run xaos.SlackBuild with USE_GSL=yes
-in the environment. Without GSL, you'll be limited to the fractals that
-are built in to the program (which is fine for most users anyway).
diff --git a/games/xaos/slack-desc b/games/xaos/slack-desc
deleted file mode 100644
index a0aba31fa2..0000000000
--- a/games/xaos/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-xaos: xaos (an interactive fractal zoomer)
-xaos:
-xaos: XaoS is an interactive fractal zoomer. It allows the user to
-xaos: continuously to zoom in or out of a fractal in a fluid, continuous
-xaos: motion. This capability makes XaoS great for exploring fractals,
-xaos: and it’s just plain fun!
-xaos:
-xaos:
-xaos:
-xaos:
-xaos:
diff --git a/games/xaos/xaos.SlackBuild b/games/xaos/xaos.SlackBuild
deleted file mode 100644
index d9375a9ae6..0000000000
--- a/games/xaos/xaos.SlackBuild
+++ /dev/null
@@ -1,115 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for xaos
-
-# Written by B. Watson (yalhcru@gmail.com)
-
-# A few notes:
-#
-# Package really wants to use its own CFLAGS (even checks for them
-# in the configure script). Let it...
-#
-# SFFE is the user formula evaluator, which allows users to define their
-# own fractals. On x86 platforms, an assembly-language implementation of
-# SFFE is used. On non-x86 platforms, SFFE requires a library called GSL
-# (GNU Scientific Library, available from SBo).
-#
-# xaos is still interesting and useful without SFFE support (most users
-# probably don't know/care about the math, so they'll never use the SFFE
-# stuff anyway), so we'll just disable it on non-x86 platforms by default.
-#
-# If you really want to use it, set USE_GSL=yes in the environment before
-# running this script. There's no need to use GSL on x86 platforms, since
-# the asm code is (or should be) faster, but the option is there if you
-# want to use it anyway.
-#
-# Multilib users also have the option of building on a 32-bit Slackware system
-# (or in a chroot) and the resulting package will run just fine on 64-bit.
-#
-# If the preceding didn't make any sense, here's the bottom line:
-#
-# - Regular Slackware (x86) users can just run this script and ignore the junk
-# above.
-#
-# - Everyone else (Slamd64, Bluewhite64, Slackware64, ???) can just
-# run this script and probably never notice the missing functionality.
-#
-# - If you're not on x86, but you want the formula evaluator, install GSL
-# and then run this script with USE_GSL=yes in the environment.
-
-PRGNAM=xaos
-APPNAM=XaoS
-VERSION=${VERSION:-3.4}
-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
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-USE_GSL=${USE_GSL:-no}
-
-if [ "$USE_GSL" = "yes" ]; then
- GSL_OPT="yes"
- SFFE_OPT="yes"
-elif [ "$ARCH" = "i486" -o "$ARCH" = "i686" ]; then
- GSL_OPT="no"
- SFFE_OPT="yes"
-else
- GSL_OPT="no"
- SFFE_OPT="no"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $APPNAM-$VERSION
-tar xvf $CWD/$APPNAM-$VERSION.tar.gz
-cd $APPNAM-$VERSION
-chown -R root:root .
-chmod -R a-s,u+w,go+r-w .
-
-./configure \
- --prefix=/usr \
- --infodir=/usr/info \
- --with-gsl=$GSL_OPT \
- --with-sffe=$SFFE_OPT \
- --mandir=/usr/man
-
-make
-# binary already stripped, yay!
-make install DESTDIR=$PKG
-
-gzip -9 $PKG/usr/man/man6/$PRGNAM.6
-rm -f $PKG/usr/info/dir
-gzip -9 $PKG/usr/info/*.info*
-
-# Damn thing ignores --docdir
-mkdir -p $PKG/usr/doc
-mv $PKG/usr/share/$APPNAM/doc $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/usr/share/applications
-cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
-
-mkdir -p $PKG/usr/share/pixmaps
-cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/games/xaos/xaos.desktop b/games/xaos/xaos.desktop
deleted file mode 100644
index 5157bf9d46..0000000000
--- a/games/xaos/xaos.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Name=XaoS
-GenericName=XaoS Fractal Explorer
-Type=Application
-Exec=xaos
-Icon=xaos
-Terminal=false
-StartupNotify=false
-Categories=Game;
diff --git a/games/xaos/xaos.info b/games/xaos/xaos.info
deleted file mode 100644
index 93a32e8fb5..0000000000
--- a/games/xaos/xaos.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="xaos"
-VERSION="3.4"
-HOMEPAGE="http://wmi.math.u-szeged.hu/xaos/doku.php"
-DOWNLOAD="http://downloads.sourceforge.net/xaos/XaoS-3.4.tar.gz"
-MD5SUM="366fd8151e9642a0d9afce889912e388"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="B. Watson"
-EMAIL="yalhcru@gmail.com"
-APPROVED="rworkman"
diff --git a/games/xaos/xaos.png b/games/xaos/xaos.png
deleted file mode 100644
index 9aa39b813b..0000000000
--- a/games/xaos/xaos.png
+++ /dev/null
Binary files differ