remove obsolete game xut (#5258)

This commit is contained in:
René Wagner
2020-08-22 22:04:38 +02:00
committed by GitHub
parent f1b2224cd2
commit 06ebaf365d
2 changed files with 0 additions and 87 deletions

View File

@@ -1,22 +0,0 @@
From 8b2c1e32d3f290835e6db44788aab1c3114dd73a Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@gmail.com>
Date: Thu, 19 Feb 2015 11:16:28 +0100
Subject: Fix detection of libm.
diff --git a/configure.in b/configure.in
index 00b99e7..b769abd 100755
--- a/configure.in
+++ b/configure.in
@@ -68,7 +68,7 @@ AC_CHECK_LIB([SDL], [main], [], [AC_MSG_ERROR(Couldn't find SDL. Please go to ht
AC_CHECK_LIB([SDL_image], [main], [], [AC_MSG_ERROR(Couldn't find SDL_image. Please go to http://www.libsdl.org/projects/SDL_image and get it!)])
AC_CHECK_LIB([SDL_ttf], [main], [], [AC_MSG_ERROR(Couldn't find SDL_ttf. Please go to http://www.libsdl.org/projects/SDL_ttf and get it!)])
# Math
-AC_CHECK_LIB([m], [main], [], [AC_MSG_ERROR(Couldn't find math lib. Something is wrong with your C/C++ distribution)])
+AC_SEARCH_LIBS([cos], [m], [], [AC_MSG_ERROR(Couldn't find math lib. Something is wrong with your C/C++ distribution)])
# Cal3D
AC_CHECK_LIB([cal3d], [main], [], [AC_MSG_ERROR(Couldn't find cal3d. Go to http://home.gna.org/cal3d and get it.)])
#the intl is needed on not gnu systems
--
2.2.2

View File

@@ -1,65 +0,0 @@
SUMMARY="A button football simulation"
DESCRIPTION="A turn based game where you play football (soccer) with buttons, \
boxes and simple rules."
HOMEPAGE="https://sourceforge.net/projects/digenv/"
COPYRIGHT="2009-2010 The DNTeam"
LICENSE="GNU GPL v3"
REVISION="3"
SOURCE_URI="http://www.mirrorservice.org/sites/downloads.sourceforge.net/d/di/digenv/xut/$portVersion/xut-$portVersion.tar.bz2"
CHECKSUM_SHA256="bbaca1531439cad1f5a040571b8208d87c129a597c93d06d1598eb512e86fef3"
SOURCE_DIR="xut"
PATCHES="xut-$portVersion.patchset"
ARCHITECTURES="!x86_gcc2 !x86"
SECONDARY_ARCHITECTURES="!x86"
PROVIDES="
xut$secondaryArchSuffix = $portVersion
cmd:xut$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libcal3d$secondaryArchSuffix
lib:libgl$secondaryArchSuffix
lib:libglu$secondaryArchSuffix
lib:libintl$secondaryArchSuffix
lib:libogg$secondaryArchSuffix
lib:libopenal$secondaryArchSuffix
lib:libSDL_1.2$secondaryArchSuffix
lib:libSDL_image_1.2$secondaryArchSuffix
lib:libSDL_ttf_2.0$secondaryArchSuffix
lib:libvorbis$secondaryArchSuffix
lib:libvorbisfile$secondaryArchSuffix
"
BUILD_REQUIRES="
devel:libcal3d$secondaryArchSuffix
devel:libglu$secondaryArchSuffix
devel:libintl$secondaryArchSuffix
devel:libogg$secondaryArchSuffix
devel:libopenal$secondaryArchSuffix
devel:libSDL_1.2$secondaryArchSuffix
devel:libSDL_image_1.2$secondaryArchSuffix
devel:libSDL_ttf_2.0$secondaryArchSuffix
devel:libvorbis$secondaryArchSuffix
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:autoconf
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
autoconf
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
mkdir -p bin
make install
cp -r data/* $dataDir/xut/
}