Received: by mail.netbsd.org (Postfix, from userid 605) id CBC5A84D63; Sat, 19 Aug 2017 00:25:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5EAA284CF0 for ; Sat, 19 Aug 2017 00:25:20 +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 VeVkRqp1UoQB for ; Sat, 19 Aug 2017 00:25:20 +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 BB89384CE0 for ; Sat, 19 Aug 2017 00:25:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B9E61FAD0; Sat, 19 Aug 2017 00:25:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503102319167100" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 00:25:19 +0000 From: "Johnny C. Lam" Subject: CVS commit: pkgsrc/sysutils/sformat To: pkgsrc-changes@NetBSD.org Reply-To: jlam@netbsd.org X-Mailer: log_accum Message-Id: <20170819002519.B9E61FAD0@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. --_----------=_1503102319167100 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:25:19 UTC 2017 Modified Files: pkgsrc/sysutils/sformat: Makefile Log Message: sysutils/sformat: Install manpages into ${PKGMANDIR}. Override MANDIR=man settings in project Makefiles by passing an explicit MANDIR=${PKGMANDIR} on the make(1) command line so that manpages are installed into the correct location under ${PKGMANDIR}. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/sysutils/sformat/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503102319167100 Content-Disposition: inline Content-Length: 956 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/sformat/Makefile diff -u pkgsrc/sysutils/sformat/Makefile:1.17 pkgsrc/sysutils/sformat/Makefile:1.18 --- pkgsrc/sysutils/sformat/Makefile:1.17 Thu Oct 9 14:07:00 2014 +++ pkgsrc/sysutils/sformat/Makefile Sat Aug 19 00:25:19 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2014/10/09 14:07:00 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2017/08/19 00:25:19 jlam Exp $ # DISTNAME= sformat-3.5 @@ -20,7 +20,12 @@ MAKE_ENV+= ARCH="" MAKE_ENV+= MAKEPROG="gmake" MAKE_ENV+= COPTX=${CFLAGS:M*:Q} MAKE_ENV+= LDOPTX=${LDFLAGS:M*:Q} -MAKE_FLAGS+= INS_BASE=${DESTDIR}${LOCALBASE:Q} # won't work in MAKE_ENV! + +# Override settings in Makefiles by passing additional settings +# on the command-line. +# +MAKE_FLAGS+= INS_BASE=${DESTDIR}${LOCALBASE:Q} +MAKE_FLAGS+= MANDIR=${PKGMANDIR:Q} # if we're using a gcc which is named gcc, we need to set CCOM=gcc # in MAKE_ENV so the make infrastructure picks the right options. --_----------=_1503102319167100--