commit:     2eaeb2b46a1cee57f60a111172acce2591315242
Author:     Vadim A. Misbakh-Soloviov <git <AT> mva <DOT> name>
AuthorDate: Mon Aug 19 21:28:44 2019 +0000
Commit:     Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Mon Aug 19 21:28:44 2019 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=2eaeb2b4

games-arcade/hurrican: drop (lack of maintenance)

 games-action/tatan/Manifest                        |  22 --
 games-action/tatan/metadata.xml                    |   8 -
 games-action/tatan/tatan-1.0.ebuild                |  62 -----
 games-arcade/hurrican/files/hurrican-homedir.patch | 157 ------------
 games-arcade/hurrican/hurrican-9999.ebuild         |  56 -----
 games-arcade/hurrican/metadata.xml                 |   5 -
 games-arcade/maxfighter/Manifest                   |  21 --
 games-arcade/maxfighter/maxfighter-1.0.ebuild      |  55 -----
 games-arcade/prototype/Manifest                    |  22 --
 .../prototype/files/prototype-1.0-hacks.patch      | 111 ---------
 .../prototype/files/prototype-1.0-homedir.patch    | 234 ------------------
 .../prototype/files/prototype-1.0-includes.patch   | 202 ---------------
 .../prototype/files/prototype-1.0-linuxfixes.patch | 110 ---------
 .../prototype/files/prototype-1.0-makefile.patch   |  33 ---
 .../files/prototype-1.0-sdlrendertarget.patch      | 104 --------
 .../prototype/files/prototype-1.0-setstate.patch   | 271 ---------------------
 games-arcade/prototype/metadata.xml                |   8 -
 games-arcade/prototype/prototype-1.0.ebuild        |  71 ------
 games-fps/brutal-doom/Manifest                     |  12 +-
 games-fps/brutal-doom/brutal-doom-20b_p3.ebuild    |  36 ---
 games-fps/brutal-doom/brutal-doom-21.ebuild        |  32 +++
 games-fps/dhewm3/Manifest                          |   2 +-
 ...3-1.5.0_rc1.ebuild => dhewm3-1.5.1_pre1.ebuild} |   6 +-
 games-fps/gzdoom/Manifest                          |  11 -
 games-fps/gzdoom/gzdoom-3.2.5.ebuild               |  53 ----
 games-fps/gzdoom/metadata.xml                      |  11 -
 games-fps/xonotic-data/metadata.xml                |  14 --
 games-fps/xonotic-data/xonotic-data-9999.ebuild    | 196 ---------------
 games-fps/xonotic-maps/metadata.xml                |  11 -
 games-fps/xonotic-maps/xonotic-maps-9999.ebuild    | 151 ------------
 games-fps/xonotic/metadata.xml                     |  17 --
 games-fps/xonotic/xonotic-9999.ebuild              | 137 -----------
 games-mud/tf/Manifest                              |  21 --
 games-mud/tf/metadata.xml                          |   8 -
 games-mud/tf/tf-9999.ebuild                        |  73 ------
 games-strategy/opendungeons-data/metadata.xml      |   9 -
 .../opendungeons-data-9999.ebuild                  |  24 --
 games-strategy/opendungeons/Manifest               |   1 +
 games-strategy/opendungeons/files/opendungeons.svg | 102 --------
 games-strategy/opendungeons/metadata.xml           |   2 +-
 .../opendungeons/opendungeons-0.7.1.ebuild         |  34 +++
 .../opendungeons/opendungeons-9999.ebuild          |  53 ----
 media-libs/mysdl/Manifest                          |  21 --
 media-libs/mysdl/files/mysdl_1.0-gcc4.patch        |  59 -----
 media-libs/mysdl/files/mysdl_1.0-pnghack.patch     |  76 ------
 media-libs/mysdl/mysdl-1.0.ebuild                  |  46 ----
 media-sound/oaml/Manifest                          |   2 +-
 media-sound/oaml/metadata.xml                      |   3 +
 .../oaml/{oaml-1.1.ebuild => oaml-1.3.4.ebuild}    |  18 +-
 49 files changed, 84 insertions(+), 2709 deletions(-)

