Received: by mail.netbsd.org (Postfix, from userid 605) id 7C6AC84D5C; Sat, 19 Aug 2017 00:23:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0FEC484CF0 for ; Sat, 19 Aug 2017 00:23:37 +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 Cd2aY6waYZi9 for ; Sat, 19 Aug 2017 00:23:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8E75F84CE0 for ; Sat, 19 Aug 2017 00:23:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8CA6DFAD0; Sat, 19 Aug 2017 00:23:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503102216223500" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 00:23:36 +0000 From: "Johnny C. Lam" Subject: CVS commit: pkgsrc/net/ocsync To: pkgsrc-changes@NetBSD.org Reply-To: jlam@netbsd.org X-Mailer: log_accum Message-Id: <20170819002336.8CA6DFAD0@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. --_----------=_1503102216223500 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:23:36 UTC 2017 Modified Files: pkgsrc/net/ocsync: distinfo pkgsrc/net/ocsync/patches: patch-cmake_Modules_DefineInstallationPaths.cmake Log Message: net/ocsync: Install manpages into ${PKGMANDIR}. This project uses CMake to configure the software. Force the manpages to be installed into ${CMAKE_INSTALL_MANDIR}, which is defined by the included GNUInstallDirs CMake module. The correct environment variables are passed so that ${CMAKE_INSTALL_MANDIR} points into ${PKGMANDIR}. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/ocsync/distinfo cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/net/ocsync/patches/patch-cmake_Modules_DefineInstallationPaths.cmake Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503102216223500 Content-Disposition: inline Content-Length: 2094 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ocsync/distinfo diff -u pkgsrc/net/ocsync/distinfo:1.2 pkgsrc/net/ocsync/distinfo:1.3 --- pkgsrc/net/ocsync/distinfo:1.2 Wed Nov 4 00:35:17 2015 +++ pkgsrc/net/ocsync/distinfo Sat Aug 19 00:23:36 2017 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.2 2015/11/04 00:35:17 agc Exp $ +$NetBSD: distinfo,v 1.3 2017/08/19 00:23:36 jlam Exp $ SHA1 (ocsync-0.90.4.tar.bz2) = d53a64177addc9fcdd831a0a78786eca25b2588a RMD160 (ocsync-0.90.4.tar.bz2) = b6208a9c0ae452f16f0ced32c1b5635df06d3b99 SHA512 (ocsync-0.90.4.tar.bz2) = 74bf6b083ae4d4c09e3915d777d916a04ebb19aefb21a5a14a49e2079e02c5c60f1f274aa0cab5c227147883eaf1a5f91b6c0546b818c960cc3575cdcdd93d57 Size (ocsync-0.90.4.tar.bz2) = 4630698 bytes -SHA1 (patch-cmake_Modules_DefineInstallationPaths.cmake) = 785dbb9f7c7f7fb6218470985818145f87f0688c +SHA1 (patch-cmake_Modules_DefineInstallationPaths.cmake) = 1ce32ae21fe331d1ebf5bd5a5941e405a7eb4b06 SHA1 (patch-config_CMakeLists.txt) = b387f38a79d9f85e3f67060a2cb689bb13dd1c28 SHA1 (patch-src_std_c__string.c) = 65927e8f7c222edfde66136a331ae81b0f4fcd4c Index: pkgsrc/net/ocsync/patches/patch-cmake_Modules_DefineInstallationPaths.cmake diff -u pkgsrc/net/ocsync/patches/patch-cmake_Modules_DefineInstallationPaths.cmake:1.1 pkgsrc/net/ocsync/patches/patch-cmake_Modules_DefineInstallationPaths.cmake:1.2 --- pkgsrc/net/ocsync/patches/patch-cmake_Modules_DefineInstallationPaths.cmake:1.1 Fri Nov 22 12:01:13 2013 +++ pkgsrc/net/ocsync/patches/patch-cmake_Modules_DefineInstallationPaths.cmake Sat Aug 19 00:23:36 2017 @@ -1,4 +1,4 @@ -$NetBSD: patch-cmake_Modules_DefineInstallationPaths.cmake,v 1.1 2013/11/22 12:01:13 ryoon Exp $ +$NetBSD: patch-cmake_Modules_DefineInstallationPaths.cmake,v 1.2 2017/08/19 00:23:36 jlam Exp $ * Fix man pages destination @@ -9,7 +9,7 @@ $NetBSD: patch-cmake_Modules_DefineInsta ) SET(MAN_INSTALL_DIR - "${SHARE_INSTALL_PREFIX}/man" -+ "${CMAKE_INSTALL_PREFIX}/man" ++ "${CMAKE_INSTALL_MANDIR}" CACHE PATH "The ${APPLICATION_NAME} man install dir (default prefix/man)" ) SET(INFO_INSTALL_DIR --_----------=_1503102216223500--