dev-python/paramiko: install examples in the right place.

Gentoo-Bug: https://bugs.gentoo.org/595088

Closes: https://github.com/gentoo/gentoo/pull/3135
This commit is contained in:
Wim Muskee
2016-12-16 20:49:17 +01:00
committed by Patrice Clement
parent 6a60fd45a2
commit 3497e99e2a

View File

@@ -33,7 +33,11 @@ python_test() {
python_install_all() {
use doc && local HTML_DOCS=( docs/. )
use examples && local EXAMPLES=( demos/. )
distutils-r1_python_install_all
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins demos/*
fi
}