Received: by mail.netbsd.org (Postfix, from userid 605) id 24DB184D7A; Tue, 27 Mar 2018 22:29:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0D1BA84D7A for ; Tue, 27 Mar 2018 22:29:39 +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 Rcz20D4u2vKs for ; Tue, 27 Mar 2018 22:29:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3754E84D2C for ; Tue, 27 Mar 2018 22:29:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2EAACFB40; Tue, 27 Mar 2018 22:29:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15221897782540" MIME-Version: 1.0 Date: Tue, 27 Mar 2018 22:29:38 +0000 From: "Sevan Janiyan" Subject: CVS commit: pkgsrc/pkgtools/pkg_install To: pkgsrc-changes@NetBSD.org Reply-To: sevan@netbsd.org X-Mailer: log_accum Message-Id: <20180327222938.2EAACFB40@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. --_----------=_15221897782540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sevan Date: Tue Mar 27 22:29:38 UTC 2018 Modified Files: pkgsrc/pkgtools/pkg_install: Makefile Log Message: Switch from nroff to using mandoc for updating catalog file in the update-catpages target. This results in closer resemblence to the actual mdoc manuals. Reviewed by To generate a diff of this commit: cvs rdiff -u -r1.223 -r1.224 pkgsrc/pkgtools/pkg_install/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15221897782540 Content-Disposition: inline Content-Length: 1019 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pkg_install/Makefile diff -u pkgsrc/pkgtools/pkg_install/Makefile:1.223 pkgsrc/pkgtools/pkg_install/Makefile:1.224 --- pkgsrc/pkgtools/pkg_install/Makefile:1.223 Sat Jan 27 19:07:47 2018 +++ pkgsrc/pkgtools/pkg_install/Makefile Tue Mar 27 22:29:38 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.223 2018/01/27 19:07:47 rillig Exp $ +# $NetBSD: Makefile,v 1.224 2018/03/27 22:29:38 sevan Exp $ # Notes to package maintainers: # @@ -230,10 +230,10 @@ update-catpages: for f in lib/pkgsrc.7 add/pkg_add.1 admin/pkg_admin.1 \ create/pkg_create.1 delete/pkg_delete.1 info/pkg_info.1 \ lib/pkg_summary.5 lib/pkgsrc.7; do \ - nroff -mdoc ${FILESDIR}/$$f > \ + mandoc -I os=pkgsrc -Tascii ${FILESDIR}/$$f > \ ${FILESDIR}/$${f%%.[157]}.cat; \ done - nroff -mdoc ${FILESDIR}/lib/pkg_install.conf.5.in > \ + mandoc -I os=pkgsrc -Tascii ${FILESDIR}/lib/pkg_install.conf.5.in > \ ${FILESDIR}/lib/pkg_install.conf.cat.in .include "../../mk/bsd.pkg.mk" --_----------=_15221897782540--