diff options
Diffstat (limited to 'dev-python/mando')
-rw-r--r-- | dev-python/mando/mando-0.3.2.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-python/mando/mando-0.3.2.ebuild b/dev-python/mando/mando-0.3.2.ebuild index 6eb96d61546e..5e16ff3b6b0d 100644 --- a/dev-python/mando/mando-0.3.2.ebuild +++ b/dev-python/mando/mando-0.3.2.ebuild @@ -33,7 +33,10 @@ python_test() { python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi distutils-r1_python_install_all } |