From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/discord/
Date: Thu, 27 Apr 2023 14:41:00 +0000 (UTC) [thread overview]
Message-ID: <1682606449.012ac9d98ffcf767240c736da60e45253428d428.pacho@gentoo> (raw)
commit: 012ac9d98ffcf767240c736da60e45253428d428
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 27 14:23:07 2023 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 27 14:40:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=012ac9d9
net-im/discord: Support ayatana indicators
Also add missing locales
Closes: https://bugs.gentoo.org/898906
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-im/discord/discord-0.0.26-r2.ebuild | 134 ++++++++++++++++++++++++++++++++
1 file changed, 134 insertions(+)
diff --git a/net-im/discord/discord-0.0.26-r2.ebuild b/net-im/discord/discord-0.0.26-r2.ebuild
new file mode 100644
index 000000000000..8f127eeca494
--- /dev/null
+++ b/net-im/discord/discord-0.0.26-r2.ebuild
@@ -0,0 +1,134 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN/-bin/}"
+MY_PV="${PV/-r*/}"
+
+CHROMIUM_VERSION="102"
+CHROMIUM_LANGS="
+ af am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he hi
+ hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv
+ sw ta te th tr uk ur vi zh-CN zh-TW
+"
+
+inherit chromium-2 desktop linux-info optfeature unpacker xdg
+
+DESCRIPTION="All-in-one voice and text chat for gamers"
+HOMEPAGE="https://discordapp.com"
+SRC_URI="https://dl.discordapp.net/apps/linux/${MY_PV}/${MY_PN}-${MY_PV}.tar.gz"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="bindist mirror strip test"
+IUSE="appindicator +seccomp"
+
+RDEPEND="
+ >=app-accessibility/at-spi2-core-2.46.0:2
+ app-crypt/libsecret
+ dev-libs/expat
+ dev-libs/glib:2
+ dev-libs/nspr
+ dev-libs/nss
+ media-libs/alsa-lib
+ media-libs/fontconfig
+ media-libs/mesa[gbm(+)]
+ net-print/cups
+ sys-apps/dbus
+ sys-apps/util-linux
+ sys-libs/glibc
+ x11-libs/cairo
+ x11-libs/libdrm
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:3
+ x11-libs/libX11
+ x11-libs/libXScrnSaver
+ x11-libs/libXcomposite
+ x11-libs/libXdamage
+ x11-libs/libXext
+ x11-libs/libXfixes
+ x11-libs/libXrandr
+ x11-libs/libxcb
+ x11-libs/libxkbcommon
+ x11-libs/libxshmfence
+ x11-libs/pango
+ appindicator? ( dev-libs/libayatana-appindicator )
+"
+
+DESTDIR="/opt/${MY_PN}"
+
+QA_PREBUILT="*"
+
+CONFIG_CHECK="~USER_NS"
+
+S="${WORKDIR}/${MY_PN^}"
+
+src_unpack() {
+ unpack ${MY_PN}-${MY_PV}.tar.gz
+}
+
+src_configure() {
+ default
+ chromium_suid_sandbox_check_kernel_config
+}
+
+src_prepare() {
+ default
+ # remove post-install script
+ rm postinst.sh || die "the removal of the unneeded post-install script failed"
+ # cleanup languages
+ pushd "locales/" >/dev/null || die "location change for language cleanup failed"
+ chromium_remove_language_paks
+ popd >/dev/null || die "location reset for language cleanup failed"
+ # fix .desktop exec location
+ sed -i "/Exec/s:/usr/share/discord/Discord:${DESTDIR}/${MY_PN^}:" \
+ "${MY_PN}.desktop" ||
+ die "fixing of exec location on .desktop failed"
+ # USE seccomp
+ if ! use seccomp; then
+ sed -i '/Exec/s/Discord/Discord --disable-seccomp-filter-sandbox/' \
+ "${MY_PN}.desktop" ||
+ die "sed failed for seccomp"
+ fi
+}
+
+src_install() {
+ doicon -s 256 "${MY_PN}.png"
+
+ # install .desktop file
+ domenu "${MY_PN}.desktop"
+
+ exeinto "${DESTDIR}"
+
+ doexe "${MY_PN^}" chrome-sandbox libEGL.so libffmpeg.so libGLESv2.so libvk_swiftshader.so
+
+ insinto "${DESTDIR}"
+ doins chrome_100_percent.pak chrome_200_percent.pak icudtl.dat resources.pak snapshot_blob.bin v8_context_snapshot.bin
+ insopts -m0755
+ doins -r locales resources
+
+ # Chrome-sandbox requires the setuid bit to be specifically set.
+ # see https://github.com/electron/electron/issues/17972
+ fowners root "${DESTDIR}/chrome-sandbox"
+ fperms 4711 "${DESTDIR}/chrome-sandbox"
+
+ # Crashpad is included in the package once in a while and when it does, it must be installed.
+ # See #903616 and #890595
+ [[ -x chrome_crashpad_handler ]] && doins chrome_crashpad_handler
+
+ dosym "${DESTDIR}/${MY_PN^}" "/usr/bin/${MY_PN}"
+
+ # https://bugs.gentoo.org/898912
+ if use appindicator; then
+ dosym ../../usr/lib64/libayatana-appindicator3.so /opt/discord/libappindicator3.so
+ fi
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ optfeature "sound support" \
+ media-sound/pulseaudio media-sound/apulse[sdk] media-video/pipewire
+}
next reply other threads:[~2023-04-27 14:41 UTC|newest]
Thread overview: 78+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-27 14:41 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-16 2:57 [gentoo-commits] repo/gentoo:master commit in: net-im/discord/ Nick Sarnie
2025-04-15 2:05 Nick Sarnie
2025-04-01 0:01 Nick Sarnie
2025-03-25 1:43 Nick Sarnie
2025-03-10 22:31 Nick Sarnie
2025-02-24 23:17 Nick Sarnie
2025-02-19 5:34 Nick Sarnie
2025-02-10 22:43 Nick Sarnie
2025-02-05 12:49 Nick Sarnie
2025-02-05 8:33 Nick Sarnie
2025-02-03 22:30 Nick Sarnie
2025-01-28 14:50 Nick Sarnie
2025-01-22 22:14 Nick Sarnie
2025-01-14 9:48 Nick Sarnie
2025-01-07 8:40 Nick Sarnie
2024-12-18 13:18 Nick Sarnie
2024-12-10 8:36 Nick Sarnie
2024-11-25 20:06 Nick Sarnie
2024-11-19 7:06 Nick Sarnie
2024-11-13 6:30 Nick Sarnie
2024-11-04 19:25 Nick Sarnie
2024-10-22 11:18 Nick Sarnie
2024-10-10 8:35 Nick Sarnie
2024-10-02 5:12 Nick Sarnie
2024-09-24 4:42 Nick Sarnie
2024-09-10 6:37 Nick Sarnie
2024-09-04 19:38 Nick Sarnie
2024-09-02 1:39 Nick Sarnie
2024-08-28 6:51 Nick Sarnie
2024-08-22 23:27 Nick Sarnie
2024-08-13 18:42 Nick Sarnie
2024-08-06 0:20 Nick Sarnie
2024-07-30 22:07 Nick Sarnie
2024-07-22 22:42 Nick Sarnie
2024-07-15 23:37 Nick Sarnie
2024-07-09 23:52 Nick Sarnie
2024-06-30 18:57 Nick Sarnie
2024-06-26 0:48 Nick Sarnie
2024-06-24 22:16 Nick Sarnie
2024-06-17 18:32 Nick Sarnie
2024-06-11 0:07 Nick Sarnie
2024-06-05 2:19 Nick Sarnie
2024-05-14 17:54 Nick Sarnie
2024-05-07 6:17 Joonas Niilola
2024-04-29 22:46 Nick Sarnie
2024-04-23 0:24 Nick Sarnie
2024-04-17 11:08 Joonas Niilola
2024-04-09 19:23 Nick Sarnie
2024-04-09 1:11 Nick Sarnie
2024-03-26 10:08 Nick Sarnie
2024-03-19 11:44 Nick Sarnie
2024-03-13 10:00 Nick Sarnie
2024-03-12 17:39 Nick Sarnie
2024-03-07 3:12 Nick Sarnie
2024-02-13 3:33 Nick Sarnie
2024-01-29 21:37 Nick Sarnie
2024-01-23 3:53 Nick Sarnie
2024-01-10 17:10 Nick Sarnie
2023-12-21 7:52 Sam James
2023-12-12 23:06 Nick Sarnie
2023-12-05 22:19 Nick Sarnie
2023-11-28 23:23 Nick Sarnie
2023-11-14 1:54 Nick Sarnie
2023-11-07 1:44 Nick Sarnie
2023-10-31 18:03 Nick Sarnie
2023-10-17 0:52 Nick Sarnie
2023-10-05 19:46 Nick Sarnie
2023-09-18 23:08 Stefan Strogin
2023-08-30 20:22 Nick Sarnie
2023-07-12 8:32 Stefan Strogin
2023-05-10 14:02 Ionen Wolkens
2023-05-10 14:02 Ionen Wolkens
2023-04-27 22:44 Nick Sarnie
2023-03-31 16:25 Sam James
2023-03-31 16:23 Sam James
2023-03-31 0:44 Nick Sarnie
2023-02-14 1:24 Stefan Strogin
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=1682606449.012ac9d98ffcf767240c736da60e45253428d428.pacho@gentoo \
--to=pacho@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