commit: dc3e89934d81ee4443da57e23d885a792dfdcdd3
Author: David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Fri Sep 12 10:43:28 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep 12 10:43:28 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc3e8993
sci-electronics/logic-bin: add 2.4.36
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
sci-electronics/logic-bin/Manifest | 1 +
sci-electronics/logic-bin/logic-bin-2.4.36.ebuild | 128 ++++++++++++++++++++++
2 files changed, 129 insertions(+)
diff --git a/sci-electronics/logic-bin/Manifest
b/sci-electronics/logic-bin/Manifest
index 75503d92f7..9489297b34 100644
--- a/sci-electronics/logic-bin/Manifest
+++ b/sci-electronics/logic-bin/Manifest
@@ -1 +1,2 @@
DIST Logic-2.4.29-linux-x64.AppImage 190784685 BLAKE2B
77e3ef319656fa000a33f7f43385d8132331df6b2aa7bcb7609b53e7cdf53b8c82c99e1508877c07ea20ac0af761501f2db9ae3043e71e09f701a171a4c13167
SHA512
7f99549b3aa1a0c60d157177b14216c2cb55eadbecd4043051a657e0b60a040c6d38ab3117575100f35e3a8fd3805436986b3653dad02240a262ce5283600aa3
+DIST Logic-2.4.36-linux-x64.AppImage 191333184 BLAKE2B
2d7e9aa54ffcc47182acce8c158461f9cf2a152acaef3edef601e712dd065db9373403d5f75d39c027a74b2cd897e8c2b0d270d3f4a6972849cb08e52bb1bef6
SHA512
d38f2891f2fe2fe4294c25e737c4574d72d945348b9d833b22e8e96e7698c61594b77b87cce4cb56b76ed3788239aa8198b8a29e6402be11cecf7e8e7a638139
diff --git a/sci-electronics/logic-bin/logic-bin-2.4.36.ebuild
b/sci-electronics/logic-bin/logic-bin-2.4.36.ebuild
new file mode 100644
index 0000000000..1678ed8aad
--- /dev/null
+++ b/sci-electronics/logic-bin/logic-bin-2.4.36.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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 xdg
+
+APPIMAGE="Logic-${PV}-linux-x64.AppImage"
+DESCRIPTION="Saleae logic analyzer"
+HOMEPAGE="https://www.saleae.com"
+
+SRC_URI="https://downloads2.saleae.com/logic2/${APPIMAGE}"
+
+S="${WORKDIR}"
+LICENSE="Saleae"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RESTRICT="bindist mirror strip"
+
+RDEPEND="
+ app-accessibility/at-spi2-core:2
+ dev-libs/dbus-glib
+ dev-libs/expat
+ dev-libs/glib:2
+ dev-libs/libdbusmenu
+ dev-libs/nspr
+ dev-libs/nss
+ media-libs/alsa-lib
+ media-libs/mesa
+ net-print/cups
+ sys-apps/dbus
+ sys-libs/libxcrypt
+ sys-libs/zlib
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:2
+ x11-libs/gtk+:3
+ x11-libs/libnotify
+ x11-libs/libX11
+ x11-libs/libXcomposite
+ x11-libs/libXdamage
+ x11-libs/libXext
+ x11-libs/libXfixes
+ x11-libs/libXrandr
+ x11-libs/libXScrnSaver
+ x11-libs/libXtst
+ x11-libs/libdrm
+ x11-libs/libxcb
+ x11-libs/libxkbcommon
+ x11-libs/pango
+"
+
+BDEPEND="dev-util/patchelf"
+
+QA_PREBUILT="*"
+
+src_unpack() {
+ cp "${DISTDIR}/${APPIMAGE}" "${S}" || die
+
+ cd "${S}" || die # "appimage-extract" unpacks to current directory
+ chmod +x "${APPIMAGE}" || die
+ ./"${APPIMAGE}" --appimage-extract || die
+}
+
+src_prepare() {
+ # Fix permissions
+ find "${S}" -type d -exec chmod a+rx {} + || die
+ find "${S}" -type f -exec chmod a+r {} + || die
+
+ cd squashfs-root || die
+
+ for f in *.so; do
+ patchelf --set-rpath '$ORIGIN' $f || die
+ done
+
+ # scanelf: rpath_security_checks(): Security problem NULL DT_RUNPATH
+ pushd resources/linux-x64/Analyzers || die
+ for f in *.so; do
+ patchelf --set-rpath '$ORIGIN' $f || die
+ done
+ popd
+
+ pushd locales || die
+ chromium_remove_language_paks
+ popd
+
+ default
+}
+
+src_configure() {
+ default
+ chromium_suid_sandbox_check_kernel_config
+}
+
+src_install() {
+ cd "${S}/squashfs-root" || die
+
+ insinto /usr/share
+ doins -r ./usr/share/icons
+
+ local -a toremove=(
+ .DirIcon
+ AppRun
+ Logic.png
+ usr/lib/libnotify.so.4
+ usr/lib/libXss.so.1
+ usr/lib/libXtst.so.6
+ )
+ rm -r "${toremove[@]}" || die
+
+ insinto /opt/Logic
+ doins -r *
+
+ fperms 4755 /opt/Logic/chrome-sandbox
+ for i in Logic chrome_crashpad_handler *.so* usr/lib/*.so*; do
+ fperms +x "/opt/Logic/${i}"
+ done
+
+ dosym -r "/opt/Logic/Logic" /usr/bin/Logic
+ domenu Logic.desktop
+}