diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /games-arcade/supertux/files | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'games-arcade/supertux/files')
3 files changed, 49 insertions, 0 deletions
diff --git a/games-arcade/supertux/files/supertux-0.1.3-desktop.patch b/games-arcade/supertux/files/supertux-0.1.3-desktop.patch new file mode 100644 index 000000000000..440881dc25f8 --- /dev/null +++ b/games-arcade/supertux/files/supertux-0.1.3-desktop.patch @@ -0,0 +1,21 @@ +--- supertux.desktop.orig 2010-11-07 23:29:26.058571005 -0500 ++++ supertux.desktop 2010-11-07 23:30:09.457350053 -0500 +@@ -1,7 +1,6 @@ + [Desktop Entry] + Type=Application + Version=1.0 +-Encoding=UTF-8 + Name=SuperTux + Name[en]=SuperTux + Name[de]=SuperTux +@@ -14,8 +13,8 @@ + Comment[en]=A Super Mario inspired penguin platform game + Comment[de]=Ein von Super Mario inspiriertes Pinguin Jump&Run Spiel + Comment[cs]=Plošinovka inspirovaná SuperMariem s tučňákem Tuxem v hlavní roli +-Icon=supertux.png ++Icon=supertux + Exec=supertux + Terminal=false + StartupNotify=false +-Categories=Application;Game;ArcadeGame ++Categories=Game;ArcadeGame; diff --git a/games-arcade/supertux/files/supertux-0.1.3-gcc41.patch b/games-arcade/supertux/files/supertux-0.1.3-gcc41.patch new file mode 100644 index 000000000000..5bcf53704fab --- /dev/null +++ b/games-arcade/supertux/files/supertux-0.1.3-gcc41.patch @@ -0,0 +1,12 @@ +diff -uNr supertux-0.1.3.orig/src/menu.h supertux-0.1.3/src/menu.h +--- supertux-0.1.3.orig/src/menu.h 2005-06-21 23:16:07.000000000 +0200 ++++ supertux-0.1.3/src/menu.h 2006-03-19 15:49:55.277266712 +0100 +@@ -207,7 +207,7 @@ + + bool isToggled(int id); + +- void Menu::get_controlfield_key_into_input(MenuItem *item); ++ void get_controlfield_key_into_input(MenuItem *item); + + void draw (); + void draw_item(int index, int menu_width, int menu_height); diff --git a/games-arcade/supertux/files/supertux-0.1.3-ndebug.patch b/games-arcade/supertux/files/supertux-0.1.3-ndebug.patch new file mode 100644 index 000000000000..3a302d5ecf5a --- /dev/null +++ b/games-arcade/supertux/files/supertux-0.1.3-ndebug.patch @@ -0,0 +1,16 @@ +Index: supertux-0.1.3/src/tile.cpp +=================================================================== +--- supertux-0.1.3.orig/src/tile.cpp ++++ supertux-0.1.3/src/tile.cpp +@@ -99,7 +99,11 @@ void TileManager::load_tileset(std::stri + tile->anim_speed = 25; + + LispReader reader(lisp_cdr(element)); ++ #ifdef NDEBUG ++ void(reader.read_int("id", &tile->id)); ++ #else + assert(reader.read_int("id", &tile->id)); ++ #endif + reader.read_bool("solid", &tile->solid); + reader.read_bool("brick", &tile->brick); + reader.read_bool("ice", &tile->ice); |