diff --cc games-arcade/hurrican/files/hurrican-homedir.patch
index 48b7958,48b7958..0000000
deleted file mode 100644,100644
--- a/games-arcade/hurrican/files/hurrican-homedir.patch
+++ /dev/null
@@@ -1,157 -1,157 +1,0 @@@
--diff -Naur Hurrican-o/src/Gameplay.cpp Hurrican/src/Gameplay.cpp
----- Hurrican-o/src/Gameplay.cpp       2012-06-11 12:43:18.000000000 +0200
--+++ Hurrican/src/Gameplay.cpp 2012-06-15 09:01:53.384365253 +0200
--@@ -34,6 +34,10 @@
-- #include "Tileengine.h"
-- #include "Timer.h"
-- 
--+#if defined(__LINUX__)
--+#include <sys/stat.h>
--+#endif
--+
-- // 
--------------------------------------------------------------------------------------
-- // Gameplay Variablen
-- // 
--------------------------------------------------------------------------------------
--@@ -71,6 +75,19 @@
-- 
-- int          DisplayHintNr = -1;
-- 
--+
--+#if defined(__LINUX__)
--+// file in HOME
--+
--+std::string homefile(std::string file)
--+{
--+     std::string home=getenv("HOME");
--+     std::string hurrihome=home+"/.config/hurrican/";
--+     mkdir(hurrihome.c_str(), 0755);
--+     return hurrihome+file;  
--+}
--+#endif
--+
-- // 
--------------------------------------------------------------------------------------
-- // Ein neues Spiel initialisieren
-- // 
--------------------------------------------------------------------------------------
--@@ -683,8 +700,11 @@
--      float Sound, Musik;
-- 
--      FILE *Datei = NULL;
---
--+#if defined(__LINUX__)
--+     fopen_s(&Datei, homefile(CONFIGFILE).c_str(), "rb"); // versuchen Datei 
zu �ffnen
--+#else
--      fopen_s(&Datei, CONFIGFILE, "rb");              // versuchen Datei zu 
�ffnen
--+#endif
-- 
--      if (Datei == NULL)
--              return false;
--@@ -770,7 +790,12 @@
-- 
--      FILE *Datei = NULL;
-- 
--+#if defined(__LINUX__)
--+     fopen_s(&Datei, homefile(CONFIGFILE).c_str(), "wb");
--+#else
--      fopen_s(&Datei, CONFIGFILE, "wb");
--+#endif
--+
--      if (Datei == NULL)
--     {
--              Protokoll.WriteText("Config file saving failed !\n", false);
--diff -Naur Hurrican-o/src/Gameplay.h Hurrican/src/Gameplay.h
----- Hurrican-o/src/Gameplay.h 2012-06-11 12:43:18.000000000 +0200
--+++ Hurrican/src/Gameplay.h   2012-06-15 08:56:05.954362843 +0200
--@@ -87,5 +87,9 @@
-- 
-- extern char  StageReihenfolge[256][100];
-- 
--+#if defined(__LINUX__)
--+extern std::string homefile(std::string file);
--+#endif
--+
-- #endif
-- 
--diff -Naur Hurrican-o/src/Logdatei.cpp Hurrican/src/Logdatei.cpp
----- Hurrican-o/src/Logdatei.cpp       2012-06-11 12:43:18.000000000 +0200
--+++ Hurrican/src/Logdatei.cpp 2012-06-15 09:21:03.644373234 +0200
--@@ -40,7 +40,7 @@
-- // erstellt eine neue Logdatei mit dem Namen "Name"
-- // 
--------------------------------------------------------------------------------------
-- 
---Logdatei::Logdatei(const char Name[20])
--+Logdatei::Logdatei(const char Name[100])
-- {
--      int len = strlen(Name) + 1;
--      strcpy_s(itsFilename, len, Name);                                       
                // Namen sichern
--diff -Naur Hurrican-o/src/Logdatei.h Hurrican/src/Logdatei.h
----- Hurrican-o/src/Logdatei.h 2012-06-11 12:43:20.000000000 +0200
--+++ Hurrican/src/Logdatei.h   2012-06-15 09:16:44.774371437 +0200
--@@ -19,12 +19,12 @@
-- class Logdatei
-- {
--      private:
---             char itsFilename[20];                                           
                // Dateiname der Log-Datei
--+             char itsFilename[100];                                          
                // Dateiname der Log-Datei
-- 
--      public:
--              bool    delLogFile;                                             
                        // Logfile am Ende l�schen, wenn kein Fehler auftrat
-- 
---                  Logdatei    (const char Name[20]);                         
        // Konstruktor
--+                  Logdatei    (const char Name[100]);                        
                // Konstruktor
--                      ~Logdatei    (void);                                    
                // Desktruktor;
--              void WriteText   (const char Text[180], bool Abbruch);  // Text 
in Datei schreiben
--              void WriteValue  (int value);                                   
        // Wert in Datei schreiben
--diff -Naur Hurrican-o/src/Main.cpp Hurrican/src/Main.cpp
----- Hurrican-o/src/Main.cpp   2012-06-11 12:43:20.000000000 +0200
--+++ Hurrican/src/Main.cpp     2012-06-15 08:53:17.284361671 +0200
--@@ -101,6 +101,8 @@
-- TimerClass                           *pTimer;                                
                // Timer Klasse f�r die Framerate
-- #if defined(__AROS__)
-- Logdatei                             Protokoll("T:Game_Log.txt");            
// Protokoll Datei
--+#elif defined(__LINUX__)
--+Logdatei                             
Protokoll(homefile("Game_Log.txt").c_str());            // Protokoll Datei
-- #else
-- Logdatei                             Protokoll("Game_Log.txt");              
// Protokoll Datei
-- #endif
--@@ -559,7 +561,12 @@
-- 
--      // Kein Fehler im Game? Dann Logfile l�schen
--      if (Protokoll.delLogFile == true)
--+
--+#if defined(__LINUX__)
--+             DeleteFile(homefile("Game_Log.txt").c_str());
--+#else
--              DeleteFile("Game_Log.txt");
--+#endif
-- 
-- #if defined(PLATFORM_DIRECTX)
--      return(message.wParam);                                                 
                        // R�ckkehr zu Windows
--diff -Naur Hurrican-o/src/Menu.cpp Hurrican/src/Menu.cpp
----- Hurrican-o/src/Menu.cpp   2012-06-11 12:43:19.000000000 +0200
--+++ Hurrican/src/Menu.cpp     2012-06-15 08:55:10.814362460 +0200
--@@ -2666,8 +2666,12 @@
--      // Versuchen, die Highscore Datei zu �ffnen
--      // falls sie nicht existiert oder es eine Fehler gibt, wird die Standard
--      // Highscore gesetzt
---     fopen_s(&Datei, "Hurrican.hsl", "rb");
-- 
--+#if defined(__LINUX__)
--+     fopen_s(&Datei, homefile("Hurrican.hsl").c_str(), "rb");
--+#else
--+     fopen_s(&Datei, "Hurrican.hsl", "rb");
--+#endif
-- 
--      // Fehler beim �ffnen ? Dann standard Highscore setzen
--      //
--@@ -2722,7 +2726,11 @@
--      FILE *Datei;                    // Savegame Datei
-- 
--      // Highscore Datei �ffnen
--+#if defined(__LINUX__)
--+     fopen_s(&Datei, homefile("Hurrican.hsl").c_str(), "wb");
--+#else
--      fopen_s(&Datei, "Hurrican.hsl", "wb");
--+#endif
-- 
--      // Fehler beim �ffnen ? Dann standard Highscore setzen
--      //
diff --cc games-arcade/hurrican/hurrican-9999.ebuild
index 885b7ef,885b7ef..0000000
deleted file mode 100644,100644
--- a/games-arcade/hurrican/hurrican-9999.ebuild
+++ /dev/null
@@@ -1,56 -1,56 +1,0 @@@
--# Copyright 1999-2012 Gentoo Foundation
--# Distributed under the terms of the GNU General Public License v2
--# $Header: $
--
--EAPI="3"
--
--inherit eutils games subversion
--
--DESCRIPTION="a free and opensource Remake of the famous Turrican"
--HOMEPAGE="http://http://www.hurrican-game.de";
--ESVN_REPO_URI="svn://svn.code.sf.net/p/${PN}/code/trunk/Hurrican/"
--ESVN_PROJECT="${PN}"
--
--LICENSE="GPL-2"
--SLOT="0"
--KEYWORDS=""
--IUSE="debug"
--
--RDEPEND="media-libs/libmodplug
--      >=media-libs/libsdl-1.2
--      media-libs/sdl-image
--      media-libs/sdl-mixer
--      virtual/opengl"
--
--DEPEND="${RDEPEND}"
--
--src_prepare() {
--      epatch "${FILESDIR}"/${PN}-homedir.patch || die
--      # Respect GAMES_DATADIR
--      sed -i -e "s:hurricanlinux:hurrican:g" -i src/Makefile || die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i src/Console.cpp 
|| die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i src/DX8Font.cpp 
|| die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i 
src/DX8Sound.cpp || die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i 
src/DX8Sprite.cpp || die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i 
src/lightmap.cpp || die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i src/Texts.cpp 
|| die
--      sed -i -e "s:data\/:${GAMES_DATADIR}/${PN}/data\/:g" -i 
src/Tileengine.cpp || die
--      sed -i -e "s:english.lng:${GAMES_DATADIR}/${PN}/english.lng:g" -i 
src/Gameplay.cpp || die
--
--}
--
--src_compile() {
--      cd src
--      emake || die "make failed"
--}
--
--src_install() {
--      dogamesbin ${PN}
--      local datadir="${GAMES_DATADIR}"/"${PN}"
--      dodir ${datadir}
--      insinto "${GAMES_DATADIR}"/"${PN}"
--      doins -r data lang english.lng || die
--      make_desktop_entry "${PN}" "${PN}"
--      dodoc readme.txt
--      prepgamesdirs
--}
diff --cc games-arcade/hurrican/metadata.xml
index 4a5a466,4a5a466..0000000
deleted file mode 100644,100644
--- a/games-arcade/hurrican/metadata.xml
+++ /dev/null
@@@ -1,5 -1,5 +1,0 @@@
--<?xml version="1.0" encoding="UTF-8"?>
--<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
--<pkgmetadata>
--<herd>playboys</herd>
--</pkgmetadata>

Reply via email to