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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C7666158094 for ; Thu, 29 Sep 2022 14:32:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17A5CE0896; Thu, 29 Sep 2022 14:32:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C03CBE0896 for ; Thu, 29 Sep 2022 14:32:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B25593412CC for ; Thu, 29 Sep 2022 14:32:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AC025EC for ; Thu, 29 Sep 2022 14:32:49 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1664461962.39a29e71343141e6f58d2b3ac9f829da36ff09ec.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/cpu-x/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/cpu-x/cpu-x-4.4.0.ebuild X-VCS-Directories: sys-apps/cpu-x/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 39a29e71343141e6f58d2b3ac9f829da36ff09ec X-VCS-Branch: master Date: Thu, 29 Sep 2022 14:32:49 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bda7e78e-ebf9-4e4d-9e11-9fdf84987df1 X-Archives-Hash: bc273e3e52c6143e97eaf03ae3a16ee3 commit: 39a29e71343141e6f58d2b3ac9f829da36ff09ec Author: Ben Kohler gentoo org> AuthorDate: Thu Sep 29 14:30:28 2022 +0000 Commit: Ben Kohler gentoo org> CommitDate: Thu Sep 29 14:32:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39a29e71 sys-apps/cpu-x: only disable gsettings when USE=gui This will fix an unused-cmake-var warning, this option is only meaningful when gtk support is on. Closes: https://bugs.gentoo.org/873418 Signed-off-by: Ben Kohler gentoo.org> sys-apps/cpu-x/cpu-x-4.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/cpu-x/cpu-x-4.4.0.ebuild b/sys-apps/cpu-x/cpu-x-4.4.0.ebuild index e1f02ebb7d26..c9667e5cef8d 100644 --- a/sys-apps/cpu-x/cpu-x-4.4.0.ebuild +++ b/sys-apps/cpu-x/cpu-x-4.4.0.ebuild @@ -53,7 +53,6 @@ S="${WORKDIR}/${MY_PN}-${PV}" src_configure() { local mycmakeargs=( -DFORCE_LIBSTATGRAB=$(usex force-libstatgrab) - -DGSETTINGS_COMPILE=OFF -DWITH_GETTEXT=$(usex nls) -DWITH_GTK=$(usex gui) -DWITH_LIBCPUID=$(usex cpu) @@ -63,6 +62,7 @@ src_configure() { -DWITH_NCURSES=$(usex ncurses) -DWITH_OPENCL=$(usex opencl) ) + use gui && mycmakeargs+=( -DGSETTINGS_COMPILE=OFF ) cmake_src_configure }