mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
gmaes/toga2: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2009-September/004546.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
d28a31146b
commit
a75e88f18c
5 changed files with 0 additions and 108 deletions
|
@ -1,4 +0,0 @@
|
||||||
Toga II is a Fruit 2.1 derivative. Fruit 2.1 is licensed under the GPL
|
|
||||||
v2 or later. The same applies to these ports. This is a UCI engine,
|
|
||||||
so you'll need to install an appropriate interface, such as Scid or
|
|
||||||
Knights, or Polyglot to use it with Xboard.
|
|
|
@ -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 ':'.
|
|
||||||
|
|
||||||
|----hardy-ruler---------------------------------------------------------|
|
|
||||||
toga2: toga2 (Free chess engine)
|
|
||||||
toga2:
|
|
||||||
toga2: Toga II is a Fruit 2.1 derivative. Fruit 2.1 is licensed under the GPL
|
|
||||||
toga2: v2 or later. The same applies to these ports. This is a UCI engine,
|
|
||||||
toga2: so you'll need to install an appropriate interface, such Scid or
|
|
||||||
toga2: Knights, or Polyglot to use it with Xboard
|
|
||||||
toga2:
|
|
||||||
toga2: (http://alpha.uhasselt.be/Research/Algebra/Toga/)
|
|
||||||
toga2:
|
|
||||||
toga2:
|
|
||||||
toga2:
|
|
Binary file not shown.
|
@ -1,75 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Slackware build script for toga2
|
|
||||||
|
|
||||||
# Written by Marco Pessotto <melmothx@gmail.com>
|
|
||||||
|
|
||||||
PRGNAM=toga2
|
|
||||||
VERSION=${VERSION:-141SE_posix}
|
|
||||||
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}
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
rm -rf $PKG
|
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
|
||||||
cd $TMP
|
|
||||||
rm -rf $PRGNAM-$VERSION
|
|
||||||
mkdir -p $PRGNAM-$VERSION
|
|
||||||
cd $PRGNAM-$VERSION
|
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
||||||
cd src # weird tarball
|
|
||||||
chmod -R u+w,go+r-w,a-s .
|
|
||||||
chown -R root:root .
|
|
||||||
|
|
||||||
make CXXFLAGS="-pipe $SLKCFLAGS \
|
|
||||||
-fno-exceptions -fno-rtti -Wall \
|
|
||||||
-fstrict-aliasing -fomit-frame-pointer"
|
|
||||||
strip --strip-unneeded $PRGNAM
|
|
||||||
mkdir -p $PKG/usr/games
|
|
||||||
cp $PRGNAM $PKG/usr/games
|
|
||||||
|
|
||||||
## Add the manpage (Thanks to Debian)
|
|
||||||
mkdir -p $PKG/usr/man/man6
|
|
||||||
cat $CWD/$PRGNAM.6.gz > $PKG/usr/man/man6/$PRGNAM.6.gz
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cp -a \
|
|
||||||
CHANGELOG COPYING copying.txt LICENSE readme.txt \
|
|
||||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
||||||
|
|
||||||
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}
|
|
|
@ -1,10 +0,0 @@
|
||||||
PRGNAM="toga2"
|
|
||||||
VERSION="141SE_posix"
|
|
||||||
HOMEPAGE="http://alpha.uhasselt.be/Research/Algebra/Toga"
|
|
||||||
DOWNLOAD="http://alpha.uhasselt.be/Research/Algebra/Toga/posix_versions/toga2-141SE_posix.tar.gz"
|
|
||||||
MD5SUM="25c8bc9c64ba375980d6ae981b745e31"
|
|
||||||
DOWNLOAD_x86_64=""
|
|
||||||
MD5SUM_x86_64=""
|
|
||||||
MAINTAINER="Marco Pessotto"
|
|
||||||
EMAIL="melmothx@gmail.com"
|
|
||||||
APPROVED="rworkman"
|
|
Loading…
Reference in a new issue