summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-06-28 21:01:52 +0200
committerPacho Ramos <pacho@gentoo.org>2018-06-28 21:17:49 +0200
commitf349b63c770c264b3d20cb88c36a7f968a9da944 (patch)
tree795195bcbd96156aad37982d9c1e37720b9ef22e /dev-python
parentMask app-misc/jira-cli for removal (diff)
downloadgentoo-f349b63c770c264b3d20cb88c36a7f968a9da944.tar.gz
gentoo-f349b63c770c264b3d20cb88c36a7f968a9da944.tar.bz2
gentoo-f349b63c770c264b3d20cb88c36a7f968a9da944.zip
dev-python/bokeh: Fix examples installation (#659438)
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/bokeh/bokeh-0.12.6.ebuild5
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-python/bokeh/bokeh-0.12.6.ebuild b/dev-python/bokeh/bokeh-0.12.6.ebuild
index 4e2f69725482..df90b6f19795 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
}