diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-08-29 18:22:13 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-08-29 18:22:13 +0000 |
commit | c41b06ad048d68d1ceca1110a711b444d413d14e (patch) | |
tree | e5af45c4a23c4e5ee649951fd383ced8b3976c79 /games-board/qgo/files | |
parent | ppc stable #279238 (diff) | |
download | gentoo-2-c41b06ad048d68d1ceca1110a711b444d413d14e.tar.gz gentoo-2-c41b06ad048d68d1ceca1110a711b444d413d14e.tar.bz2 gentoo-2-c41b06ad048d68d1ceca1110a711b444d413d14e.zip |
old
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-board/qgo/files')
-rw-r--r-- | games-board/qgo/files/qgo-1.5.4-gcc43.patch | 115 | ||||
-rw-r--r-- | games-board/qgo/files/qgo-1.5.4-parallel.patch | 34 |
2 files changed, 0 insertions, 149 deletions
diff --git a/games-board/qgo/files/qgo-1.5.4-gcc43.patch b/games-board/qgo/files/qgo-1.5.4-gcc43.patch deleted file mode 100644 index d93f241d5d74..000000000000 --- a/games-board/qgo/files/qgo-1.5.4-gcc43.patch +++ /dev/null @@ -1,115 +0,0 @@ ---- src/matrix.cpp -+++ src/matrix.cpp -@@ -5,7 +5,7 @@ - #include "matrix.h" - #include <stdlib.h> - #ifndef NO_DEBUG --#include <iostream.h> -+#include <iostream> - #endif - - Matrix::Matrix(int s) -@@ -78,60 +78,60 @@ - - int i, j; - -- cout << "\n "; -+ std::cout << "\n "; - for (i=0; i<size; i++) -- cout << (i+1)%10 << " "; -- cout << endl; -+ std::cout << (i+1)%10 << " "; -+ std::cout << endl; - - for (i=0; i<size; i++) - { -- cout << (i+1)%10 << " "; -+ std::cout << (i+1)%10 << " "; - for (j=0; j<size; j++) - { - #if 1 - switch (abs(matrix[j][i])) - { - case stoneNone: -- case stoneErase: cout << ". "; break; -- case stoneBlack: cout << "B "; break; -- case stoneWhite: cout << "W "; break; -- case markSquare*10: cout << "[ "; break; -- case markCircle*10: cout << "O "; break; -- case markTriangle*10: cout << "T "; break; -- case markCross*10: cout << "X "; break; -- case markText*10: cout << "A "; break; -- case markNumber*10: cout << "1 "; break; -- case markSquare*10+stoneBlack: cout << "S "; break; -- case markCircle*10+stoneBlack: cout << "C "; break; -- case markTriangle*10+stoneBlack: cout << "D "; break; -- case markCross*10+stoneBlack: cout << "R "; break; -- case markText*10+stoneBlack: cout << "A "; break; -- case markNumber*10+stoneBlack: cout << "N "; break; -- case markSquare*10+stoneWhite: cout << "s "; break; -- case markCircle*10+stoneWhite: cout << "c "; break; -- case markTriangle*10+stoneWhite: cout << "d "; break; -- case markCross*10+stoneWhite: cout << "r "; break; -- case markText*10+stoneWhite: cout << "a "; break; -- case markNumber*10+stoneWhite: cout << "n "; break; -- default: cout << "? "; -+ case stoneErase: std::cout << ". "; break; -+ case stoneBlack: std::cout << "B "; break; -+ case stoneWhite: std::cout << "W "; break; -+ case markSquare*10: std::cout << "[ "; break; -+ case markCircle*10: std::cout << "O "; break; -+ case markTriangle*10: std::cout << "T "; break; -+ case markCross*10: std::cout << "X "; break; -+ case markText*10: std::cout << "A "; break; -+ case markNumber*10: std::cout << "1 "; break; -+ case markSquare*10+stoneBlack: std::cout << "S "; break; -+ case markCircle*10+stoneBlack: std::cout << "C "; break; -+ case markTriangle*10+stoneBlack: std::cout << "D "; break; -+ case markCross*10+stoneBlack: std::cout << "R "; break; -+ case markText*10+stoneBlack: std::cout << "A "; break; -+ case markNumber*10+stoneBlack: std::cout << "N "; break; -+ case markSquare*10+stoneWhite: std::cout << "s "; break; -+ case markCircle*10+stoneWhite: std::cout << "c "; break; -+ case markTriangle*10+stoneWhite: std::cout << "d "; break; -+ case markCross*10+stoneWhite: std::cout << "r "; break; -+ case markText*10+stoneWhite: std::cout << "a "; break; -+ case markNumber*10+stoneWhite: std::cout << "n "; break; -+ default: std::cout << "? "; - } - #else -- cout << matrix[j][i] << " "; -+ std::cout << matrix[j][i] << " "; - #endif - } -- cout << (i+1)%10 << endl; -+ std::cout << (i+1)%10 << endl; - } - -- cout << " "; -+ std::cout << " "; - for (i=0; i<size; i++) -- cout << (i+1)%10 << " "; -- cout << endl; -+ std::cout << (i+1)%10 << " "; -+ std::cout << endl; - - if (markTexts != NULL && !markTexts->isEmpty()) - { -- cout << markTexts->count() << " mark texts in the storage.\n"; -+ std::cout << markTexts->count() << " mark texts in the storage.\n"; - for (QStringList::Iterator it=markTexts->begin(); it != markTexts->end(); ++it) -- cout << (QString)(*it) << endl; -+ std::cout << (QString)(*it) << endl; - } - } - #endif ---- src/tree.cpp -+++ src/tree.cpp -@@ -5,7 +5,6 @@ - #include "tree.h" - #include "move.h" - #include "qgo.h" --#include <iostream.h> - #include <qptrstack.h> - - Tree::Tree(int board_size) diff --git a/games-board/qgo/files/qgo-1.5.4-parallel.patch b/games-board/qgo/files/qgo-1.5.4-parallel.patch deleted file mode 100644 index 4351104b7071..000000000000 --- a/games-board/qgo/files/qgo-1.5.4-parallel.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- src/sounds/Makefile.in.bad 2007-06-02 11:24:44.000000000 +0200 -+++ src/sounds/Makefile.in 2007-06-02 11:25:08.000000000 +0200 -@@ -373,7 +353,7 @@ - - info-am: - --install-data-am: install-SoundsDATA install-data-local -+install-data-am: install-SoundsDATA - - install-exec-am: - ---- src/translations/Makefile.in.bad 2007-06-02 11:24:48.000000000 +0200 -+++ src/translations/Makefile.in 2007-06-02 11:25:08.000000000 +0200 -@@ -374,7 +353,7 @@ - - info-am: - --install-data-am: install-TranslationsDATA install-data-local -+install-data-am: install-TranslationsDATA - - install-exec-am: - ---- templates/Makefile.in.bad 2007-09-20 15:39:52.000000000 -0400 -+++ templates/Makefile.in 2007-09-20 15:40:01.000000000 -0400 -@@ -386,8 +386,7 @@ - - info-am: - --install-data-am: install-ApplinkDATA install-MimelinkDATA \ -- install-data-local -+install-data-am: install-ApplinkDATA install-MimelinkDATA - - install-exec-am: - |