From 87f038b4238437402213a81cedeea10e320dbdf6 Mon Sep 17 00:00:00 2001 From: pawel Date: Sun, 22 Apr 2012 16:53:23 +0000 Subject: - Update to 20120128 (1.0.1) - Remove USE_LUA (internal interpreter) - Fix build with clang (from upstream) PR: ports/167168 Submitted by: maintainer --- games/alephone/Makefile | 10 ++++------ games/alephone/distinfo | 4 ++-- games/alephone/files/patch-Source_Files-Lua-lua_templates.h | 11 +++++++++++ 3 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 games/alephone/files/patch-Source_Files-Lua-lua_templates.h (limited to 'games/alephone') diff --git a/games/alephone/Makefile b/games/alephone/Makefile index cbe263f78f20..44d268d6dfe4 100644 --- a/games/alephone/Makefile +++ b/games/alephone/Makefile @@ -6,10 +6,9 @@ # PORTNAME= alephone -PORTVERSION= 20111201 -PORTREVISION= 1 +PORTVERSION= 20120128 CATEGORIES= games -MASTER_SITES= SF/marathon/Aleph%20One/2011-12-01 +MASTER_SITES= SF/marathon/Aleph%20One/2012-01-28 DISTNAME= AlephOne-${PORTVERSION} MAINTAINER= fiziologus@gmail.com @@ -22,7 +21,6 @@ USE_GMAKE= yes USE_BZIP2= yes USE_SDL+= image net sdl sound USE_GL= yes -USE_LUA= 5.1 PKG_CONFIG?= ${LOCALBASE}/bin/pkg-config GNU_CONFIGURE= yes CONFIGURE_ARGS+=--disable-alsa --disable-sndfile @@ -39,7 +37,7 @@ OPTIONS= MAD "use libmad for mp3 playback" on \ TTF "enable SDL_ttf font rendering" on \ ZZIP "enable zziplib support" on -.include +.include .if defined(WITHOUT_MAD) CONFIGURE_ARGS+=--disable-mad @@ -87,4 +85,4 @@ post-install: @${CAT} ${PKGMESSAGE} @${ECHO_CMD} -.include +.include diff --git a/games/alephone/distinfo b/games/alephone/distinfo index 43101f11bf84..469f3af06060 100644 --- a/games/alephone/distinfo +++ b/games/alephone/distinfo @@ -1,2 +1,2 @@ -SHA256 (AlephOne-20111201.tar.bz2) = c844b347cdba3bcfba33cf459aa94bcc7729f8865b5cfdb688da24262a918fca -SIZE (AlephOne-20111201.tar.bz2) = 4576989 +SHA256 (AlephOne-20120128.tar.bz2) = 45a65f34074b93358bbba2e2f1232324f850f7f7d1a20512363d411e5c46298a +SIZE (AlephOne-20120128.tar.bz2) = 4578336 diff --git a/games/alephone/files/patch-Source_Files-Lua-lua_templates.h b/games/alephone/files/patch-Source_Files-Lua-lua_templates.h new file mode 100644 index 000000000000..2ba07bdcca2c --- /dev/null +++ b/games/alephone/files/patch-Source_Files-Lua-lua_templates.h @@ -0,0 +1,11 @@ +--- Source_Files/Lua/lua_templates.h.orig 2012-04-21 17:57:45.000000000 +0400 ++++ Source_Files/Lua/lua_templates.h 2012-04-21 17:58:22.000000000 +0400 +@@ -496,7 +496,7 @@ + static index_t ToIndex(lua_State *L, int index) { + index_t to; + if(lua_isnil(L, index)) return -1; +- else if(_lookup(L, index, to)) return to; ++ else if(L_Enum::_lookup(L, index, to)) return to; + else { + std::string error; + if(lua_isnumber(L, index) || lua_isstring(L, index)) \ No newline at end of file -- cgit