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 5E5F81382C5 for ; Thu, 3 Jun 2021 02:19:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 494E2E07D8; Thu, 3 Jun 2021 02:19:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 32271E07D8 for ; Thu, 3 Jun 2021 02:19:53 +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 E3DCD335DA5 for ; Thu, 3 Jun 2021 02:19:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B4FA78E for ; Thu, 3 Jun 2021 02:19:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1622686702.9d28275ad9ab730b71615854fa0f6707743b3b68.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/librime/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/librime/librime-1.7.3.ebuild X-VCS-Directories: app-i18n/librime/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9d28275ad9ab730b71615854fa0f6707743b3b68 X-VCS-Branch: master Date: Thu, 3 Jun 2021 02:19:50 +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: 8f45bed0-0362-4a1e-ab00-2e304d3a98ae X-Archives-Hash: 818210fd2e435a7e9d9cf7b0e2a5d2cf commit: 9d28275ad9ab730b71615854fa0f6707743b3b68 Author: Sam James gentoo org> AuthorDate: Thu Jun 3 02:00:03 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 3 02:18:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d28275a app-i18n/librime: workaround dev-cpp/glog dependency on sparc Not available on sparc (marked -sparc) so let's disable logging there. Bug: https://bugs.gentoo.org/760803 Signed-off-by: Sam James gentoo.org> app-i18n/librime/librime-1.7.3.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-i18n/librime/librime-1.7.3.ebuild b/app-i18n/librime/librime-1.7.3.ebuild index 44310ba275b..c42f5d509f4 100644 --- a/app-i18n/librime/librime-1.7.3.ebuild +++ b/app-i18n/librime/librime-1.7.3.ebuild @@ -28,7 +28,7 @@ RESTRICT="!test? ( test )" BDEPEND="dev-libs/capnproto:0" RDEPEND="app-i18n/opencc:0= - >=dev-cpp/glog-0.3.5:0= + !sparc? ( >=dev-cpp/glog-0.3.5:0= ) dev-cpp/yaml-cpp:0= dev-libs/boost:0=[threads] dev-libs/capnproto:0= @@ -66,6 +66,8 @@ src_configure() { -DBUILD_TEST=$(usex test ON OFF) -DCMAKE_DISABLE_FIND_PACKAGE_Gflags=ON -DENABLE_EXTERNAL_PLUGINS=ON + # dev-cpp/glog is currently marked -sparc + -DENABLE_LOGGING=$(usex !sparc) -DINSTALL_PRIVATE_HEADERS=ON )