Received: by mail.netbsd.org (Postfix, from userid 605) id EE36D84EC3; Wed, 24 Jun 2020 12:12:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7193984EAC for ; Wed, 24 Jun 2020 12:12:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bkLl_aNLRNGE for ; Wed, 24 Jun 2020 12:12:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F11E984DA1 for ; Wed, 24 Jun 2020 12:12:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EAEF7FB28; Wed, 24 Jun 2020 12:12:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1593000761101140" MIME-Version: 1.0 Date: Wed, 24 Jun 2020 12:12:41 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/love08 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200624121241.EAEF7FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1593000761101140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jun 24 12:12:41 UTC 2020 Modified Files: pkgsrc/games/love08: Makefile Log Message: love08: Don't misleadingly depend on LuaJIT LuaJIT was never actually being used but got pulled in anyway, this breaks aarch64 builds. Detect the standard lua library properly removes the need to include it. I'd enable LuaJIT as an option but I can't get it to build against it... Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/games/love08/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1593000761101140 Content-Disposition: inline Content-Length: 1332 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/love08/Makefile diff -u pkgsrc/games/love08/Makefile:1.2 pkgsrc/games/love08/Makefile:1.3 --- pkgsrc/games/love08/Makefile:1.2 Fri Jun 5 12:49:06 2020 +++ pkgsrc/games/love08/Makefile Wed Jun 24 12:12:41 2020 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2020/06/05 12:49:06 jperkin Exp $ +# $NetBSD: Makefile,v 1.3 2020/06/24 12:12:41 nia Exp $ DISTNAME= love-0.8.0-linux-src PKGNAME= ${DISTNAME:S/-linux-src//:S/love/love08/} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= games MASTER_SITES= https://bitbucket.org/rude/love/downloads/ @@ -18,7 +18,10 @@ USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config USE_LIBTOOL= yes -LUA_VERSIONS_INCOMPATIBLE= 52 53 +SUBST_CLASSES+= lua +SUBST_STAGE.lua= pre-configure +SUBST_FILES.lua= configure +SUBST_SED.lua= -e 's,lua5.1,lua-5.1,g' GNU_CONFIGURE_PREFIX= ${PREFIX}/love0.8 @@ -28,8 +31,7 @@ GNU_CONFIGURE_PREFIX= ${PREFIX}/love0.8 BUILDLINK_API_DEPENDS.physfs+= physfs>=2.0 .include "../../devel/physfs/buildlink3.mk" .include "../../audio/openal-soft/buildlink3.mk" -.include "../../lang/lua/buildlink3.mk" -.include "../../lang/LuaJIT2/buildlink3.mk" +.include "../../lang/lua51/buildlink3.mk" .include "../../devel/devIL/buildlink3.mk" .include "../../devel/libltdl/buildlink3.mk" .include "../../audio/libmodplug/buildlink3.mk" --_----------=_1593000761101140--