Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master games grimoire by Eric Sandall (2892b30155e6e2bcdb5547c5b9ac17d373f2e633)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master games grimoire by Eric Sandall (2892b30155e6e2bcdb5547c5b9ac17d373f2e633)
  • Date: Sat, 26 Apr 2008 23:31:29 -0500

GIT changes to master games grimoire by Eric Sandall
<sandalle AT sourcemage.org>:

dev/null |binary
games-libs/cal3d/HISTORY | 4 +
games-libs/cal3d/PRE_BUILD | 3 +
games-libs/cal3d/gcc43.patch | 60
++++++++++++++++++++++++++++
games-libs/libwfut/DETAILS | 2
games-libs/libwfut/HISTORY | 6 ++
games-libs/libwfut/PRE_BUILD | 3 +
games-libs/libwfut/gcc43.patch | 17 +++++++
games-libs/libwfut/libwfut-0.1.0.tar.gz.sig | 0
games-libs/libwfut/libwfut-0.2.0.tar.gz.sig |binary
games-rpg-mp/ember/DETAILS | 2
games-rpg-mp/ember/HISTORY | 6 ++
games-rpg-mp/ember/PRE_BUILD | 4 +
games-rpg-mp/ember/ember-0.5.1.tar.bz2.sig | 0
games-rpg-mp/ember/ember-0.5.2.tar.bz2.sig |binary
games-rpg-mp/ember/gcc43.patch.gz |binary
games-rpg-mp/sear/HISTORY | 9 ++++
games-rpg-mp/sear/PRE_BUILD | 6 +-
games-rpg-mp/sear/gcc43.patch.gz |binary
games-rpg-mp/sear/libsigc.patch.gz |binary
20 files changed, 117 insertions(+), 5 deletions(-)

New commits:
commit 2892b30155e6e2bcdb5547c5b9ac17d373f2e633
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ember: Updated to 0.5.2 and fixed to compile with GCC 4.3.0

commit 5c2302148eafe2efdc28c28a6a2985ccc22e318a
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

sear: Fix compilation with GCC 4.3.0 and libsigc++3 2.2.2

commit 576d817949788e99a399f278eb10f48e5a82a2bd
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

cal3d: Fix compilation with GCC 4.3.0

commit ff13ef4ba104a85c936e22006d52fd552d599c65
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libwfut: Updated to 0.2.0
Applied upstream patch from Marc Riese <marc-riese AT gmx.de> to fix
compilation
with GCC 4.3.0

diff --git a/games-libs/cal3d/HISTORY b/games-libs/cal3d/HISTORY
index 7f6871d..3e5959c 100644
--- a/games-libs/cal3d/HISTORY
+++ b/games-libs/cal3d/HISTORY
@@ -1,3 +1,7 @@
+2008-04-26 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_BUILD: Apply gcc43.patch
+ * gcc43.patch: Fix compilation with GCC 4.3.0
+
2008-01-06 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Hosting has moved off of SF and onto GNA

