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 0C0141382C5 for ; Sat, 12 Dec 2020 08:00:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53177E096B; Sat, 12 Dec 2020 08:00:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 354B8E096B for ; Sat, 12 Dec 2020 08:00:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A584E340E8B for ; Sat, 12 Dec 2020 08:00:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E71F46C for ; Sat, 12 Dec 2020 08:00:36 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1607760030.45028317a7f64914d4f187bd62e143f632e45467.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/zoom/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/zoom/zoom-5.4.56259.1207-r1.ebuild net-im/zoom/zoom-5.4.56259.1207-r2.ebuild X-VCS-Directories: net-im/zoom/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 45028317a7f64914d4f187bd62e143f632e45467 X-VCS-Branch: master Date: Sat, 12 Dec 2020 08:00:36 +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: 86c903cc-693d-448f-beb4-eafcff214db0 X-Archives-Hash: 1894656835a663c61cad8f61cea9e7f0 commit: 45028317a7f64914d4f187bd62e143f632e45467 Author: Ulrich Müller gentoo org> AuthorDate: Sat Dec 12 07:55:08 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Dec 12 08:00:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45028317 net-im/zoom: Rename icon so it won't clash with KDE's zoom action. Bug: https://bugs.gentoo.org/759253#c15 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Ulrich Müller gentoo.org> ...5.4.56259.1207-r1.ebuild => zoom-5.4.56259.1207-r2.ebuild} | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild b/net-im/zoom/zoom-5.4.56259.1207-r2.ebuild similarity index 93% rename from net-im/zoom/zoom-5.4.56259.1207-r1.ebuild rename to net-im/zoom/zoom-5.4.56259.1207-r2.ebuild index 7387cd5dde5..6150b881093 100644 --- a/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild +++ b/net-im/zoom/zoom-5.4.56259.1207-r2.ebuild @@ -64,8 +64,9 @@ src_prepare() { default # The tarball doesn't contain an icon, so extract it from the binary - bbe -s -b '/\n/' -e 'J 1;D' zoom >zoom.svg \ - && [[ -s zoom.svg ]] || die "Extraction of icon failed" + bbe -s -b '/\n/' -e 'J 1;D' zoom \ + >zoom-videocam.svg && [[ -s zoom-videocam.svg ]] \ + || die "Extraction of icon failed" if ! use pulseaudio; then # For some strange reason, zoom cannot use any ALSA sound devices if @@ -113,10 +114,10 @@ src_install() { fi make_wrapper zoom /opt/zoom{/zoom,} $(usex bundled-qt /opt/zoom "") - make_desktop_entry "zoom %U" Zoom zoom "" \ + make_desktop_entry "zoom %U" Zoom zoom-videocam "" \ "MimeType=x-scheme-handler/zoommtg;application/x-zoom;" - doicon zoom.svg - doicon -s scalable zoom.svg + doicon zoom-videocam.svg + doicon -s scalable zoom-videocam.svg readme.gentoo_create_doc }