commit:     d64b1987bb71aed79a129054a50a53f001cd91f7
Author:     Kostadin Shishmanov <kostadinshishmanov <AT> protonmail <DOT> com>
AuthorDate: Fri Jan 16 11:39:32 2026 +0000
Commit:     Kostadin Shishmanov <kocelfc <AT> tutanota <DOT> com>
CommitDate: Fri Jan 16 11:57:31 2026 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d64b1987

net-im/vesktop-bin: fix .desktop file for Plasma

Apparently Plasma doesn't show programs in their Kickoff category at all
if they have the "-bin" string in the .desktop file name.

Also apply stkw0's suggested changes regarding the xdg eclass functions.

Signed-off-by: Kostadin Shishmanov <kostadinshishmanov <AT> protonmail.com>

 .../files/{vesktop-bin.desktop => vesktop.desktop} |  0
 net-im/vesktop-bin/vesktop-bin-1.6.3-r1.ebuild     | 99 ++++++++++++++++++++++
 2 files changed, 99 insertions(+)

diff --git a/net-im/vesktop-bin/files/vesktop-bin.desktop 
b/net-im/vesktop-bin/files/vesktop.desktop
similarity index 100%
rename from net-im/vesktop-bin/files/vesktop-bin.desktop
rename to net-im/vesktop-bin/files/vesktop.desktop

diff --git a/net-im/vesktop-bin/vesktop-bin-1.6.3-r1.ebuild 
b/net-im/vesktop-bin/vesktop-bin-1.6.3-r1.ebuild
new file mode 100644
index 0000000000..bd32e23ee2
--- /dev/null
+++ b/net-im/vesktop-bin/vesktop-bin-1.6.3-r1.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="vesktop"
+
+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 with Vencord 
Preinstalled"
+HOMEPAGE="https://github.com/Vencord/Vesktop/";
+SRC_URI="
+       amd64? ( 
https://github.com/Vencord/Vesktop/releases/download/v${PV}/${MY_PN}-${PV}.tar.gz
 )
+       arm64? ( 
https://github.com/Vencord/Vesktop/releases/download/v${PV}/${MY_PN}-${PV}-arm64.tar.gz
 )
+"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+RESTRICT="bindist mirror strip test"
+
+DEPEND="
+       app-accessibility/at-spi2-core
+       dev-libs/expat
+       dev-libs/glib
+       dev-libs/nspr
+       dev-libs/nss
+       media-libs/alsa-lib
+       media-libs/fontconfig
+       media-libs/mesa[gbm(+)]
+       net-print/cups
+       sys-apps/dbus
+       sys-libs/glibc
+       x11-libs/cairo
+       x11-libs/libdrm
+       x11-libs/gdk-pixbuf:2
+       x11-libs/gtk+:3
+       x11-libs/libXcomposite
+       x11-libs/libXdamage
+       x11-libs/libXext
+       x11-libs/libXfixes
+       x11-libs/libXrandr
+       x11-libs/libdrm
+       x11-libs/libxcb
+       x11-libs/libxkbcommon
+       x11-libs/pango
+       x11-misc/xdg-utils
+"
+
+DESTDIR="/opt/${PN}"
+
+QA_PREBUILT="*"
+
+CONFIG_CHECK="~USER_NS"
+
+src_unpack() {
+       default
+       use arm64 && S="${WORKDIR}/${MY_PN}-${PV}-arm64"
+}
+
+src_configure() {
+       default
+       chromium_suid_sandbox_check_kernel_config
+}
+
+src_install() {
+
+       doicon -s 256 "${FILESDIR}/vesktop-bin.png"
+       domenu "${FILESDIR}/vesktop.desktop"
+
+       exeinto "${DESTDIR}"
+
+       doexe vesktop chrome-sandbox libEGL.so libffmpeg.so libGLESv2.so 
libvk_swiftshader.so libvulkan.so.1
+
+       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
+
+       fowners root "${DESTDIR}/chrome-sandbox"
+       fperms 4711 "${DESTDIR}/chrome-sandbox"
+
+       [[ -x chrome_crashpad_handler ]] && doins chrome_crashpad_handler
+
+       dosym "${DESTDIR}/vesktop" "/usr/bin/vesktop-bin"
+
+}
+
+pkg_postinst() {
+       optfeature "Desktop notifications support" x11-libs/libnotify
+       xdg_pkg_postinst
+}

Reply via email to