From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 62ADC139694 for ; Thu, 6 Apr 2017 12:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0C04E0C5F; Thu, 6 Apr 2017 12:48:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9ED77E0C5C for ; Thu, 6 Apr 2017 12:48:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C21A933BF43 for ; Thu, 6 Apr 2017 12:48:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33B3873C6 for ; Thu, 6 Apr 2017 12:48:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1491482874.9f28a19a757b5ad8c901a62d10648a8e65e6bd15.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-4.0.0-r1.ebuild sys-devel/llvm/llvm-4.0.0.ebuild sys-devel/llvm/llvm-9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9f28a19a757b5ad8c901a62d10648a8e65e6bd15 X-VCS-Branch: master Date: Thu, 6 Apr 2017 12:48:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 48edd747-0c0e-4520-b2b6-117710f4e0d8 X-Archives-Hash: 1c1e574ef47bde96220db78a40a2428b commit: 9f28a19a757b5ad8c901a62d10648a8e65e6bd15 Author: Michał Górny gentoo org> AuthorDate: Thu Apr 6 06:42:33 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Apr 6 12:47:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f28a19a sys-devel/llvm: Include MANPATH in env.d file Include MANPATH in the env.d file so that 'man' can reliably find all the manpages. It seems that at least sys-apps/man-db can still find the manpages relative to the tools found in PATH but that is most likely unreliable. sys-devel/llvm/{llvm-4.0.0.ebuild => llvm-4.0.0-r1.ebuild} | 1 + sys-devel/llvm/llvm-9999.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/sys-devel/llvm/llvm-4.0.0.ebuild b/sys-devel/llvm/llvm-4.0.0-r1.ebuild similarity index 99% rename from sys-devel/llvm/llvm-4.0.0.ebuild rename to sys-devel/llvm/llvm-4.0.0-r1.ebuild index f7f8e7c7456..1384df1a119 100644 --- a/sys-devel/llvm/llvm-4.0.0.ebuild +++ b/sys-devel/llvm/llvm-4.0.0-r1.ebuild @@ -258,6 +258,7 @@ multilib_src_install_all() { PATH="${EPREFIX}/usr/lib/llvm/${SLOT}/bin" # we need to duplicate it in ROOTPATH for Portage to respect... ROOTPATH="${EPREFIX}/usr/lib/llvm/${SLOT}/bin" + MANPATH="${EPREFIX}/usr/lib/llvm/${SLOT}/share/man" LDPATH="$( IFS=:; echo "${LLVM_LDPATHS[*]}" )" _EOF_ doenvd "${T}/10llvm-${revord}" diff --git a/sys-devel/llvm/llvm-9999.ebuild b/sys-devel/llvm/llvm-9999.ebuild index cdba7b1daf4..16413680bdf 100644 --- a/sys-devel/llvm/llvm-9999.ebuild +++ b/sys-devel/llvm/llvm-9999.ebuild @@ -258,6 +258,7 @@ multilib_src_install_all() { PATH="${EPREFIX}/usr/lib/llvm/${SLOT}/bin" # we need to duplicate it in ROOTPATH for Portage to respect... ROOTPATH="${EPREFIX}/usr/lib/llvm/${SLOT}/bin" + MANPATH="${EPREFIX}/usr/lib/llvm/${SLOT}/share/man" LDPATH="$( IFS=:; echo "${LLVM_LDPATHS[*]}" )" _EOF_ doenvd "${T}/10llvm-${revord}"