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 89E2515808B for ; Sat, 16 Apr 2022 10:08:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 838CFE09F0; Sat, 16 Apr 2022 10:08:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id C125CE09EF for ; Sat, 16 Apr 2022 10:08:17 +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 5DA9D341E81 for ; Sat, 16 Apr 2022 10:08:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA1963AB for ; Sat, 16 Apr 2022 10:08:13 +0000 (UTC) From: "Dex Conner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dex Conner" Message-ID: <1650103619.a5d5c2b05c08a8069a579fc4b47563499c8eb3fc.cantcuckthis@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-office/sc-im/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-office/sc-im/sc-im-0.8.2.ebuild X-VCS-Directories: app-office/sc-im/ X-VCS-Committer: cantcuckthis X-VCS-Committer-Name: Dex Conner X-VCS-Revision: a5d5c2b05c08a8069a579fc4b47563499c8eb3fc X-VCS-Branch: dev Date: Sat, 16 Apr 2022 10:08:13 +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: 909b8e30-69bd-4292-9181-e797404129e8 X-Archives-Hash: 7a526228eb1d21c88e6f5f3fa478cf69 commit: a5d5c2b05c08a8069a579fc4b47563499c8eb3fc Author: Dex Conner danwin1210 de> AuthorDate: Sat Apr 16 09:01:46 2022 +0000 Commit: Dex Conner danwin1210 de> CommitDate: Sat Apr 16 10:06:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a5d5c2b0 app-office/sc-im: remove unnecessary flag logic This part is already handled by the Makefile Signed-off-by: Dex Conner danwin1210.de> app-office/sc-im/sc-im-0.8.2.ebuild | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app-office/sc-im/sc-im-0.8.2.ebuild b/app-office/sc-im/sc-im-0.8.2.ebuild index 852cd456c..e61cbc8f9 100644 --- a/app-office/sc-im/sc-im-0.8.2.ebuild +++ b/app-office/sc-im/sc-im-0.8.2.ebuild @@ -60,11 +60,8 @@ pkg_setup() { export LUA=$(usex lua) ( use xlsx || use ods ) && export XML_ZIP="yes" - # Prefer wayland support over X, and tmux support over both wayland and X. - use wayland && export X="no" - use tmux && export X="no" && export WAYLAND="no" - # Notifying the user about which clipboard support is enabled if conflicting flags are set + # Prefer wayland support over X, and tmux support over both wayland and X. CONFLICTING=$(usex tmux "tmux " "")$(usex wayland "wayland " "")$(usex X "X" "") if ( use tmux && ( use wayland || use X ) ) ; then elog "Conflicting flags for clipboard support are set: ${CONFLICTING}"