diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2016-10-21 18:52:48 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2016-10-21 18:52:48 -0700 |
commit | e0cff803c9c5e5fe3bf46e355f8f649f93ba2792 (patch) | |
tree | c47a34bb6252a77198772aae18cf25adfc2caf67 /www-servers/tornado | |
parent | dev-python/xdis: Fix metadata.xml email address typo (diff) | |
download | gentoo-e0cff803c9c5e5fe3bf46e355f8f649f93ba2792.tar.gz gentoo-e0cff803c9c5e5fe3bf46e355f8f649f93ba2792.tar.bz2 gentoo-e0cff803c9c5e5fe3bf46e355f8f649f93ba2792.zip |
www-servers/tornado: Fix examples install, bug 595020
Package-Manager: portage-2.3.2
Diffstat (limited to 'www-servers/tornado')
-rw-r--r-- | www-servers/tornado/tornado-4.4.2-r1.ebuild (renamed from www-servers/tornado/tornado-4.4.2.ebuild) | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/www-servers/tornado/tornado-4.4.2.ebuild b/www-servers/tornado/tornado-4.4.2-r1.ebuild index ae21f0cbb401..8a76a30ee702 100644 --- a/www-servers/tornado/tornado-4.4.2.ebuild +++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild @@ -60,7 +60,10 @@ python_test() { python_install_all() { use doc && local HTML_DOCS=( docs/build/html/. ) - use examples && local EXAMPLES=( demos/. ) - + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r demos/. + docompress -x /usr/share/doc/${PF}/examples +fi distutils-r1_python_install_all } |