diff options
author | soredake <fdsfgs@krutt.org> | 2017-08-20 19:35:49 +0300 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-09-02 20:45:01 +0200 |
commit | 4fc019986a8f264b880832775e01e80b0a1df376 (patch) | |
tree | 11bd2ac3ea6d504aa007b68a6662de526ec53b95 /net-misc/streamlink | |
parent | net-misc/streamlink: version bump to 0.7.0 (diff) | |
download | gentoo-4fc019986a8f264b880832775e01e80b0a1df376.tar.gz gentoo-4fc019986a8f264b880832775e01e80b0a1df376.tar.bz2 gentoo-4fc019986a8f264b880832775e01e80b0a1df376.zip |
net-misc/streamlink: build and install man when +doc in live version
Closes: https://github.com/gentoo/gentoo/pull/5489
Diffstat (limited to 'net-misc/streamlink')
-rw-r--r-- | net-misc/streamlink/streamlink-9999.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net-misc/streamlink/streamlink-9999.ebuild b/net-misc/streamlink/streamlink-9999.ebuild index 5adb60f7ff3c..4a297db743e5 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 } |