Received: by mail.netbsd.org (Postfix, from userid 605) id 24E3284EE1; Tue, 9 May 2023 12:23:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5692784E8F for ; Tue, 9 May 2023 12:23:23 +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 knwdeunHrjxM for ; Tue, 9 May 2023 12:23:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A7CD284D82 for ; Tue, 9 May 2023 12:23:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A0AEEFA87; Tue, 9 May 2023 12:23:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683635002152150" MIME-Version: 1.0 Date: Tue, 9 May 2023 12:23:22 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk/tools To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230509122322.A0AEEFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683635002152150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue May 9 12:23:22 UTC 2023 Modified Files: pkgsrc/mk/tools: tools.SunOS.mk Log Message: mk: Support illumos mandoc. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/mk/tools/tools.SunOS.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683635002152150 Content-Disposition: inline Content-Length: 1197 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/tools/tools.SunOS.mk diff -u pkgsrc/mk/tools/tools.SunOS.mk:1.56 pkgsrc/mk/tools/tools.SunOS.mk:1.57 --- pkgsrc/mk/tools/tools.SunOS.mk:1.56 Tue Nov 22 13:18:59 2022 +++ pkgsrc/mk/tools/tools.SunOS.mk Tue May 9 12:23:22 2023 @@ -1,4 +1,4 @@ -# $NetBSD: tools.SunOS.mk,v 1.56 2022/11/22 13:18:59 jperkin Exp $ +# $NetBSD: tools.SunOS.mk,v 1.57 2023/05/09 12:23:22 jperkin Exp $ # # System-supplied tools for the Solaris and illumos operating systems. # @@ -145,6 +145,9 @@ TOOLS_PLATFORM.makeinfo?= /usr/bin/makei .elif exists(/usr/sfw/bin/makeinfo) TOOLS_PLATFORM.makeinfo?= /usr/sfw/bin/makeinfo .endif +.if exists(/usr/bin/mandoc) +TOOLS_PLATFORM.mandoc?= /usr/bin/mandoc +.endif TOOLS_PLATFORM.mkdir?= /usr/bin/mkdir -p .if exists(/usr/bin/mktemp) TOOLS_PLATFORM.mktemp?= /usr/bin/mktemp @@ -158,7 +161,7 @@ TOOLS_PLATFORM.nroff?= /usr/bin/gnroff TOOLS_PLATFORM.openssl?= /usr/bin/openssl .endif # Don't use GNU patch -#TOOLS_PLATFORM.gpatch?= /usr/bin/gpatch +#TOOLS_PLATFORM.gpatch?= /usr/bin/gpatch #TOOLS_PLATFORM.patch?= /usr/bin/gpatch # Native pax doesn't support -O required by mk/extract/extract #TOOLS_PLATFORM.pax?= /bin/pax --_----------=_1683635002152150--