sigh
On 2009 Oct 11 (Sun) at 20:15:00 +0200 (+0200), Peter Hessler wrote:
:more work from p2k9. an update of alephone to 0.22.
:
:----
:Aleph One 0.22 is available from http://source.bungie.org/get/
:
:Highlights for this release include Lua persistence, a network stats
:display, and joystick support (from Eric Peterson). Jeremiah Morris has
:also joined us to add terminal and classic HUD scaling, as well as a new
:customizable HUD; and Solra Bizna added gamma-corrected alpha blending.
:
:Jeremiah and TychoVII have also created an amazing custom HUD script
:based on the HUD in the XBLA game Marathon: Durandal, which you can get
:from Fileball:
http://fileball.bungie.org/index.php?option=com_remository&Itemid=53&func=fileinfo&id=3468
:
:Aleph One 0.22 is network compatible with the previous release, except
:for the new Lua features. Aleph One 0.22 is the last release which will
:support Mac OS X 10.2.8; future releases will require Mac OS X 10.3.9
:
:Read the full release notes for more details.
:---
:
:plays well on amd64. could use some more "tests", of course.
:
:comments/OKs?
:
:
:--
:Don't believe everything you hear or anything you say.
--
Pardon this fortune. Database under reconstruction.
Index: games/alephone/alephone/Makefile
===================================================================
RCS file: /usr/local/cvs/openbsd/ports/games/alephone/alephone/Makefile,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 Makefile
--- games/alephone/alephone/Makefile 18 May 2009 05:59:23 -0000 1.5
+++ games/alephone/alephone/Makefile 10 Sep 2009 05:58:42 -0000
@@ -3,8 +3,8 @@
DIST_SUBDIR ?= alephone
COMMENT = open source game engine based on Marathon 2: Durandal
-DISTNAME = AlephOne-20081226
-PKGNAME = alephone-0.21.2
+DISTNAME = AlephOne-20090909
+PKGNAME = alephone-0.22
EXTRACT_SUFX = .tar.bz2
CATEGORIES = games x11
@@ -40,6 +40,7 @@ CONFIGURE_STYLE = gnu
AUTOCONF_VER = 2.61
AUTOMAKE_VER = 1.9
CONFIGURE_ENV = AUTOCONF_VERSION=${AUTOCONF_VER} \
- AUTOMAKE_VERSION=${AUTOMAKE_VER}
+ AUTOMAKE_VERSION=${AUTOMAKE_VER} \
+ CPPFLAGS="${CPPFLAGS} -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes"
.include <bsd.port.mk>
Index: games/alephone/alephone/distinfo
===================================================================
RCS file: /usr/local/cvs/openbsd/ports/games/alephone/alephone/distinfo,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 distinfo
--- games/alephone/alephone/distinfo 18 May 2009 05:59:23 -0000 1.2
+++ games/alephone/alephone/distinfo 10 Sep 2009 05:58:53 -0000
@@ -1,5 +1,5 @@
-MD5 (alephone/AlephOne-20081226.tar.bz2) = e9nljN+RHV2wGhHStGxdmA==
-RMD160 (alephone/AlephOne-20081226.tar.bz2) = RmY5EioFB/oiiiQ8LmNoHDyjl+0=
-SHA1 (alephone/AlephOne-20081226.tar.bz2) = KkDhB5yaFIl5+7Qx5k9jPYH67PA=
-SHA256 (alephone/AlephOne-20081226.tar.bz2) =
a3Ulk7yXUVvo7z3OGoPXAMa9/+obskSWwaW6f5NeFXY=
-SIZE (alephone/AlephOne-20081226.tar.bz2) = 3002611
+MD5 (alephone/AlephOne-20090909.tar.bz2) = TMiMUjzjlJku8wmnHcIbQg==
+RMD160 (alephone/AlephOne-20090909.tar.bz2) = W5xQ12C+YYJjFRXEQelfqP1kjRQ=
+SHA1 (alephone/AlephOne-20090909.tar.bz2) = QjYaGCcDstpcOzHcrEQYgS4y3mg=
+SHA256 (alephone/AlephOne-20090909.tar.bz2) =
cFMuJ5Kz7RdZOG3ZzjITX0gshqQ7lkOpUkslzamZKpU=
+SIZE (alephone/AlephOne-20090909.tar.bz2) = 3145981
Index:
games/alephone/alephone/patches/patch-Source_Files_Network_network_messages_cpp
===================================================================
RCS file:
games/alephone/alephone/patches/patch-Source_Files_Network_network_messages_cpp
diff -N
games/alephone/alephone/patches/patch-Source_Files_Network_network_messages_cpp
---
games/alephone/alephone/patches/patch-Source_Files_Network_network_messages_cpp
9 Jul 2008 16:56:43 -0000 1.1.1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,18 +0,0 @@
-$OpenBSD: patch-Source_Files_Network_network_messages_cpp,v 1.1.1.1 2008/07/09
16:56:43 phessler Exp $
---- Source_Files/Network/network_messages.cpp.orig Sat Jun 14 23:36:02 2008
-+++ Source_Files/Network/network_messages.cpp Sun Jun 15 00:04:52 2008
-@@ -104,9 +104,12 @@ static void inflateNetPlayer(AIStream& inputStream, Ne
- bool BigChunkOfZippedDataMessage::inflateFrom(const UninflatedMessage&
inUninflated)
- {
- uLongf size;
-+ uint32 size_temp;
- AIStreamBE inputStream(inUninflated.buffer(), 4);
--
-- inputStream >> (uint32&) size;
-+
-+ inputStream >> (uint32&) size_temp;
-+
-+ size = (uLongf)size_temp;
-
- // extra copy because we can't access private mBuffer
- std::auto_ptr<byte> temp(new byte[size]);