Received: by mail.netbsd.org (Postfix, from userid 605) id E3AE284D57; Sat, 19 Aug 2017 00:20:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 773AE84D40 for ; Sat, 19 Aug 2017 00:20:51 +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 8h1UM_SI5P2y for ; Sat, 19 Aug 2017 00:20:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CEB0984CF0 for ; Sat, 19 Aug 2017 00:20:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CD1D3FAD0; Sat, 19 Aug 2017 00:20:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503102050148870" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 00:20:50 +0000 From: "Johnny C. Lam" Subject: CVS commit: pkgsrc/filesystems/fuse-unionfs To: pkgsrc-changes@NetBSD.org Reply-To: jlam@netbsd.org X-Mailer: log_accum Message-Id: <20170819002050.CD1D3FAD0@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. --_----------=_1503102050148870 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:20:50 UTC 2017 Modified Files: pkgsrc/filesystems/fuse-unionfs: Makefile Log Message: filesystems/fuse-unionfs: Install manpages into ${PKGMANDIR}. This package uses a custom "do-install" target to install all of the package's files. Change the command to install the manpage to put it under ${PKGMANDIR}. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/filesystems/fuse-unionfs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503102050148870 Content-Disposition: inline Content-Length: 1022 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/filesystems/fuse-unionfs/Makefile diff -u pkgsrc/filesystems/fuse-unionfs/Makefile:1.5 pkgsrc/filesystems/fuse-unionfs/Makefile:1.6 --- pkgsrc/filesystems/fuse-unionfs/Makefile:1.5 Mon Feb 1 02:41:21 2016 +++ pkgsrc/filesystems/fuse-unionfs/Makefile Sat Aug 19 00:20:50 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2016/02/01 02:41:21 jmmv Exp $ +# $NetBSD: Makefile,v 1.6 2017/08/19 00:20:50 jlam Exp $ # DISTNAME= v1.0 @@ -15,7 +15,7 @@ BUILD_TARGET= build USE_TOOLS= gmake pkg-config WRKSRC= ${WRKDIR}/unionfs-fuse-${DISTNAME:S/v//} -INSTALLATION_DIRS= bin man/man8 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man8 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/unionfs \ @@ -23,7 +23,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/unionfsctl \ ${DESTDIR}${PREFIX}/bin/unionfsctl ${INSTALL_MAN} ${WRKSRC}/man/unionfs.8 \ - ${DESTDIR}${PREFIX}/man/man8 + ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8 .include "../../mk/fuse.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1503102050148870--