diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-11-08 16:55:20 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-11-08 16:55:20 +0100 |
commit | b70533e34fddb212abe94b5afe2d7682005b5564 (patch) | |
tree | 4652997b855a0f4c131c06ffc84c0a1b327a91c3 /kde-plasma/ksshaskpass | |
parent | kde-plasma/kscreenlocker: 5.26.3 version bump (diff) | |
download | gentoo-b70533e34fddb212abe94b5afe2d7682005b5564.tar.gz gentoo-b70533e34fddb212abe94b5afe2d7682005b5564.tar.bz2 gentoo-b70533e34fddb212abe94b5afe2d7682005b5564.zip |
kde-plasma/ksshaskpass: 5.26.3 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/ksshaskpass')
-rw-r--r-- | kde-plasma/ksshaskpass/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/ksshaskpass/ksshaskpass-5.26.3.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index 9e5abea139b1..f92468739660 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1,2 +1,3 @@ DIST ksshaskpass-5.25.5.tar.xz 24904 BLAKE2B eac317c2c0658ade7607fdc73298f07312ac336e5fb4d69161a4c9c6d886c5b778858a26f8477a230068fe9d302097e34841b1c0c0e81809fea4ac63696f20f4 SHA512 ac055caca9c4bcfc6fa40d2eb54bbc72bbbd3b825bc8e831e8f1ec4fc089f334b70a9ba796901ce2c14b565e8519994655c0d32455ef90a1448e1ffdfaaf1c79 DIST ksshaskpass-5.26.2.tar.xz 27540 BLAKE2B 89b357ee6bb15c18561bbde0c7d217d9565b0e11ff5dc6e065158854d9aeac7cc12d26aa6a86adbd735dd2f1429c5178086e288bfd6210922523aed76b3d425a SHA512 12a9baa770a8a5cbb1a65308b74054aeaa25c0b080f0f27ea79952f0687efc9bbcc75b29d44b9059584758204c8286e6dc7e1a937b5aa4035d4062cec8f6ea70 +DIST ksshaskpass-5.26.3.tar.xz 27484 BLAKE2B 43a1226c2b07d7749653aaaa4890c28766861bc33eabce5c9d57c8986b3a3868c83b32f17cf167514d5cc763961deaf17683554e30e07aa79e96d69e92f7d1c9 SHA512 2907d2b5d13de14c91fe88997d905e083d9a2c25b45167abbe1bf08f882cfff7eaff670143e51a0e9c0439e5ebd865f2cfd75077fb0f7cdc7fd4280f21b0a7a1 diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.26.3.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.26.3.ebuild new file mode 100644 index 000000000000..1c06e19e31c4 --- /dev/null +++ b/kde-plasma/ksshaskpass/ksshaskpass-5.26.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KFMIN=5.99.0 +QTMIN=5.15.5 +inherit ecm plasma.kde.org + +DESCRIPTION="Implementation of ssh-askpass with KDE Wallet integration" +HOMEPAGE+=" https://invent.kde.org/plasma/ksshaskpass" + +LICENSE="GPL-2" # TODO: CHECK +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv" +IUSE="" + +DEPEND=" + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kwallet-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 +" +RDEPEND="${DEPEND}" + +src_install() { + ecm_src_install + + insinto /etc/xdg/plasma-workspace/env/ + doins "${FILESDIR}/05-ksshaskpass.sh" +} + +pkg_postinst() { + ecm_pkg_postinst + + elog "In order to have ssh-agent start with Plasma 5," + elog "edit /etc/xdg/plasma-workspace/env/10-agent-startup.sh" + elog "and uncomment the lines enabling ssh-agent." + elog + elog "If you do so, do not forget to uncomment the respective" + elog "lines in /etc/xdg/plasma-workspace/shutdown/10-agent-shutdown.sh" + elog "to properly kill the agent when the session ends." + elog + elog "${PN} has been installed as your default askpass application" + elog "for Plasma 5 sessions." + elog "If that's not desired, select the one you want to use in" + elog "/etc/xdg/plasma-workspace/env/05-ksshaskpass.sh" + + # Clean up pre-5.17.4 dirs + rmdir -v "${EROOT}"/etc/plasma{/startup,} 2> /dev/null +} |