Received: by mail.netbsd.org (Postfix, from userid 605) id F32D984D53; Sat, 19 Aug 2017 00:22:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8635184CF0 for ; Sat, 19 Aug 2017 00:22:01 +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 3lAhkRqzQvS6 for ; Sat, 19 Aug 2017 00:22:01 +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 E8C9E84CE0 for ; Sat, 19 Aug 2017 00:22:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E7159FAD0; Sat, 19 Aug 2017 00:22:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503102120120940" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 00:22:00 +0000 From: "Johnny C. Lam" Subject: CVS commit: pkgsrc/pkgtools/libkver To: pkgsrc-changes@NetBSD.org Reply-To: jlam@netbsd.org X-Mailer: log_accum Message-Id: <20170819002200.E7159FAD0@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. --_----------=_1503102120120940 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:00 UTC 2017 Modified Files: pkgsrc/pkgtools/libkver: Makefile Log Message: pkgtools/libkver: Install manpages into ${PKGMANDIR}. This project uses BSD makefiles to build and install the binaries and manpages. Add "MANDIR=..." to the flags passed to "make install" so that the manpages are installed in the correct location under ${PKGMANDIR}. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/pkgtools/libkver/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503102120120940 Content-Disposition: inline Content-Length: 660 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/libkver/Makefile diff -u pkgsrc/pkgtools/libkver/Makefile:1.36 pkgsrc/pkgtools/libkver/Makefile:1.37 --- pkgsrc/pkgtools/libkver/Makefile:1.36 Thu Oct 9 14:06:49 2014 +++ pkgsrc/pkgtools/libkver/Makefile Sat Aug 19 00:22:00 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2014/10/09 14:06:49 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2017/08/19 00:22:00 jlam Exp $ PKGNAME= libkver-${VERSION} CATEGORIES= pkgtools @@ -42,6 +42,8 @@ INSTALLATION_DIRS+= lib ${PKGMANDIR}/man INSTALLATION_DIRS+= sbin .endif +INSTALL_MAKE_FLAGS+= MANDIR=${PREFIX:Q}/${PKGMANDIR:Q} + do-extract: ${CP} -R ${FILESDIR} ${WRKSRC} --_----------=_1503102120120940--