commit: a265e29932ee47bab1c0d56181f72b098ea645ba Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Feb 14 20:34:36 2021 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Feb 14 20:35:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a265e299
app-laptop/thinkfan: Use cmake.eclass Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-laptop/thinkfan/thinkfan-1.0.2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-laptop/thinkfan/thinkfan-1.0.2.ebuild b/app-laptop/thinkfan/thinkfan-1.0.2.ebuild index 59f5d7fce4b..e08e6101e57 100644 --- a/app-laptop/thinkfan/thinkfan-1.0.2.ebuild +++ b/app-laptop/thinkfan/thinkfan-1.0.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils readme.gentoo-r1 +inherit cmake readme.gentoo-r1 DESCRIPTION="simple fan control program for thinkpads" HOMEPAGE="http://thinkfan.sourceforge.net" @@ -25,18 +25,18 @@ DOC_CONTENTS=" " src_configure() { - local mycmakeargs+=( + local mycmakeargs=( -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF} -DUSE_NVML="$(usex nvidia)" -DUSE_ATASMART="$(usex atasmart)" -DUSE_YAML="$(usex yaml)" ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install readme.gentoo_create_doc }
