Received: by mail.netbsd.org (Postfix, from userid 605) id EB37684D91; Thu, 24 Aug 2017 09:07:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7FCC684D90 for ; Thu, 24 Aug 2017 09:07:13 +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 rqXGvVSvqHWE for ; Thu, 24 Aug 2017 09:07:13 +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 0F05B84D21 for ; Thu, 24 Aug 2017 09:07:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9FFCDFA88; Thu, 24 Aug 2017 09:07:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503565632205860" MIME-Version: 1.0 Date: Thu, 24 Aug 2017 09:07:12 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/graphics/inkscape To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170824090712.9FFCDFA88@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. --_----------=_1503565632205860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Aug 24 09:07:12 UTC 2017 Modified Files: pkgsrc/graphics/inkscape: distinfo pkgsrc/graphics/inkscape/patches: patch-CMakeScripts_Pod2man.cmake Log Message: Fix man installation path correctly. To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 pkgsrc/graphics/inkscape/distinfo cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/graphics/inkscape/patches/patch-CMakeScripts_Pod2man.cmake Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503565632205860 Content-Disposition: inline Content-Length: 2167 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/inkscape/distinfo diff -u pkgsrc/graphics/inkscape/distinfo:1.59 pkgsrc/graphics/inkscape/distinfo:1.60 --- pkgsrc/graphics/inkscape/distinfo:1.59 Thu Feb 16 09:46:54 2017 +++ pkgsrc/graphics/inkscape/distinfo Thu Aug 24 09:07:12 2017 @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.59 2017/02/16 09:46:54 adam Exp $ +$NetBSD: distinfo,v 1.60 2017/08/24 09:07:12 jperkin Exp $ SHA1 (inkscape-0.92.1.tar.bz2) = bede1252b344dc08abb6736084364d8125a6dffc RMD160 (inkscape-0.92.1.tar.bz2) = 5748920692ac64bb3e1822b7cb9e96c727b23c55 SHA512 (inkscape-0.92.1.tar.bz2) = f8f3bfb812a214216c3ffac7064a4619f847cf9810417c782481dba12e6c6a44123c8b8a9289fbf5287f2e6b6df39a641d94a000d842faee5ff808eec86187a0 Size (inkscape-0.92.1.tar.bz2) = 31222684 bytes -SHA1 (patch-CMakeScripts_Pod2man.cmake) = ffe09dc53a841fff288cd4fffcb2c0e47e05ebd8 +SHA1 (patch-CMakeScripts_Pod2man.cmake) = 6176956791ae3e8eb007345e5ec19100812bdeb8 SHA1 (patch-ag) = 6b6000f3940ec6db9404a206f9757928c1d5740b SHA1 (patch-aj) = 31d6cc8bb179629023bd04bcac0fd935b2c9636d SHA1 (patch-ap) = 412509a03d26e925548e3371529a1273db958611 Index: pkgsrc/graphics/inkscape/patches/patch-CMakeScripts_Pod2man.cmake diff -u pkgsrc/graphics/inkscape/patches/patch-CMakeScripts_Pod2man.cmake:1.1 pkgsrc/graphics/inkscape/patches/patch-CMakeScripts_Pod2man.cmake:1.2 --- pkgsrc/graphics/inkscape/patches/patch-CMakeScripts_Pod2man.cmake:1.1 Fri Feb 10 05:51:43 2017 +++ pkgsrc/graphics/inkscape/patches/patch-CMakeScripts_Pod2man.cmake Thu Aug 24 09:07:12 2017 @@ -1,4 +1,4 @@ -$NetBSD: patch-CMakeScripts_Pod2man.cmake,v 1.1 2017/02/10 05:51:43 adam Exp $ +$NetBSD: patch-CMakeScripts_Pod2man.cmake,v 1.2 2017/08/24 09:07:12 jperkin Exp $ Fix man installation path. @@ -9,7 +9,7 @@ Fix man installation path. install( FILES ${MANFILE_FULL} - DESTINATION ${CMAKE_INSTALL_PREFIX}/${SHARE_INSTALL}/man/man${SECTION} -+ DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man${SECTION} ++ DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_MANDIR}/man${SECTION} ) endif() endmacro(pod2man PODFILE NAME SECTION CENTER) --_----------=_1503565632205860--