diff --git a/app-crypt/yubioath-flutter-bin/Manifest b/app-crypt/yubioath-flutter-bin/Manifest index 9afd8082f6798..42e2fe6b700b6 100644 --- a/app-crypt/yubioath-flutter-bin/Manifest +++ b/app-crypt/yubioath-flutter-bin/Manifest @@ -1 +1,2 @@ DIST yubico-authenticator-7.3.3-linux.tar.gz 68178749 BLAKE2B cf316d3b17c255e49befbb4584e4219accab1ed65c9d7d4647e5b39cf46b5d74baa523a16ce159512326ff99e0aad4928eed8be6681a36efcbc7ac70f7b0ba85 SHA512 258cd49c60eaa1763456824576f7f5867611651920f13f42270e529ddf2b111326d8fc18c0cbe6df571162746cf0cad31b44dc712e81b6d6d04ece76fba93481 +DIST yubico-authenticator-7.4.1-linux.tar.gz 60685155 BLAKE2B 1fc3513415fbf8a696be17efc952d7a5b48de6845a0e56cb3e3ba5cea3babbad37468ca3ed1f5691c18f1ef78f557cd9572f8deb82ef56cf198b7acba424c7a0 SHA512 5faf24c3e4c5237fa7cd2b85e114e028b5602da187394e5e84ffa06ffb90eea77b6bc5c59a8facc860e0721628a21c310b0189b45a191012eb75944a8eeaac1a diff --git a/app-crypt/yubioath-flutter-bin/yubioath-flutter-bin-7.4.1.ebuild b/app-crypt/yubioath-flutter-bin/yubioath-flutter-bin-7.4.1.ebuild new file mode 100644 index 0000000000000..df887d85ff23f --- /dev/null +++ b/app-crypt/yubioath-flutter-bin/yubioath-flutter-bin-7.4.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop xdg + +DESCRIPTION="Yubico Authenticator for TOTP" +HOMEPAGE=" + https://developers.yubico.com/yubioath-flutter/ + https://github.com/Yubico/yubioath-flutter" +SRC_URI="https://github.com/Yubico/yubioath-flutter/releases/download/${PV}/yubico-authenticator-${PV}-linux.tar.gz" +S="${WORKDIR}/yubico-authenticator-${PV}-linux" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + app-accessibility/at-spi2-core:2 + app-crypt/ccid + dev-libs/glib:2 + media-libs/fontconfig + media-libs/harfbuzz + media-libs/libepoxy + sys-libs/glibc + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3[X,wayland] + x11-libs/libnotify + x11-libs/libxcb + x11-libs/pango" +BDEPEND="app-admin/chrpath" + +# "Modern" app, built using Google's flutter framework. +# +# Don't even *think* about unbundling the dependencies, they're all +# hardcoded into the main binary and the helper, including but not +# limited to a full-fledged python interpreter that gets dlopen'd, an +# assortment of python packages, the X11 kitchen sink, random GCC +# libraries, and OpenSSL 1.1, oftentimes using git checkouts instead of +# released versioned libraries. +# +# The only way to avoid this mess would be to build flutter from source, +# but unfortunately life is too short to be dealing with whatever is +# Google's framework-de-jour on a regular basis. +QA_PREBUILT="opt/yubico-authenticator/*" + +src_install() { + einstalldocs + rm -r README* || die + + sed -e 's|@EXEC_PATH/authenticator|authenticator|' \ + -e 's|@EXEC_PATH/linux_support/com.yubico.yubioath.png|com.yubico.yubioath|g' \ + -i linux_support/com.yubico.yubioath.desktop || die + domenu linux_support/com.yubico.yubioath.desktop + doicon -s 128 linux_support/com.yubico.yubioath.png + rm -r linux_support || die + + exeinto /opt/yubico-authenticator + doexe authenticator + rm authenticator || die + + exeinto /opt/yubico-authenticator/helper + doexe helper/authenticator-helper + rm helper/authenticator-helper || die + + # prevent rpath_security_checks() trigger + chrpath -d helper/_internal/libjpeg-*.so* helper/_internal/pillow.libs/libjpeg-*.so* || die + + insinto /opt/yubico-authenticator + doins -r . + + dosym ../../opt/yubico-authenticator/authenticator /usr/bin/authenticator +} + +pkg_postinst() { + xdg_pkg_postinst + + elog "Make sure you are a member of the pcscd group" + elog "and the pcscd service is running." +}