From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/zoom/, net-im/zoom/files/
Date: Sat, 28 Mar 2020 12:16:17 +0000 (UTC) [thread overview]
Message-ID: <1585397705.8c59604601505f67e7c744a656b8a89cb55b94da.ulm@gentoo> (raw)
commit: 8c59604601505f67e7c744a656b8a89cb55b94da
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 28 12:14:50 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 28 12:15:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c596046
net-im/zoom: Several fixes.
Fix problem that ALSA devices are not found if media-sound/apulse[sdk]
is installed.
Add missing dependency on media-libs/libjpeg-turbo and a symlink
(for dlopen?) to fix a camera problem.
Install a better icon. Generic camera icon taken from
https://github.com/google/material-design-icons/blob/master/av/svg/production/ic_videocam_24px.svg
(licensed under Apache-2.0) and locally modified.
Closes: https://bugs.gentoo.org/715106
Closes: https://bugs.gentoo.org/715088
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
net-im/zoom/files/zoom-videocam.svg | 4 +++
....0324.ebuild => zoom-3.5.374815.0324-r1.ebuild} | 30 +++++++++++++++++++---
2 files changed, 30 insertions(+), 4 deletions(-)
diff --git a/net-im/zoom/files/zoom-videocam.svg b/net-im/zoom/files/zoom-videocam.svg
new file mode 100644
index 00000000000..33e4ac77b9f
--- /dev/null
+++ b/net-im/zoom/files/zoom-videocam.svg
@@ -0,0 +1,4 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
+ <rect width="24" height="24" rx="6" ry="6" fill="#2d8cff"/>
+ <path d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z" fill="#ffffff"/>
+</svg>
diff --git a/net-im/zoom/zoom-3.5.374815.0324.ebuild b/net-im/zoom/zoom-3.5.374815.0324-r1.ebuild
similarity index 58%
rename from net-im/zoom/zoom-3.5.374815.0324.ebuild
rename to net-im/zoom/zoom-3.5.374815.0324-r1.ebuild
index c9475297484..4aa816a1c6a 100644
--- a/net-im/zoom/zoom-3.5.374815.0324.ebuild
+++ b/net-im/zoom/zoom-3.5.374815.0324-r1.ebuild
@@ -11,9 +11,10 @@ SRC_URI="amd64? ( https://zoom.us/client/${PV}/${PN}_x86_64.tar.xz -> ${P}_x86_6
x86? ( https://zoom.us/client/${PV}/${PN}_i686.tar.xz -> ${P}_i686.tar.xz )"
S="${WORKDIR}/${PN}"
-LICENSE="all-rights-reserved"
+LICENSE="all-rights-reserved Apache-2.0" # Apache-2.0 for icon
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
+IUSE="pulseaudio"
RESTRICT="mirror bindist strip"
RDEPEND="dev-libs/glib:2
@@ -31,6 +32,7 @@ RDEPEND="dev-libs/glib:2
dev-qt/qtwebengine:5
dev-qt/qtwidgets:5
media-libs/libglvnd
+ media-libs/libjpeg-turbo
sys-apps/dbus
sys-apps/util-linux
x11-libs/libX11
@@ -39,10 +41,24 @@ RDEPEND="dev-libs/glib:2
x11-libs/libXfixes
x11-libs/libXtst
x11-libs/xcb-util-image
- x11-libs/xcb-util-keysyms"
+ x11-libs/xcb-util-keysyms
+ pulseaudio? ( media-sound/pulseaudio )"
+
+BDEPEND="!pulseaudio? ( dev-util/bbe )"
QA_PREBUILT="opt/zoom/*"
+src_prepare() {
+ default
+ if ! use pulseaudio; then
+ # For some strange reason, zoom cannot use any ALSA sound devices if
+ # it finds libpulse. This causes breakage if media-sound/apulse[sdk]
+ # is installed. So, force zoom to ignore libpulse.
+ bbe -e 's/libpulse.so/IgNoRePuLsE/' zoom >zoom.tmp || die
+ mv zoom.tmp zoom || die
+ fi
+}
+
src_install() {
insinto /opt/zoom
exeinto /opt/zoom
@@ -50,9 +66,15 @@ src_install() {
doins *.pcm *.pem *.sh Embedded.properties version.txt
use amd64 && doins icudtl.dat
doexe zoom{,.sh,linux} zopen ZoomLauncher
+ dosym {"../../usr/$(get_libdir)",/opt/zoom}/libturbojpeg.so #715106
+
make_wrapper zoom ./zoom /opt/zoom
- make_desktop_entry "zoom %U" Zoom audio-headset "" \
- "MimeType=x-scheme-handler/zoommtg;application/x-zoom;"
+ make_desktop_entry "zoom %U" Zoom zoom-videocam "" \
+ "MimeType=x-scheme-handler/zoommtg;application/x-zoom;"
+ # The tarball doesn't contain an icon, so take a generic camera icon
+ # from https://github.com/google/material-design-icons, modified to be
+ # white on a blue background
+ doicon "${FILESDIR}"/zoom-videocam.svg
}
pkg_postinst() {
next reply other threads:[~2020-03-28 12:16 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-28 12:16 Ulrich Müller [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-04-01 9:53 [gentoo-commits] repo/gentoo:master commit in: net-im/zoom/, net-im/zoom/files/ Ulrich Müller
2020-05-12 9:31 Ulrich Müller
2020-12-21 14:48 Ulrich Müller
2022-04-27 16:38 Ulrich Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1585397705.8c59604601505f67e7c744a656b8a89cb55b94da.ulm@gentoo \
--to=ulm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox