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 40E11139360 for ; Wed, 4 Aug 2021 08:54:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8605EE089C; Wed, 4 Aug 2021 08:54:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 71240E089C for ; Wed, 4 Aug 2021 08:54:24 +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 4B02A342CD9 for ; Wed, 4 Aug 2021 08:54:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7DE67BD for ; Wed, 4 Aug 2021 08:54:21 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1628067250.9ddfdfb6b6d7723742c09f0f28cf134ca43d8b95.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/telegram-desktop/telegram-desktop-2.9.0-r1.ebuild net-im/telegram-desktop/telegram-desktop-2.9.0.ebuild X-VCS-Directories: net-im/telegram-desktop/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 9ddfdfb6b6d7723742c09f0f28cf134ca43d8b95 X-VCS-Branch: master Date: Wed, 4 Aug 2021 08:54:21 +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: c0147670-c89f-4091-b767-83234f84e643 X-Archives-Hash: b9190c3a56f5a44dd1b63c9bb67f9f08 commit: 9ddfdfb6b6d7723742c09f0f28cf134ca43d8b95 Author: Esteve Varela Colominas gmail com> AuthorDate: Wed Aug 4 08:44:10 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Wed Aug 4 08:54:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddfdfb6 net-im/telegram-desktop: Fix usex usage I don't know how I managed to mess up this badly. Signed-off-by: Esteve Varela Colominas gmail.com> Signed-off-by: Georgy Yakovlev gentoo.org> ...desktop-2.9.0.ebuild => telegram-desktop-2.9.0-r1.ebuild} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-im/telegram-desktop/telegram-desktop-2.9.0.ebuild b/net-im/telegram-desktop/telegram-desktop-2.9.0-r1.ebuild similarity index 90% rename from net-im/telegram-desktop/telegram-desktop-2.9.0.ebuild rename to net-im/telegram-desktop/telegram-desktop-2.9.0-r1.ebuild index 13da86a6071..7ed38b44c9d 100644 --- a/net-im/telegram-desktop/telegram-desktop-2.9.0.ebuild +++ b/net-im/telegram-desktop/telegram-desktop-2.9.0-r1.ebuild @@ -99,12 +99,12 @@ src_configure() { -DTDESKTOP_LAUNCHER_BASENAME="${PN}" -DCMAKE_DISABLE_FIND_PACKAGE_tl-expected=ON # header only lib, some git version. prevents warnings. - -DDESKTOP_APP_DISABLE_X11_INTEGRATION=$(usex X) - -DDESKTOP_APP_DISABLE_WAYLAND_INTEGRATION=$(usex wayland) - -DDESKTOP_APP_DISABLE_DBUS_INTEGRATION=$(usex dbus) - -DDESKTOP_APP_DISABLE_GTK_INTEGRATION=$(usex gtk) - -DDESKTOP_APP_DISABLE_WEBKITGTK=$(usex webkit) - -DDESKTOP_APP_DISABLE_SPELLCHECK=$(usex spell) # enables hunspell (recommended) + -DDESKTOP_APP_DISABLE_X11_INTEGRATION=$(usex X no yes) + -DDESKTOP_APP_DISABLE_WAYLAND_INTEGRATION=$(usex wayland no yes) + -DDESKTOP_APP_DISABLE_DBUS_INTEGRATION=$(usex dbus no yes) + -DDESKTOP_APP_DISABLE_GTK_INTEGRATION=$(usex gtk no yes) + -DDESKTOP_APP_DISABLE_WEBKITGTK=$(usex webkit no yes) + -DDESKTOP_APP_DISABLE_SPELLCHECK=$(usex spell no yes) # enables hunspell (recommended) -DDESKTOP_APP_USE_ENCHANT=$(usex enchant) # enables enchant and disables hunspell )