summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2007-01-12 03:40:02 +0000
committerAlfredo Tupone <tupone@gentoo.org>2007-01-12 03:40:02 +0000
commit2b876168fe81857e6d87ef5d1ff55f4460c0d272 (patch)
tree81400f2b9680e5495e0dc1e5d83f78ea11a1965d /games-puzzle/xlogical/files
parentCleanup build #161554 and #161556 by ph. (diff)
downloadhistorical-2b876168fe81857e6d87ef5d1ff55f4460c0d272.tar.gz
historical-2b876168fe81857e6d87ef5d1ff55f4460c0d272.tar.bz2
historical-2b876168fe81857e6d87ef5d1ff55f4460c0d272.zip
New ebuild by Anton Romanov. Bug #90582
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'games-puzzle/xlogical/files')
-rw-r--r--games-puzzle/xlogical/files/digest-xlogical-1.0.73
-rw-r--r--games-puzzle/xlogical/files/xlogical-1.0.7-gcc41.patch49
2 files changed, 52 insertions, 0 deletions
diff --git a/games-puzzle/xlogical/files/digest-xlogical-1.0.7 b/games-puzzle/xlogical/files/digest-xlogical-1.0.7
new file mode 100644
index 000000000000..14c822e16d88
--- /dev/null
+++ b/games-puzzle/xlogical/files/digest-xlogical-1.0.7
@@ -0,0 +1,3 @@
+MD5 e3a75519bae4d9dea1d8cd98d3586c88 xlogical-1.0-7.tar.bz2 1853575
+RMD160 f290e0e41c607a2a3e567f093ddb59d015f12a77 xlogical-1.0-7.tar.bz2 1853575
+SHA256 166d227770dcb7d94138f844a8a81380eff3fac7f564274bb2c66ae974e8e7ca xlogical-1.0-7.tar.bz2 1853575
diff --git a/games-puzzle/xlogical/files/xlogical-1.0.7-gcc41.patch b/games-puzzle/xlogical/files/xlogical-1.0.7-gcc41.patch
new file mode 100644
index 000000000000..19cd188b0e0e
--- /dev/null
+++ b/games-puzzle/xlogical/files/xlogical-1.0.7-gcc41.patch
@@ -0,0 +1,49 @@
+--- properties.h.old 2007-01-11 17:33:45.000000000 +0100
++++ properties.h 2007-01-11 17:34:32.000000000 +0100
+@@ -33,9 +33,7 @@
+ #include <map>
+ #include <string>
+
+-#ifdef WIN32
+ using namespace std;
+-#endif
+
+ #include "defs.h"
+
+--- anim.h.old 2007-01-11 17:36:20.000000000 +0100
++++ anim.h 2007-01-11 17:36:37.000000000 +0100
+@@ -27,9 +27,7 @@
+ // Language Includes
+ #include <list>
+
+-#ifdef WIN32
+ using namespace std;
+-#endif
+
+ // Application Includes
+ #include "graph.h"
+--- exception.h.old 2007-01-11 17:37:37.000000000 +0100
++++ exception.h 2007-01-11 17:38:21.000000000 +0100
+@@ -27,10 +27,9 @@
+
+ // Language Includes
+ #include <string>
++#include <iostream>
+
+-#ifdef WIN32
+ using namespace std;
+-#endif
+
+ #define CatchEx(aEx) catch( CXLException aEx )
+ #define ThrowEx(aError) throw CXLException(aError,__FILE__,__LINE__)
+--- gamelogic.cpp.old 2007-01-11 17:38:52.000000000 +0100
++++ gamelogic.cpp 2007-01-11 17:39:12.000000000 +0100
+@@ -154,7 +154,7 @@
+ levelFile = NULL;
+ }
+
+- currentMap = NULL;
++ currentMap = gameLevels.begin();
+
+ playerName = new char[32+1];
+ strcpy( playerName, "nobody" );