Received: by mail.netbsd.org (Postfix, from userid 605) id 2079284DCC; Thu, 16 Aug 2018 13:55:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 18D6F84DB5 for ; Thu, 16 Aug 2018 13:55:36 +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 0tyyBgDdwx06 for ; Thu, 16 Aug 2018 13:55:35 +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 60E7E84CCF for ; Thu, 16 Aug 2018 13:55:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 543BDFBEC; Thu, 16 Aug 2018 13:55:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534427735276580" MIME-Version: 1.0 Date: Thu, 16 Aug 2018 13:55:35 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/mandoc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180816135535.543BDFBEC@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. --_----------=_1534427735276580 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Aug 16 13:55:35 UTC 2018 Modified Files: pkgsrc/textproc/mandoc: Makefile Log Message: mandoc: incorporate some comments from Ingo autodetection should work well enough, remove two manual overrides improve COMMENT To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/mandoc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534427735276580 Content-Disposition: inline Content-Length: 1414 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/mandoc/Makefile diff -u pkgsrc/textproc/mandoc/Makefile:1.5 pkgsrc/textproc/mandoc/Makefile:1.6 --- pkgsrc/textproc/mandoc/Makefile:1.5 Wed Aug 15 04:09:18 2018 +++ pkgsrc/textproc/mandoc/Makefile Thu Aug 16 13:55:35 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2018/08/15 04:09:18 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2018/08/16 13:55:35 wiz Exp $ DISTNAME= mandoc-1.14.4 CATEGORIES= textproc devel @@ -6,7 +6,7 @@ MASTER_SITES= http://mdocml.bsd.lv/snaps MAINTAINER= schwarze@usta.de HOMEPAGE= http://mdocml.bsd.lv/ -COMMENT= Convert man pages from mdoc, man, and tbl to txt, html, ps, or pdf +COMMENT= Convert man pages from mdoc, man, eqn and tbl to txt, html, ps, or pdf LICENSE= 2-clause-bsd # not exactly, but near enough HAS_CONFIGURE= yes @@ -34,14 +34,6 @@ post-extract: ${ECHO} INSTALL_DATA=\"${INSTALL_DATA:Q}\" >> ${WRKSRC}/configure.local ${ECHO} MANM_ROFF="mandoc-roff" >> ${WRKSRC}/configure.local ${ECHO} BINM_SOELIM="msoelim" >> ${WRKSRC}/configure.local -# Need -lrt for nanosleep(2) on Solaris. -.if ${OPSYS} == "SunOS" - ${ECHO} LDADD=\"-lrt\" >> ${WRKSRC}/configure.local -.endif -# Mac OS X and Solaris 10 and newer do not support static binaries. -.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS" - ${ECHO} STATIC= >> ${WRKSRC}/configure.local -.endif .include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1534427735276580--