Index: head/games/allacrost/Makefile =================================================================== --- head/games/allacrost/Makefile (revision 327478) +++ head/games/allacrost/Makefile (revision 327479) @@ -1,80 +1,80 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= allacrost PORTVERSION= 1.0.2 PORTREVISION= 5 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-demo/${PORTVERSION} DISTNAME= ${PORTNAME}_demo_source_${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= A single player 2D role-playing game LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ ogg:${PORTSDIR}/audio/libogg \ vorbis:${PORTSDIR}/audio/libvorbis \ boost_thread:${PORTSDIR}/devel/boost-libs LICENSE= GPLv2 GNU_CONFIGURE= yes USE_GMAKE= yes USE_OPENAL= al USE_LUA= 5.1 USE_SDL= sdl ttf net USE_GL= yes -USE_GCC= 4.2+ +USE_GCC= yes # problems in luabind USES= gettext CONFIGURE_ARGS= --datadir=${DATADIR} CPPFLAGS+= -I${LOCALBASE}/include -I${LUA_INCDIR} -I${LOCALBASE}/include/libpng15 LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PORTDOCS= MANUAL OPTIONS_DEFINE= EDITOR DOCS EDITOR_DESC= Enable editor .include .if ${PORT_OPTIONS:MEDITOR} QT_NONSTANDARD= yes USE_QT4+= corelib gui opengl moc_build qt3support CONFIGURE_ARGS+=--enable-editor=yes PLIST_SUB= EDITOR="" .else CONFIGURE_ARGS+=--enable-editor=no PLIST_SUB= EDITOR="@comment " .endif post-patch: @${REINPLACE_CMD} -e 's|-I/usr/include/|-I${LOCALBASE}/include/|g' \ ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|exit -1|exit 1|; /CXXFLAGS=/ d; \ s|-lSDL |`${SDL_CONFIG} --libs` |' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/^LIBS =/ s|$$| @INTLLIBS@|' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e '/^bindir = / s|games|bin|' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e '/qt4_incdirs/ s|".*"|"${QT_INCDIR}"|; \ /qt4_libdirs/ s|".*"|"${QT_LIBDIR}"|; /test/ s|==|=|' \ ${WRKSRC}/configure .if ${PORT_OPTIONS:MEDITOR} @${REINPLACE_CMD} -e '/^INCLUDES = / s|=|= -I${QT_INCDIR}/QtGui \ -I${QT_INCDIR}/QtOpenGL -I${QT_INCDIR}/Qt3Support \ -I${QT_INCDIR}/QtCore -I${QT_INCDIR}|' \ ${WRKSRC}/Makefile.in .endif post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} .endfor .endif @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} .include Index: head/games/allacrost/files/patch-src-luabind-luabind-detail-call__function.hpp =================================================================== --- head/games/allacrost/files/patch-src-luabind-luabind-detail-call__function.hpp (nonexistent) +++ head/games/allacrost/files/patch-src-luabind-luabind-detail-call__function.hpp (revision 327479) @@ -0,0 +1,18 @@ +--- src/luabind/luabind/detail/call_function.hpp.orig 2010-01-04 02:08:15.000000000 +0300 ++++ src/luabind/luabind/detail/call_function.hpp 2013-09-17 16:37:59.151519546 +0400 +@@ -323,7 +323,8 @@ + + #endif // LUABIND_CALL_FUNCTION_HPP_INCLUDED + +-#elif BOOST_PP_ITERATION_FLAGS() == 1 ++#else ++#if BOOST_PP_ITERATION_FLAGS() == 1 + + #define LUABIND_TUPLE_PARAMS(z, n, data) const A##n * + #define LUABIND_OPERATOR_PARAMS(z, n, data) const A##n & a##n +@@ -440,4 +441,5 @@ + + + #endif ++#endif + Property changes on: head/games/allacrost/files/patch-src-luabind-luabind-detail-call__function.hpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/allacrost/files/patch-src-luabind-luabind-detail-call__member.hpp =================================================================== --- head/games/allacrost/files/patch-src-luabind-luabind-detail-call__member.hpp (nonexistent) +++ head/games/allacrost/files/patch-src-luabind-luabind-detail-call__member.hpp (revision 327479) @@ -0,0 +1,17 @@ +--- src/luabind/luabind/detail/call_member.hpp.orig 2010-01-04 02:08:15.000000000 +0300 ++++ src/luabind/luabind/detail/call_member.hpp 2013-09-17 06:10:17.991226170 +0400 +@@ -316,7 +316,8 @@ + + #endif // LUABIND_CALL_MEMBER_HPP_INCLUDED + +-#elif BOOST_PP_ITERATION_FLAGS() == 1 ++#else ++#if BOOST_PP_ITERATION_FLAGS() == 1 + + #define LUABIND_TUPLE_PARAMS(z, n, data) const A##n * + #define LUABIND_OPERATOR_PARAMS(z, n, data) const A##n & a##n +@@ -361,3 +362,4 @@ + + #endif + ++#endif Property changes on: head/games/allacrost/files/patch-src-luabind-luabind-detail-call__member.hpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/allacrost/files/patch-src-luabind-luabind-detail-get__signature.hpp =================================================================== --- head/games/allacrost/files/patch-src-luabind-luabind-detail-get__signature.hpp (nonexistent) +++ head/games/allacrost/files/patch-src-luabind-luabind-detail-get__signature.hpp (revision 327479) @@ -0,0 +1,19 @@ +--- src/luabind/luabind/detail/get_signature.hpp.orig 2010-01-04 02:08:15.000000000 +0300 ++++ src/luabind/luabind/detail/get_signature.hpp 2013-09-17 16:37:38.311587583 +0400 +@@ -160,7 +160,8 @@ + + #endif // LUABIND_GET_SIGNATURE_HPP_INCLUDED + +-#elif BOOST_PP_ITERATION_FLAGS() == 1 ++#else ++#if BOOST_PP_ITERATION_FLAGS() == 1 + + // member functions + template +@@ -212,5 +213,6 @@ + } + + #endif ++#endif + + #endif // LUABIND_NO_ERROR_CHECKING Property changes on: head/games/allacrost/files/patch-src-luabind-luabind-detail-get__signature.hpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/allacrost/files/patch-src-luabind-luabind-wrapper__base.hpp =================================================================== --- head/games/allacrost/files/patch-src-luabind-luabind-wrapper__base.hpp (nonexistent) +++ head/games/allacrost/files/patch-src-luabind-luabind-wrapper__base.hpp (revision 327479) @@ -0,0 +1,17 @@ +--- ./src/luabind/luabind/wrapper_base.hpp.orig 2010-01-04 02:08:15.000000000 +0300 ++++ ./src/luabind/luabind/wrapper_base.hpp 2013-09-17 06:29:47.072226158 +0400 +@@ -89,7 +89,8 @@ + + #endif // LUABIND_WRAPPER_BASE_HPP_INCLUDED + +-#elif BOOST_PP_ITERATION_FLAGS() == 1 ++#else ++#if BOOST_PP_ITERATION_FLAGS() == 1 + + #define LUABIND_TUPLE_PARAMS(z, n, data) const A##n * + #define LUABIND_OPERATOR_PARAMS(z, n, data) const A##n & a##n +@@ -188,3 +189,4 @@ + #undef N + + #endif ++#endif Property changes on: head/games/allacrost/files/patch-src-luabind-luabind-wrapper__base.hpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/allacrost/files/patch-src-utils.cpp =================================================================== --- head/games/allacrost/files/patch-src-utils.cpp (revision 327478) +++ head/games/allacrost/files/patch-src-utils.cpp (revision 327479) @@ -1,20 +1,28 @@ ---- src/utils.cpp.orig 2010-09-02 20:33:23.000000000 +0400 -+++ src/utils.cpp 2010-09-02 20:34:01.000000000 +0400 -@@ -337,7 +337,7 @@ +--- src/utils.cpp.orig 2010-05-17 03:38:35.000000000 +0400 ++++ src/utils.cpp 2013-09-17 03:18:36.343226027 +0400 +@@ -21,6 +21,7 @@ + #else + #include + #include ++ #include + #include + #endif + +@@ -337,7 +338,7 @@ } const char *source_char = reinterpret_cast(source); - #if (defined(_LIBICONV_VERSION) && _LIBICONV_VERSION == 0x0109) + #if 1 // We are using an iconv API that uses const char* const char *sourceChar = source_char; #else -@@ -369,7 +369,7 @@ +@@ -369,7 +370,7 @@ return false; } - #if (defined(_LIBICONV_VERSION) && _LIBICONV_VERSION == 0x0109) + #if 1 // We are using an iconv API that uses const char* const char *sourceChar = source; #else Index: head/games/valyriatear/Makefile =================================================================== --- head/games/valyriatear/Makefile (revision 327478) +++ head/games/valyriatear/Makefile (revision 327479) @@ -1,43 +1,43 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= valyriatear PORTVERSION= 0.5.0 PORTREVISION= 1 CATEGORIES= games USE_GITHUB= yes GH_ACCOUNT= Bertram25 GH_PROJECT= ValyriaTear GH_COMMIT= 3af3e06 MAINTAINER= amdmi3@FreeBSD.org COMMENT= Open Source J-RPG based on the Hero of Allacrost engine LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs \ vorbis:${PORTSDIR}/audio/libvorbis \ png15:${PORTSDIR}/graphics/png \ jpeg:${PORTSDIR}/graphics/jpeg USES= cmake gettext iconv USE_SDL= sdl image ttf USE_GL= gl USE_OPENAL= yes USE_LUA= 5.1 -USE_GCC= any # problems in luabind; recheck with next update +USE_GCC= yes # problems in luabind; recheck with next update LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} -lintl PORTDOCS= * .include .if ${PORT_OPTIONS:MDOCS} post-install: ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/MANUAL ${DOCSDIR}/ .endif .include