From owner-svn-ports-head@FreeBSD.ORG Mon May 26 17:31:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FBD6630; Mon, 26 May 2014 17:31:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40A7C2A22; Mon, 26 May 2014 17:31:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QHVjYh071293; Mon, 26 May 2014 17:31:45 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4QHVhJN071283; Mon, 26 May 2014 17:31:43 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201405261731.s4QHVhJN071283@svn.freebsd.org> From: Antoine Brodin Date: Mon, 26 May 2014 17:31:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355419 - in head: games/avoision games/cretan-hubris games/fbg2 games/solarus games/thegrind graphics/radius-engine lang/fpc-lua X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 17:31:45 -0000 Author: antoine Date: Mon May 26 17:31:43 2014 New Revision: 355419 URL: http://svnweb.freebsd.org/changeset/ports/355419 QAT: https://qat.redports.org/buildarchive/r355419/ Log: Attempt to fix INDEX With hat: portmgr Modified: head/games/avoision/Makefile head/games/cretan-hubris/Makefile head/games/fbg2/Makefile head/games/solarus/Makefile head/games/thegrind/Makefile head/graphics/radius-engine/Makefile head/lang/fpc-lua/Makefile Modified: head/games/avoision/Makefile ============================================================================== --- head/games/avoision/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/games/avoision/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -18,7 +18,7 @@ LICENSE_FILE_CCbyNCSA3=${WRKSRC}/License LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:${PORTSDIR}/graphics/radius-engine -LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua \ +LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua51 \ libpng15.so:${PORTSDIR}/graphics/png \ libphysfs.so.1:${PORTSDIR}/devel/physfs RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip Modified: head/games/cretan-hubris/Makefile ============================================================================== --- head/games/cretan-hubris/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/games/cretan-hubris/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -18,7 +18,7 @@ LICENSE_FILE_CCbyNCSA3=${WRKSRC}/License LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:${PORTSDIR}/graphics/radius-engine -LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua \ +LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua51 \ libpng15.so:${PORTSDIR}/graphics/png \ libphysfs.so.1:${PORTSDIR}/devel/physfs RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip Modified: head/games/fbg2/Makefile ============================================================================== --- head/games/fbg2/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/games/fbg2/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -18,7 +18,7 @@ LICENSE_FILE_CCbyNCSA3=${WRKSRC}/License LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:${PORTSDIR}/graphics/radius-engine -LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua \ +LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua51 \ libpng15.so:${PORTSDIR}/graphics/png \ libphysfs.so.1:${PORTSDIR}/devel/physfs RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip Modified: head/games/solarus/Makefile ============================================================================== --- head/games/solarus/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/games/solarus/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -11,7 +11,7 @@ COMMENT= Zelda-like 2D game engine LIB_DEPENDS= libphysfs.so:${PORTSDIR}/devel/physfs \ libmodplug.so:${PORTSDIR}/audio/libmodplug \ - liblua-5.1.so:${PORTSDIR}/lang/lua \ + liblua-5.1.so:${PORTSDIR}/lang/lua51 \ libvorbis.so:${PORTSDIR}/audio/libvorbis \ libogg.so:${PORTSDIR}/audio/libogg Modified: head/games/thegrind/Makefile ============================================================================== --- head/games/thegrind/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/games/thegrind/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -13,7 +13,7 @@ COMMENT= Simple game about escaping from LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:${PORTSDIR}/graphics/radius-engine -LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua \ +LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua51 \ libpng15.so:${PORTSDIR}/graphics/png \ libphysfs.so.1:${PORTSDIR}/devel/physfs RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip Modified: head/graphics/radius-engine/Makefile ============================================================================== --- head/graphics/radius-engine/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/graphics/radius-engine/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -12,7 +12,7 @@ COMMENT= Lua script-based 2D engine buil LICENSE= MIT -LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua \ +LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua51 \ libpng15.so:${PORTSDIR}/graphics/png \ libphysfs.so.1:${PORTSDIR}/devel/physfs Modified: head/lang/fpc-lua/Makefile ============================================================================== --- head/lang/fpc-lua/Makefile Mon May 26 16:56:07 2014 (r355418) +++ head/lang/fpc-lua/Makefile Mon May 26 17:31:43 2014 (r355419) @@ -18,6 +18,6 @@ OPTIONS_DEFINE= LUA LUA_DESC= Install lua library OPTIONS_DEFAULT= LUA -LUA_LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua +LUA_LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua51 .include "${MASTERDIR}/Makefile"