diff options
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/pkgdev/pkgdev-9999.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-util/pkgdev/pkgdev-9999.ebuild b/dev-util/pkgdev/pkgdev-9999.ebuild index bc60a9ad96a9..0b934f899b7f 100644 --- a/dev-util/pkgdev/pkgdev-9999.ebuild +++ b/dev-util/pkgdev/pkgdev-9999.ebuild @@ -26,3 +26,24 @@ if [[ ${PV} == *9999 ]]; then ~dev-python/snakeoil-9999[${PYTHON_USEDEP}] ~sys-apps/pkgcore-9999[${PYTHON_USEDEP}]" fi + +distutils_enable_sphinx doc + +python_install_all() { + # We'll generate man pages ourselves + # Reevisit when a release is made + # so we can pregenerate some, making USE=doc + # for generating the real HTML docs only. + if use doc ; then + cd doc || die + emake man + doman _build/man/* + fi + + cd .. || die + + # HTML pages only + sphinx_compile_all + + distutils-r1_python_install_all +} |