From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1309472-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DA468139368 for <garchives@archives.gentoo.org>; Wed, 4 Aug 2021 02:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C87C9E08F2; Wed, 4 Aug 2021 02:15:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A24A1E08F3 for <gentoo-commits@lists.gentoo.org>; Wed, 4 Aug 2021 02:15:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90B70342CD7 for <gentoo-commits@lists.gentoo.org>; Wed, 4 Aug 2021 02:15:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE22A851 for <gentoo-commits@lists.gentoo.org>; Wed, 4 Aug 2021 02:15:11 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1628043297.c1d469fed710bebbbbc0063ef9227bf7f6559bc8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/blender/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/blender/blender-2.83.15.ebuild media-gfx/blender/blender-2.93.0.ebuild media-gfx/blender/blender-9999.ebuild X-VCS-Directories: media-gfx/blender/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c1d469fed710bebbbbc0063ef9227bf7f6559bc8 X-VCS-Branch: master Date: Wed, 4 Aug 2021 02:15:11 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7eb45f96-b3bb-4696-abbd-f3d84ebb2ec9 X-Archives-Hash: 7d226545eebfe799824ea8d3b22a38b3 commit: c1d469fed710bebbbbc0063ef9227bf7f6559bc8 Author: Sebastian Parborg <darkdefende <AT> gmail <DOT> com> AuthorDate: Sun Jun 13 16:24:14 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Aug 4 02:14:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1d469fe media-gfx/blender: Slot the man page Closes: https://bugs.gentoo.org/795636 Signed-off-by: Sebastian Parborg <darkdefende <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> media-gfx/blender/blender-2.83.15.ebuild | 5 +++++ media-gfx/blender/blender-2.93.0.ebuild | 5 +++++ media-gfx/blender/blender-9999.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/media-gfx/blender/blender-2.83.15.ebuild b/media-gfx/blender/blender-2.83.15.ebuild index ccb67825bbd..2ff2e748e7b 100644 --- a/media-gfx/blender/blender-2.83.15.ebuild +++ b/media-gfx/blender/blender-2.83.15.ebuild @@ -320,6 +320,11 @@ src_install() { cmake_src_install + if use man; then + #Slot the man page + mv "${ED}/usr/share/man/man1/blender.1" "${ED}/usr/share/man/man1/blender-${BV}.1" || die + fi + # fix doc installdir docinto "html" dodoc "${CMAKE_USE_DIR}"/release/text/readme.html diff --git a/media-gfx/blender/blender-2.93.0.ebuild b/media-gfx/blender/blender-2.93.0.ebuild index 8a23be81323..316c84c4f64 100644 --- a/media-gfx/blender/blender-2.93.0.ebuild +++ b/media-gfx/blender/blender-2.93.0.ebuild @@ -328,6 +328,11 @@ src_install() { cmake_src_install + if use man; then + #Slot the man page + mv "${ED}/usr/share/man/man1/blender.1" "${ED}/usr/share/man/man1/blender-${BV}.1" || die + fi + # fix doc installdir docinto "html" dodoc "${CMAKE_USE_DIR}"/release/text/readme.html diff --git a/media-gfx/blender/blender-9999.ebuild b/media-gfx/blender/blender-9999.ebuild index 801ddf0af3a..330bdd8d4ad 100644 --- a/media-gfx/blender/blender-9999.ebuild +++ b/media-gfx/blender/blender-9999.ebuild @@ -328,6 +328,11 @@ src_install() { cmake_src_install + if use man; then + #Slot the man page + mv "${ED}/usr/share/man/man1/blender.1" "${ED}/usr/share/man/man1/blender-${BV}.1" || die + fi + # fix doc installdir docinto "html" dodoc "${CMAKE_USE_DIR}"/release/text/readme.html