View | Details | Raw Unified | Return to bug 167168
Collapse All | Expand All

(-)alephone/Makefile (-4 / +2 lines)
Lines 6-15 Link Here
6
#
6
#
7
7
8
PORTNAME=	alephone
8
PORTNAME=	alephone
9
PORTVERSION=	20111201
9
PORTVERSION=	20120128
10
PORTREVISION=	1
10
PORTREVISION=	1
11
CATEGORIES=	games
11
CATEGORIES=	games
12
MASTER_SITES=	SF/marathon/Aleph%20One/2011-12-01
12
MASTER_SITES=	SF/marathon/Aleph%20One/2012-01-28
13
DISTNAME=	AlephOne-${PORTVERSION}
13
DISTNAME=	AlephOne-${PORTVERSION}
14
14
15
MAINTAINER=	fiziologus@gmail.com
15
MAINTAINER=	fiziologus@gmail.com
Lines 22-32 Link Here
22
USE_BZIP2=	yes
22
USE_BZIP2=	yes
23
USE_SDL+=	image net sdl sound
23
USE_SDL+=	image net sdl sound
24
USE_GL=		yes
24
USE_GL=		yes
25
USE_LUA=	5.1
26
PKG_CONFIG?=	${LOCALBASE}/bin/pkg-config
25
PKG_CONFIG?=	${LOCALBASE}/bin/pkg-config
27
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
28
CONFIGURE_ARGS+=--disable-alsa --disable-sndfile
27
CONFIGURE_ARGS+=--disable-alsa --disable-sndfile
29
CONFIGURE_ENV=	PKG_CONFIG="${PKG_CONFIG}"
30
28
31
DATADIR=	${PREFIX}/share/AlephOne
29
DATADIR=	${PREFIX}/share/AlephOne
32
30
(-)alephone/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (AlephOne-20111201.tar.bz2) = c844b347cdba3bcfba33cf459aa94bcc7729f8865b5cfdb688da24262a918fca
1
SHA256 (AlephOne-20120128.tar.bz2) = 45a65f34074b93358bbba2e2f1232324f850f7f7d1a20512363d411e5c46298a
2
SIZE (AlephOne-20111201.tar.bz2) = 4576989
2
SIZE (AlephOne-20120128.tar.bz2) = 4578336
(-)alephone/files/patch-Source_Files-Lua-lua_templates.h (+11 lines)
Line 0 Link Here
1
--- Source_Files/Lua/lua_templates.h.orig	2012-04-21 17:57:45.000000000 +0400
2
+++ Source_Files/Lua/lua_templates.h	2012-04-21 17:58:22.000000000 +0400
3
@@ -496,7 +496,7 @@
4
 	static index_t ToIndex(lua_State *L, int index) {
5
 		index_t to;
6
 		if(lua_isnil(L, index)) return -1;
7
-		else if(_lookup(L, index, to)) return to;
8
+		else if(L_Enum<name, index_t>::_lookup(L, index, to)) return to;
9
 		else {
10
 			std::string error;
11
 			if(lua_isnumber(L, index) || lua_isstring(L, index))

Return to bug 167168