From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 A900C1382C5 for ; Mon, 23 Apr 2018 06:57:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE3D7E0817; Mon, 23 Apr 2018 06:57:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A801AE0817 for ; Mon, 23 Apr 2018 06:57:03 +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 27155335C07 for ; Mon, 23 Apr 2018 06:57:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FEED292 for ; Mon, 23 Apr 2018 06:57:00 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1524466599.4abe92df8735063754d3e3e957c8c2f2520d48c0.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-leechcraft/lc-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-leechcraft/lc-core/lc-core-9999.ebuild X-VCS-Directories: app-leechcraft/lc-core/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 4abe92df8735063754d3e3e957c8c2f2520d48c0 X-VCS-Branch: master Date: Mon, 23 Apr 2018 06:57:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 06b8bbad-e9b4-4fb9-8e49-7281a71a9ac3 X-Archives-Hash: 2a15a73debb14b8b6e6e16d6932af90c commit: 4abe92df8735063754d3e3e957c8c2f2520d48c0 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Apr 23 06:55:13 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Mon Apr 23 06:56:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4abe92df app-leechcraft/lc-core: replace dohtml with dodoc (bug #653836) Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-leechcraft/lc-core/lc-core-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-leechcraft/lc-core/lc-core-9999.ebuild b/app-leechcraft/lc-core/lc-core-9999.ebuild index ed2c60da476..e2da5f1db2a 100644 --- a/app-leechcraft/lc-core/lc-core-9999.ebuild +++ b/app-leechcraft/lc-core/lc-core-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -53,5 +53,5 @@ src_configure() { src_install() { cmake-utils_src_install - use doc && dohtml -r "${CMAKE_BUILD_DIR}/${PN#lc-}"/out/html/* + use doc && dodoc -r "${CMAKE_BUILD_DIR}/${PN#lc-}"/out/html/* }