Received: by mail.netbsd.org (Postfix, from userid 605) id B3A8584EC0; Tue, 13 Dec 2022 13:41:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E0F9C84EB8 for ; Tue, 13 Dec 2022 13:41:11 +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 ucqT1UoEVYmb for ; Tue, 13 Dec 2022 13:41:11 +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 34F4884D4B for ; Tue, 13 Dec 2022 13:41:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 28E14FA90; Tue, 13 Dec 2022 13:41:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1670938871192180" MIME-Version: 1.0 Date: Tue, 13 Dec 2022 13:41:11 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/emulators/fmsx To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20221213134111.28E14FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1670938871192180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Dec 13 13:41:11 UTC 2022 Modified Files: pkgsrc/emulators/fmsx: Makefile Log Message: fmsx: Work around NetBSD unzip vs others for patched files. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/emulators/fmsx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1670938871192180 Content-Disposition: inline Content-Length: 855 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/fmsx/Makefile diff -u pkgsrc/emulators/fmsx/Makefile:1.45 pkgsrc/emulators/fmsx/Makefile:1.46 --- pkgsrc/emulators/fmsx/Makefile:1.45 Sun Sep 11 12:51:31 2022 +++ pkgsrc/emulators/fmsx/Makefile Tue Dec 13 13:41:10 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.45 2022/09/11 12:51:31 wiz Exp $ +# $NetBSD: Makefile,v 1.46 2022/12/13 13:41:10 jperkin Exp $ DISTNAME= fMSX54 PKGNAME= fmsx-5.4 @@ -19,6 +19,15 @@ WRKSRC= ${WRKDIR} USE_TOOLS+= gmake +# Work around NetBSD unzip vs others for patched files. +SUBST_CLASSES+= cr +SUBST_STAGE.cr= post-extract +SUBST_FILES.cr+= fMSX/Unix/Makefile +SUBST_FILES.cr+= EMULib/Unix/SndUnix.c +SUBST_FILES.cr+= EMULib/Rules.Unix EMULib/Rules.gcc +SUBST_FILTER_CMD.cr= ${TR} -d '\r' +SUBST_NOOP_OK.cr= yes + BUILD_DIRS= fMSX/Unix .include "../../mk/bsd.prefs.mk" --_----------=_1670938871192180--