diff --git a/games-libs/cal3d/PRE_BUILD b/games-libs/cal3d/PRE_BUILD
new file mode 100755
index 0000000..34cce88
--- /dev/null
+++ b/games-libs/cal3d/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p1 < $SCRIPT_DIRECTORY/gcc43.patch
diff --git a/games-libs/cal3d/gcc43.patch b/games-libs/cal3d/gcc43.patch
new file mode 100644
index 0000000..d7b5772
--- /dev/null
+++ b/games-libs/cal3d/gcc43.patch
@@ -0,0 +1,60 @@
+diff -Naur cal3d-0.11.0.orig/src/cal3d/hardwaremodel.cpp
cal3d-0.11.0/src/cal3d/hardwaremodel.cpp
+--- cal3d-0.11.0.orig/src/cal3d/hardwaremodel.cpp 2008-04-26
16:29:54.433217561 -0700
++++ cal3d-0.11.0/src/cal3d/hardwaremodel.cpp 2008-04-26 16:30:10.987227079
-0700
+@@ -24,6 +24,8 @@
+ #include "cal3d/coreskeleton.h"
+ #include "cal3d/skeleton.h"
+
++#include <cstring>
++
+
+
/*****************************************************************************/
+ /** Constructs the hardware model instance.
+diff -Naur cal3d-0.11.0.orig/src/cal3d/platform.cpp
cal3d-0.11.0/src/cal3d/platform.cpp
+--- cal3d-0.11.0.orig/src/cal3d/platform.cpp 2008-04-26 16:29:54.432218202
-0700
++++ cal3d-0.11.0/src/cal3d/platform.cpp 2008-04-26 16:32:05.458248885
-0700
+@@ -18,6 +18,8 @@
+
+ #include "cal3d/platform.h"
+
++#include <cstring>
++
+
/*****************************************************************************/
+ /** Constructs the platform instance.
+ *
+diff -Naur cal3d-0.11.0.orig/src/cal3d/renderer.cpp
cal3d-0.11.0/src/cal3d/renderer.cpp
+--- cal3d-0.11.0.orig/src/cal3d/renderer.cpp 2008-04-26 16:29:54.432218202
-0700
++++ cal3d-0.11.0/src/cal3d/renderer.cpp 2008-04-26 16:33:06.537218419
-0700
+@@ -29,6 +29,8 @@
+ #include "cal3d/coresubmesh.h"
+ #include "cal3d/physique.h"
+
++#include <cstring>
++
+
/*****************************************************************************/
+ /** Constructs the renderer instance.
+ *
+diff -Naur cal3d-0.11.0.orig/src/cal3d/submesh.cpp
cal3d-0.11.0/src/cal3d/submesh.cpp
+--- cal3d-0.11.0.orig/src/cal3d/submesh.cpp 2008-04-26 16:29:54.431218355
-0700
++++ cal3d-0.11.0/src/cal3d/submesh.cpp 2008-04-26 16:33:47.931260330 -0700
+@@ -16,6 +16,8 @@
+ #include "cal3d/error.h"
+ #include "cal3d/coresubmesh.h"
+
++#include <cstring>
++
+
+ CalSubmesh::CalSubmesh(CalCoreSubmesh* coreSubmesh)
+ {
+diff -Naur cal3d-0.11.0.orig/src/cal3d_converter.cpp
cal3d-0.11.0/src/cal3d_converter.cpp
+--- cal3d-0.11.0.orig/src/cal3d_converter.cpp 2008-04-26 16:29:54.436217873
-0700
++++ cal3d-0.11.0/src/cal3d_converter.cpp 2008-04-26 16:39:07.680495147
-0700
+@@ -11,6 +11,8 @@
+
+ #include "cal3d/cal3d.h"
+
++#include <cstring>
++
+ #define SKELETON 0
+ #define MESH 1
+ #define ANIMATION 2
diff --git a/games-libs/libwfut/DETAILS b/games-libs/libwfut/DETAILS
index 6db5340..5b48cfb 100755
--- a/games-libs/libwfut/DETAILS
+++ b/games-libs/libwfut/DETAILS
@@ -1,5 +1,5 @@
SPELL=libwfut
- VERSION=0.1.0
+ VERSION=0.2.0
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=$SOURCEFORGE_URL/worldforge/$SOURCE
SOURCE_URL[1]=ftp://ftp.worldforge.org/pub/worldforge/libs/$SPELL/$SOURCE
diff --git a/games-libs/libwfut/HISTORY b/games-libs/libwfut/HISTORY
index d10a691..090f458 100644
--- a/games-libs/libwfut/HISTORY
+++ b/games-libs/libwfut/HISTORY
@@ -1,3 +1,9 @@
+2008-04-26 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 0.2.0
+ * PRE_BUILD: Apply gcc43.patch
+ * gcc43.patch: Upstream patch from Marc Riese <marc-riese AT gmx.de>
+ to fix compilation with GCC 4.3.0
+
2008-01-06 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS, DEPENDS: Created

diff --git a/games-libs/libwfut/PRE_BUILD b/games-libs/libwfut/PRE_BUILD
new file mode 100755
index 0000000..e0656fb
--- /dev/null
+++ b/games-libs/libwfut/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p0 < $SCRIPT_DIRECTORY/gcc43.patch
diff --git a/games-libs/libwfut/gcc43.patch b/games-libs/libwfut/gcc43.patch
new file mode 100644
index 0000000..1174b92
--- /dev/null
+++ b/games-libs/libwfut/gcc43.patch
@@ -0,0 +1,17 @@
+Index: libwfut/platform.cpp
+===================================================================
+RCS file: /home/cvspsrv/worldforge/forge/libs/libwfut/libwfut/platform.cpp,v
+retrieving revision 1.7
+diff -u -p -r1.7 platform.cpp
+--- libwfut/platform.cpp 5 Mar 2008 21:39:00 -0000 1.7
++++ libwfut/platform.cpp 20 Apr 2008 00:45:15 -0000
+@@ -13,6 +13,7 @@
+ #include <stdlib.h>
+ #include <errno.h>
+ #include <stdio.h>
++#include <algorithm>
+
+ #include <dirent.h>
+ #include <sys/stat.h>
+
+
diff --git a/games-libs/libwfut/libwfut-0.1.0.tar.gz.sig
b/games-libs/libwfut/libwfut-0.1.0.tar.gz.sig
deleted file mode 100644
index 234962c..0000000
Binary files a/games-libs/libwfut/libwfut-0.1.0.tar.gz.sig and /dev/null
differ
diff --git a/games-libs/libwfut/libwfut-0.2.0.tar.gz.sig
b/games-libs/libwfut/libwfut-0.2.0.tar.gz.sig
new file mode 100644
index 0000000..ef20204
Binary files /dev/null and b/games-libs/libwfut/libwfut-0.2.0.tar.gz.sig
differ
diff --git a/games-rpg-mp/ember/DETAILS b/games-rpg-mp/ember/DETAILS
index e7a996b..3091918 100755
--- a/games-rpg-mp/ember/DETAILS
+++ b/games-rpg-mp/ember/DETAILS
@@ -7,7 +7,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-cvs
SOURCE_IGNORE=unversioned
FORCE_DOWNLOAD="on"
else
- VERSION=0.5.1
+ VERSION=0.5.2
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/worldforge/$SOURCE
diff --git a/games-rpg-mp/ember/HISTORY b/games-rpg-mp/ember/HISTORY
index 7448fa0..fe89dc0 100644
--- a/games-rpg-mp/ember/HISTORY
+++ b/games-rpg-mp/ember/HISTORY
@@ -1,3 +1,9 @@
+2008-04-26 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated stable to 0.5.2
+ * PRE_BUILD: Apply gcc43.patch.gz
+ * gcc43.patch.gz: Upstream patch from Marc Riese <marc-riese AT gmx.de>
+ to fix compilation with GCC 4.3.0
+
2008-01-06 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated stable to 0.5.1
Removed UPDATED
diff --git a/games-rpg-mp/ember/PRE_BUILD b/games-rpg-mp/ember/PRE_BUILD
index c0bc40d..40afe5c 100755
--- a/games-rpg-mp/ember/PRE_BUILD
+++ b/games-rpg-mp/ember/PRE_BUILD
@@ -1,4 +1,6 @@
-default_pre_build &&
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+zcat $SCRIPT_DIRECTORY/gcc43.patch | patch -p1 &&

for file in ember ember.in
do
diff --git a/games-rpg-mp/ember/ember-0.5.1.tar.bz2.sig
b/games-rpg-mp/ember/ember-0.5.1.tar.bz2.sig
deleted file mode 100644
index eec4ee4..0000000
Binary files a/games-rpg-mp/ember/ember-0.5.1.tar.bz2.sig and /dev/null differ
diff --git a/games-rpg-mp/ember/ember-0.5.2.tar.bz2.sig
b/games-rpg-mp/ember/ember-0.5.2.tar.bz2.sig
new file mode 100644
index 0000000..8bdbf34
Binary files /dev/null and b/games-rpg-mp/ember/ember-0.5.2.tar.bz2.sig differ
diff --git a/games-rpg-mp/ember/gcc43.patch.gz
b/games-rpg-mp/ember/gcc43.patch.gz
new file mode 100644
index 0000000..e2f86a8
Binary files /dev/null and b/games-rpg-mp/ember/gcc43.patch.gz differ
diff --git a/games-rpg-mp/sear/HISTORY b/games-rpg-mp/sear/HISTORY
index 9823463..45f1a05 100644
--- a/games-rpg-mp/sear/HISTORY
+++ b/games-rpg-mp/sear/HISTORY
@@ -1,3 +1,12 @@
+2008-04-26 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_BUILD: Apply gcc43.patch.gz and libsigc.patch.gz
+ * gcc43.patch.gz: Upstream patch from Marc Riese <marc-riese AT gmx.de>
+ to fix compilation with GCC 4.3.0. Made additional modifications
+ and re-submitted upstream
+ * libsigc.patch.gz: Patch to fix sear compilation against libsigc++3
+ 2.2.2. See
https://www.redhat.com/archives/fedora-devel-list/2008-April/msg00494.html3
+ for notes.
+
2008-01-06 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 0.6.3
Removed UPDATED
diff --git a/games-rpg-mp/sear/PRE_BUILD b/games-rpg-mp/sear/PRE_BUILD
index bab063f..afc814d 100755
--- a/games-rpg-mp/sear/PRE_BUILD
+++ b/games-rpg-mp/sear/PRE_BUILD
@@ -1,4 +1,6 @@
-default_pre_build &&
+default_pre_build &&
sedit 's:eris-1.3 :&>:' $SOURCE_DIRECTORY/configure.ac &&
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+zcat $SCRIPT_DIRECTORY/gcc43.patch.gz | patch -p1 &&
+zcat $SCRIPT_DIRECTORY/libsigc.patch.gz | patch -p1 &&
autoreconf
diff --git a/games-rpg-mp/sear/gcc43.patch.gz
b/games-rpg-mp/sear/gcc43.patch.gz
new file mode 100644
index 0000000..003e611
Binary files /dev/null and b/games-rpg-mp/sear/gcc43.patch.gz differ
diff --git a/games-rpg-mp/sear/libsigc.patch.gz
b/games-rpg-mp/sear/libsigc.patch.gz
new file mode 100644
index 0000000..9af8bf6
Binary files /dev/null and b/games-rpg-mp/sear/libsigc.patch.gz differ



  • [SM-Commit] GIT changes to master games grimoire by Eric Sandall (2892b30155e6e2bcdb5547c5b9ac17d373f2e633), Eric Sandall, 04/27/2008

Archive powered by MHonArc 2.6.24.

Top of Page