Received: by mail.netbsd.org (Postfix, from userid 605) id ABE4684DD7; Sat, 16 May 2020 12:31:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 341C884D84 for ; Sat, 16 May 2020 12:31:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id y7M80pVDDVSI for ; Sat, 16 May 2020 12:31:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8E06A84CCD for ; Sat, 16 May 2020 12:31:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8A20AFB27; Sat, 16 May 2020 12:31:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589632271123590" MIME-Version: 1.0 Date: Sat, 16 May 2020 12:31:11 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/emulators/xtrs To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200516123111.8A20AFB27@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. --_----------=_1589632271123590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat May 16 12:31:11 UTC 2020 Modified Files: pkgsrc/emulators/xtrs: Makefile Log Message: emulators/xtrs: fix SUBST block for oss Defining SUBST_FILES without a corresponding SUBST_SED makes the build fail in SUBST_NOOP_OK=no mode. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/emulators/xtrs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589632271123590 Content-Disposition: inline Content-Length: 847 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/xtrs/Makefile diff -u pkgsrc/emulators/xtrs/Makefile:1.27 pkgsrc/emulators/xtrs/Makefile:1.28 --- pkgsrc/emulators/xtrs/Makefile:1.27 Sat Jul 4 16:18:30 2015 +++ pkgsrc/emulators/xtrs/Makefile Sat May 16 12:31:11 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2015/07/04 16:18:30 joerg Exp $ +# $NetBSD: Makefile,v 1.28 2020/05/16 12:31:11 rillig Exp $ # DISTNAME= xtrs-4.9d @@ -23,10 +23,10 @@ SUBST_SED.mf+= -e 's|/usr/X11/|${X11BAS SUBST_SED.mf+= -e 's|/usr/include/X11|${X11BASE}/include|g' SUBST_SED.mf+= -e 's|/share/man|/${PKGMANDIR}|g' +.if ${OSS_TYPE} != none SUBST_CLASSES+= oss SUBST_STAGE.oss= post-configure SUBST_FILES.oss= trs_cassette.c cassette -.if ${OSS_TYPE} != none SUBST_SED.oss= -e 's|/dev/dsp|${DEVOSSSOUND}|g' SUBST_SED.oss+= -e 's|if __linux|if 1|' .endif --_----------=_1589632271123590--