Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=wpcy9gi1; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Yr+ZzH9I Received: by mail.netbsd.org (Postfix, from userid 605) id 8CBFE84E92; Sun, 5 May 2024 21:33:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714944825; bh=knkdAh5Ywhd2zjtDQJbKDrHP5mKrDnokpjebfb1v4JY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=wpcy9gi1nu7zc/zzhTDQu0keFIdnPPC8ZYtbDb30YnsCL5HidG+SRfSUivqhoDe// ho55lMaDhhf0V7Ea1L1qceCmpAFPNb3oEzKeFxZsFehVmsov1CWRi1Zi3xCHx78gda vpuu6nkffM6nR0XTactOII8/1g9iOrcyM7bDgJc8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7B49C84E63 for ; Sun, 5 May 2024 21:33:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 IyNzwSdsRkb0 for ; Sun, 5 May 2024 21:33:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E830584D2F for ; Sun, 5 May 2024 21:33:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714944824; bh=knkdAh5Ywhd2zjtDQJbKDrHP5mKrDnokpjebfb1v4JY=; h=Date:From:Subject:To:Reply-To; b=Yr+ZzH9IgOXMSKRKFnXGNI+qjeFL2Y4R2H2FMvMm/EAssedPpB+8ut+6+OPk9+DWC HDsifFrDKjKRWa1+7TZ0wDR5s/gjn18sL4rxEi2BHz9VdYsM0+nJK3tT4cu25xeFIt L5h98YkJl2nDqCUALbCLuuBzEUR/MbyPuAMqJFfk= Received: by cvs.NetBSD.org (Postfix, from userid 500) id D448AFA2C; Sun, 5 May 2024 21:33:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714944823105590" MIME-Version: 1.0 Date: Sun, 5 May 2024 21:33:43 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/fifengine To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240505213343.D448AFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714944823105590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun May 5 21:33:43 UTC 2024 Modified Files: pkgsrc/devel/fifengine: Makefile Log Message: fifengine: cleanup, convert to cmake/build.mk, fix for Python 3.12 Mark as BROKEN since it doesn't support boost 1.85. Add upstream bug report URL. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/devel/fifengine/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714944823105590 Content-Disposition: inline Content-Length: 1414 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/fifengine/Makefile diff -u pkgsrc/devel/fifengine/Makefile:1.29 pkgsrc/devel/fifengine/Makefile:1.30 --- pkgsrc/devel/fifengine/Makefile:1.29 Sat Apr 6 08:04:59 2024 +++ pkgsrc/devel/fifengine/Makefile Sun May 5 21:33:43 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2024/04/06 08:04:59 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2024/05/05 21:33:43 wiz Exp $ DISTNAME= fifengine-0.4.2 PKGREVISION= 26 @@ -10,7 +10,17 @@ HOMEPAGE= https://www.fifengine.net/ COMMENT= Multi-platform isometric game engine LICENSE= gnu-lgpl-v2.1 -USE_CMAKE= yes +# https://github.com/fifengine/fifengine/issues/1085 +BROKEN= "Doesn't support boost-1.85" + +TOOL_DEPENDS+= swig3>=3.0:../../devel/swig3 + +.include "../../lang/python/extension.mk" + +.if ${PYTHON_VERSION} > 311 +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=0:../../devel/py-setuptools +.endif + USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ @@ -18,18 +28,11 @@ USE_CXX_FEATURES+= c++11 UNLIMIT_RESOURCES= datasize virtualsize -TOOL_DEPENDS+= swig3>=3.0:../../devel/swig3 - -CONFIGURE_DIRS= build -CMAKE_ARG_PATH= .. - PY_PATCHPLIST= yes CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release" -pre-configure: - ${MKDIR} ${WRKSRC}/build - +.include "../../devel/cmake/build.mk" .include "../../audio/libvorbis/buildlink3.mk" .include "../../audio/openal-soft/buildlink3.mk" .include "../../devel/boost-libs/buildlink3.mk" --_----------=_1714944823105590--