Received: by mail.netbsd.org (Postfix, from userid 605) id 8E95984D50; Sat, 19 Aug 2017 00:22:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1DCF384CF0 for ; Sat, 19 Aug 2017 00:22:24 +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 WRdzEfDU-SrK for ; Sat, 19 Aug 2017 00:22:23 +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 7EB5B84CE0 for ; Sat, 19 Aug 2017 00:22:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7D2EFFAD0; Sat, 19 Aug 2017 00:22:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503102143154490" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 00:22:23 +0000 From: "Johnny C. Lam" Subject: CVS commit: pkgsrc/textproc/lowdown To: pkgsrc-changes@NetBSD.org Reply-To: jlam@netbsd.org X-Mailer: log_accum Message-Id: <20170819002223.7D2EFFAD0@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. --_----------=_1503102143154490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jlam Date: Sat Aug 19 00:22:23 UTC 2017 Modified Files: pkgsrc/textproc/lowdown: Makefile Log Message: textproc/lowdown: Install manpages into ${PKGMANDIR}. Use mk/subst.mk to replace the MANDIR definition in the configure script to point into ${PKGMANDIR}. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/lowdown/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503102143154490 Content-Disposition: inline Content-Length: 829 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/lowdown/Makefile diff -u pkgsrc/textproc/lowdown/Makefile:1.1 pkgsrc/textproc/lowdown/Makefile:1.2 --- pkgsrc/textproc/lowdown/Makefile:1.1 Wed Mar 8 15:05:02 2017 +++ pkgsrc/textproc/lowdown/Makefile Sat Aug 19 00:22:23 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2017/03/08 15:05:02 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2017/08/19 00:22:23 jlam Exp $ DISTNAME= lowdown-0.1.9 CATEGORIES= textproc @@ -14,7 +14,8 @@ WRKSRC= ${WRKDIR}/lowdown-${GITHUB_TAG} HAS_CONFIGURE= yes SUBST_CLASSES+= install -SUBST_SED.install+= -e 's,/usr/local,${PREFIX},' +SUBST_SED.install+= -e 's,/usr/local,${PREFIX},' \ + -e 's,^MANDIR=.*,MANDIR=${PREFIX}/${PKGMANDIR},' SUBST_FILES.install+= configure SUBST_STAGE.install= pre-configure SUBST_MESSAGE.install= Fixing installation path. --_----------=_1503102143154490--