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 1B88E1396D0 for ; Sat, 2 Sep 2017 18:45:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 661331FC04C; Sat, 2 Sep 2017 18:45:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 40D041FC053 for ; Sat, 2 Sep 2017 18:45:07 +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 4571134071C for ; Sat, 2 Sep 2017 18:45:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 095238BA7 for ; Sat, 2 Sep 2017 18:45:05 +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: <1504377901.4fc019986a8f264b880832775e01e80b0a1df376.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/streamlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/streamlink/streamlink-9999.ebuild X-VCS-Directories: net-misc/streamlink/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4fc019986a8f264b880832775e01e80b0a1df376 X-VCS-Branch: master Date: Sat, 2 Sep 2017 18:45:05 +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: 74625183-c809-4df6-9a23-caf77a92d63c X-Archives-Hash: a36b0fa68b54e03edaaeaa6a86e4c80d commit: 4fc019986a8f264b880832775e01e80b0a1df376 Author: soredake krutt org> AuthorDate: Sun Aug 20 16:35:49 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 2 18:45:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fc01998 net-misc/streamlink: build and install man when +doc in live version Closes: https://github.com/gentoo/gentoo/pull/5489 net-misc/streamlink/streamlink-9999.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-misc/streamlink/streamlink-9999.ebuild b/net-misc/streamlink/streamlink-9999.ebuild index 5adb60f7ff3..4a297db743e 100644 --- a/net-misc/streamlink/streamlink-9999.ebuild +++ b/net-misc/streamlink/streamlink-9999.ebuild @@ -38,7 +38,7 @@ python_configure_all() { } python_compile_all() { - use doc && emake -C docs html + use doc && emake -C docs html man } python_test() { @@ -46,6 +46,9 @@ python_test() { } python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) + if use doc; then + local HTML_DOCS=( docs/_build/html/. ) + doman docs/_build/man/* + fi distutils-r1_python_install_all }