commit: c107dbc80a181895a413e5862ba594365d951bb5
Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 26 03:45:57 2015 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon Oct 26 03:47:04 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c107dbc8
dev-python/elasticsearch-py: fix to code re IUSE doc, fixes the gentoo bug
ack to Andrew Wilcox for submission of the patch. Closes the bug
Gentoo bug: #564108
Package-Manager: portage-2.2.23
dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
b/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
index 73ae13b..482bc30 100644
--- a/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
+++ b/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
@@ -80,12 +80,14 @@ python_test() {
python_compile_all() {
cd docs || die
- emake man $(usex doc html "")
+ use doc && emake man html
}
python_install_all() {
- use doc && HTML_DOCS=( docs/_build/html/. )
+ if use doc; then
+ export HTML_DOCS=( docs/_build/html/. )
+ doman docs/_build/man/*
+ fi
use examples && local EXAMPLES=( example/. )
- doman docs/_build/man/*
distutils-r1_python_install_all
}