diff options
author | Alexis Ballier <aballier@gentoo.org> | 2020-05-25 14:52:40 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2020-05-25 14:52:48 +0200 |
commit | ee85e20804bd5a7720a1180d1247a8ee9dfc1893 (patch) | |
tree | 2e0e87bbcc4e4d509a9efd4c0503970a71741c82 /sci-libs | |
parent | dev-python/nose: Port to py3.9 (diff) | |
download | gentoo-ee85e20804bd5a7720a1180d1247a8ee9dfc1893.tar.gz gentoo-ee85e20804bd5a7720a1180d1247a8ee9dfc1893.tar.bz2 gentoo-ee85e20804bd5a7720a1180d1247a8ee9dfc1893.zip |
sci-libs/ViSP: Fix USE=doc
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/ViSP/ViSP-3.3.0.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sci-libs/ViSP/ViSP-3.3.0.ebuild b/sci-libs/ViSP/ViSP-3.3.0.ebuild index f524038341b0..35b2a248ef5d 100644 --- a/sci-libs/ViSP/ViSP-3.3.0.ebuild +++ b/sci-libs/ViSP/ViSP-3.3.0.ebuild @@ -84,8 +84,7 @@ src_configure() { src_compile() { cmake-utils_src_compile - cd "${BUILD_DIR}" - use doc && emake visp_doc + use doc && cmake-utils_src_compile visp_doc } src_install() { @@ -95,5 +94,5 @@ src_install() { docompress -x /usr/share/doc/${PF}/tutorial fi cd "${BUILD_DIR}" - use doc && dohtml -r doc/html/* + use doc && dodoc -r doc/html } |