diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-06 15:56:51 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-07 08:38:02 +0700 |
commit | e8fc6d81adfea0ff543558b036416390ccae4e96 (patch) | |
tree | 795794ce069160a035694d15933fc243af255b8c /games | |
parent | af691c70a6eb563898d25064d2a2b9eeb98222de (diff) |
games/ember: Removed (not compatible with latest OGRE).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/ember/README | 10 | ||||
-rw-r--r-- | games/ember/World.patch | 11 | ||||
-rw-r--r-- | games/ember/configure.patch | 11 | ||||
-rw-r--r-- | games/ember/doinst.sh | 13 | ||||
-rw-r--r-- | games/ember/ember.SlackBuild | 141 | ||||
-rw-r--r-- | games/ember/ember.info | 12 | ||||
-rw-r--r-- | games/ember/slack-desc | 19 |
7 files changed, 0 insertions, 217 deletions
diff --git a/games/ember/README b/games/ember/README deleted file mode 100644 index f93c47221dc2..000000000000 --- a/games/ember/README +++ /dev/null @@ -1,10 +0,0 @@ -Ember is a 3d client using the OGRE 3d library. -It's available for all modern Linux distributions, FreeBSD, -OSX and MS Windows. -Ember is a client for the WorldForge project. -It allows you to both play in and edit virtual worlds. -This release focus on improving the editing capabilities, -allowing for much easier world creation. - -NOTE: Build first FreeImage & tolua++ after ogre and then - CEGUI0.7 diff --git a/games/ember/World.patch b/games/ember/World.patch deleted file mode 100644 index bfadeb1f1ebc..000000000000 --- a/games/ember/World.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ember-0.7.2/src/components/ogre/World.h.orig 2016-06-06 21:36:18.577010745 +0300 -+++ ember-0.7.2/src/components/ogre/World.h 2016-06-07 13:12:05.176490278 +0300 -@@ -19,6 +19,8 @@ - #ifndef EMBEROGRE_WORLD_H_ - #define EMBEROGRE_WORLD_H_ - -+#include "GraphicalChangeAdapter.h" -+ - #include "OgreIncludes.h" - #include <sigc++/signal.h> - #include <sigc++/trackable.h> diff --git a/games/ember/configure.patch b/games/ember/configure.patch deleted file mode 100644 index 415950c7f731..000000000000 --- a/games/ember/configure.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ember-0.7.2/configure.old 2016-02-06 13:43:10.960997615 +0700 -+++ ember-0.7.2/configure 2016-02-06 13:43:40.090962492 +0700 -@@ -18020,7 +18020,7 @@ - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $boost_cv_lib_version" >&5 - $as_echo "$boost_cv_lib_version" >&6; } - # e.g. "134" for 1_34_1 or "135" for 1_35 -- boost_major_version=`echo "$boost_cv_lib_version" | sed 's/_//;s/_.*//'` -+ boost_major_version=159 - case $boost_major_version in #( - '' | *[!0-9]*) - as_fn_error $? "invalid value: boost_major_version=$boost_major_version" "$LINENO" 5 diff --git a/games/ember/doinst.sh b/games/ember/doinst.sh deleted file mode 100644 index aea0f894eb32..000000000000 --- a/games/ember/doinst.sh +++ /dev/null @@ -1,13 +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 [ -x /usr/bin/update-mime-database ]; then - /usr/bin/update-mime-database usr/share/mime >/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 -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/games/ember/ember.SlackBuild b/games/ember/ember.SlackBuild deleted file mode 100644 index 43296d2174a0..000000000000 --- a/games/ember/ember.SlackBuild +++ /dev/null @@ -1,141 +0,0 @@ -#!/bin/bash - -# Slackware build script for ember - -# Copyright 2014-2016 Dimitris Zlatanidis Orestiada, Greece -# 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. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=ember -VERSION=${VERSION:-0.7.2} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -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 $PKG -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 755 {} \; - -./autogen.sh - -sed -i "/#include <sigc++\/object_slot.h>/d" src/services/server/ServerService.h -sed -i "/#include <sigc++\/object_slot.h>/d" src/services/logging/LoggingService.cpp -sed -i "/#include <sigc++\/object_slot.h>/d" src/components/ogre/terrain/TerrainManager.cpp -sed -i "/#include <sigc++\/object.h>/d" src/services/metaserver/MetaserverService.h -sed -i "/#include <sigc++\/object.h>/d" src/services/server/OOGChat.h -sed -i "/#include <sigc++\/object.h>/d" src/services/wfut/WfutService.h -sed -i "/#include <sigc++\/object.h>/d" src/services/wfut/WfutSession.h -# hard coded boost version!!! -# make sure to update whenever new version is used -patch -p1 < $CWD/configure.patch -patch -p1 < $CWD/World.patch - -mkdir -p `arch` && cd `arch` -CFLAGS="$SLKCFLAGS -fpermissive" \ -CXXFLAGS="$SLKCFLAGS -fpermissive" \ -../configure \ - --prefix=/usr \ - --bindir=/usr/bin \ - --sysconfdir=/etc \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-cegui-toluapp \ - --enable-static-build \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG -cd .. -tar xvf $CWD/$PRGNAM-media-$VERSION.tar.bz2 -cd $PRGNAM-media-$VERSION -cp -rf media/* $PKG/usr/share/ember/media -cd .. - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/share/pixmaps/ -install -D -m644 media/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.svg - -sed -i 's/#plugindir/plugindir/g' $PKG/etc/ember/ember.conf - -if [ "$ARCH" = "x86_64" ]; then - sed -i 's/usr\/lib/usr\/lib64/g' $PKG/etc/ember/ember.conf -fi - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README.md $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 -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/games/ember/ember.info b/games/ember/ember.info deleted file mode 100644 index 4727be8a5fe8..000000000000 --- a/games/ember/ember.info +++ /dev/null @@ -1,12 +0,0 @@ -PRGNAM="ember" -VERSION="0.7.2" -HOMEPAGE="https://sourceforge.net/projects/worldforge/" -DOWNLOAD="http://sourceforge.net/projects/worldforge/files/Ember%20%28OGRE%20client%29/0.7.2/ember-0.7.2.tar.bz2 \ - http://sourceforge.net/projects/worldforge/files/Ember%20%28OGRE%20client%29/0.7.2/ember-media-0.7.2.tar.bz2" -MD5SUM="5fa2cf860ebe66674d5e5e05c8e87009 \ - fb36fc4770fcea24f0fc839986b786b3" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="FreeImage tolua++ freealut ogre CEGUI eris libwfut varconf" -MAINTAINER="Dimitris Zlatanidis" -EMAIL="d.zlatanidis@gmail.com" diff --git a/games/ember/slack-desc b/games/ember/slack-desc deleted file mode 100644 index 8d128b949db7..000000000000 --- a/games/ember/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -ember: ember (3d client) -ember: -ember: Ember is a 3d client using the OGRE 3d library. -ember: It's available for all modern Linux distributions, -ember: FreeBSD, OSX and MS Windows. -ember: -ember: Homepage: https://sourceforge.net/projects/worldforge/ -ember: -ember: -ember: -ember: |