summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-24 02:39:15 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-24 16:10:13 -0500
commit0919bd172c95ac597b31f8987fbf4f9613992e67 (patch)
tree25644a71b8f2688728d3681a5b244de482c9a426
parentef7f886fe6c2e1cc9920ea6cb3d9d9b938f5463c (diff)
downloadslackbuilds-0919bd172c95ac597b31f8987fbf4f9613992e67.tar.gz
slackbuilds-0919bd172c95ac597b31f8987fbf4f9613992e67.tar.xz
games/springlobby: Removed (Build failure)
-rw-r--r--games/springlobby/README3
-rw-r--r--games/springlobby/doinst.sh10
-rw-r--r--games/springlobby/slack-desc19
-rw-r--r--games/springlobby/springlobby.SlackBuild82
-rw-r--r--games/springlobby/springlobby.info10
5 files changed, 0 insertions, 124 deletions
diff --git a/games/springlobby/README b/games/springlobby/README
deleted file mode 100644
index a47c0e58b9..0000000000
--- a/games/springlobby/README
+++ /dev/null
@@ -1,3 +0,0 @@
-SpringLobby is a free cross-platform lobby client for the Spring RTS project.
-
-This requires wxpython (or wxGTK), SDL_sound, and libtorrent-rasterbar.
diff --git a/games/springlobby/doinst.sh b/games/springlobby/doinst.sh
deleted file mode 100644
index 1f8ff67ded..0000000000
--- a/games/springlobby/doinst.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
diff --git a/games/springlobby/slack-desc b/games/springlobby/slack-desc
deleted file mode 100644
index 7715fefeba..0000000000
--- a/games/springlobby/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-------------------------------------------------|
-springlobby: SpringLobby (a free lobby client for the Spring RTS project.)
-springlobby:
-springlobby: SpringLobby is a free cross-platform lobby client for the
-springlobby: Spring RTS project.
-springlobby:
-springlobby: http://springlobby.info/
-springlobby:
-springlobby:
-springlobby:
-springlobby:
-springlobby:
diff --git a/games/springlobby/springlobby.SlackBuild b/games/springlobby/springlobby.SlackBuild
deleted file mode 100644
index 2861b629a9..0000000000
--- a/games/springlobby/springlobby.SlackBuild
+++ /dev/null
@@ -1,82 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for SpringLobby
-#
-# Copyright 2009 Erik W. Hanson, Minneapolis, 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.
-
-PRGNAM=springlobby
-VERSION=0.40
-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"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-set -eu
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-
-cmake \
- -DCMAKE_CXX_FLAGS=${SLKCFLAGS} \
- -DCMAKE_C_FLAGS=${SLKCFLAGS} \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLIBDIR=/usr/lib${LIBDIRSUFFIX} \
- .
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-
-mkdir -p $PKG/usr/doc
-mv $PKG/usr/share/doc/$PRGNAM $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-rm -rf $PKG/usr/share/doc
-( cd $PKG/usr/doc ; ln -s $PRGNAM-$VERSION $VERSION )
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/games/springlobby/springlobby.info b/games/springlobby/springlobby.info
deleted file mode 100644
index cc0c60568d..0000000000
--- a/games/springlobby/springlobby.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="springlobby"
-VERSION="0.40"
-HOMEPAGE="http://springlobby.info/"
-DOWNLOAD="http://www.springlobby.info/tarballs/springlobby-0.40.tar.bz2"
-MD5SUM="8dd959b55de4ae85c419afdc23535417"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Erik Hanson"
-EMAIL="erik@slackbuilds.org"
-APPROVED="rworkman"