From db40c228c77ed083d37f306efe4a8eefed91785a Mon Sep 17 00:00:00 2001 From: Mark Saiia Date: Tue, 11 May 2010 14:28:18 +0200 Subject: games/gnugo: Initial import --- games/gnugo/README | 7 +++++ games/gnugo/gnugo.SlackBuild | 62 ++++++++++++++++++++++++++++++++++++++++++++ games/gnugo/gnugo.info | 8 ++++++ games/gnugo/slack-desc | 11 ++++++++ 4 files changed, 88 insertions(+) create mode 100644 games/gnugo/README create mode 100644 games/gnugo/gnugo.SlackBuild create mode 100644 games/gnugo/gnugo.info create mode 100644 games/gnugo/slack-desc (limited to 'games/gnugo') diff --git a/games/gnugo/README b/games/gnugo/README new file mode 100644 index 0000000000..ea21969705 --- /dev/null +++ b/games/gnugo/README @@ -0,0 +1,7 @@ +GNU Go is a free program that plays the game of Go. +GNU Go has played thousands of games on the NNGS Go server. GNU Go is +now also playing regularly on the Legend Go Server in Taiwan, on the +WING server in Japan, and many volunteers run GNU Go clients on KGS. +GNU Go has established itself as the leading non-commercial go program +in the recent tournaments that it has taken part in. + diff --git a/games/gnugo/gnugo.SlackBuild b/games/gnugo/gnugo.SlackBuild new file mode 100644 index 0000000000..ee6aad2d77 --- /dev/null +++ b/games/gnugo/gnugo.SlackBuild @@ -0,0 +1,62 @@ +#!/bin/sh + +# Slackware build script for gnugo + +# Written by Mark Saiia mark.saiia@gmail.com +# Slightly modified by the SlackBuilds.org project + +set -e + +PRGNAM=gnugo +VERSION=3.6 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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 $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 \ + --bindir=/usr/games \ + --sysconfdir=/etc \ + --localstatedir=/var + +make +make install-strip DESTDIR=$PKG + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +rm -f $PKG/usr/info/dir +gzip -9 $PKG/usr/info/*.info* + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING INSTALL NEWS README THANKS TODO WINDOWS $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.tgz diff --git a/games/gnugo/gnugo.info b/games/gnugo/gnugo.info new file mode 100644 index 0000000000..b73cd4e265 --- /dev/null +++ b/games/gnugo/gnugo.info @@ -0,0 +1,8 @@ +PRGNAME="gnugo" +VERSION="3.6" +HOMEPAGE="http://www.gnu.org/software/gnugo/gnugo.html" +DOWNLOAD="http://ftp.gnu.org/gnu/gnugo/gnugo-3.6.tar.gz" +MD5SUM="53abc7427d89d81155c8bfc8e005c47f" +MAINTAINER="Mark Saiia" +EMAIL="mark.saiia@gmail.com" +APPROVED="BP{k}" diff --git a/games/gnugo/slack-desc b/games/gnugo/slack-desc new file mode 100644 index 0000000000..a8d354b9ed --- /dev/null +++ b/games/gnugo/slack-desc @@ -0,0 +1,11 @@ +gnugo: GNU Go is a free program that plays the game of Go. +gnugo: +gnugo: GNU Go has played thousands of games on the NNGS Go server. GNU Go is +gnugo: now also playing regularly on the Legend Go Server in Taiwan, on the +gnugo: WING server in Japan, and many volunteers run GNU Go clients on KGS. +gnugo: GNU Go has established itself as the leading non-commercial go program +gnugo: in the recent tournaments that it has taken part in. +gnugo: +gnugo: +gnugo: http://www.gnu.org/software/gnugo/gnugo.html +gnugo: -- cgit v1.2.3-65-gdbad