commit: f349b63c770c264b3d20cb88c36a7f968a9da944
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 28 19:01:52 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Jun 28 19:17:49 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f349b63c
dev-python/bokeh: Fix examples installation (#659438)
Package-Manager: Portage-2.3.41, Repoman-2.3.9
dev-python/bokeh/bokeh-0.12.6.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-python/bokeh/bokeh-0.12.6.ebuild
b/dev-python/bokeh/bokeh-0.12.6.ebuild
index 4e2f6972548..df90b6f1979 100644
--- a/dev-python/bokeh/bokeh-0.12.6.ebuild
+++ b/dev-python/bokeh/bokeh-0.12.6.ebuild
@@ -67,6 +67,9 @@ python_test() {
}
python_install_all() {
- use examples && local EXAMPLES=( examples/. )
+ if use examples; then
+ insinto "/usr/share/doc/${PF}/examples/"
+ doins examples/*
+ fi
distutils-r1_python_install_all
}