From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1174133-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 5C0AF1382C5
	for <garchives@archives.gentoo.org>; Mon, 25 May 2020 12:52:59 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 7ACA3E0815;
	Mon, 25 May 2020 12:52:58 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 5EA3EE0815
	for <gentoo-commits@lists.gentoo.org>; Mon, 25 May 2020 12:52:58 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 08C9C34F04C
	for <gentoo-commits@lists.gentoo.org>; Mon, 25 May 2020 12:52:57 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8384831
	for <gentoo-commits@lists.gentoo.org>; Mon, 25 May 2020 12:52:55 +0000 (UTC)
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" <aballier@gentoo.org>
Message-ID: <1590411168.ee85e20804bd5a7720a1180d1247a8ee9dfc1893.aballier@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ViSP/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sci-libs/ViSP/ViSP-3.3.0.ebuild
X-VCS-Directories: sci-libs/ViSP/
X-VCS-Committer: aballier
X-VCS-Committer-Name: Alexis Ballier
X-VCS-Revision: ee85e20804bd5a7720a1180d1247a8ee9dfc1893
X-VCS-Branch: master
Date: Mon, 25 May 2020 12:52:55 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 8d5c5bd2-9647-4916-9ce9-0c138f6a666b
X-Archives-Hash: d32cd24b7191b10c33940928b1fec9ae

commit:     ee85e20804bd5a7720a1180d1247a8ee9dfc1893
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 12:52:40 2020 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon May 25 12:52:48 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee85e208

sci-libs/ViSP: Fix USE=doc

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 sci-libs/ViSP/ViSP-3.3.0.ebuild | 5 ++---
 1 file 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 f524038341b..35b2a248ef5 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
 }