Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 564108 | Differences between
and this patch

Collapse All | Expand All

(-)elasticsearch-py-1.8.0.ebuild (-3 / +5 lines)
Lines 80-91 Link Here
80
80
81
python_compile_all() {
81
python_compile_all() {
82
	cd docs || die
82
	cd docs || die
83
	emake man $(usex doc html "")
83
	use doc && emake man html
84
}
84
}
85
85
86
python_install_all() {
86
python_install_all() {
87
	use doc && HTML_DOCS=( docs/_build/html/. )
87
	if use doc; then
88
		export HTML_DOCS=( docs/_build/html/. )
89
		doman docs/_build/man/*
90
	fi
88
	use examples && local EXAMPLES=( example/. )
91
	use examples && local EXAMPLES=( example/. )
89
	doman docs/_build/man/*
90
	distutils-r1_python_install_all
92
	distutils-r1_python_install_all
91
}
93
}

Return to bug 564108