diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-08-22 23:21:21 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-08-22 23:28:37 +0200 |
commit | d1d7cdcae224154eede1ee6944f145946f1eff60 (patch) | |
tree | 12065a681fe2484b97689eba69518b952b0c93e4 /kde-plasma/ksshaskpass | |
parent | app-doc/php-docs: [QA] Use relative symlink target(s) (diff) | |
download | gentoo-d1d7cdcae224154eede1ee6944f145946f1eff60.tar.gz gentoo-d1d7cdcae224154eede1ee6944f145946f1eff60.tar.bz2 gentoo-d1d7cdcae224154eede1ee6944f145946f1eff60.zip |
kde-plasma: Add KDE Plasma 5.10.5
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'kde-plasma/ksshaskpass')
-rw-r--r-- | kde-plasma/ksshaskpass/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/ksshaskpass/ksshaskpass-5.10.5.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index c42728179152..bf0b4663a801 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1 +1,2 @@ DIST ksshaskpass-5.10.4.tar.xz 20384 SHA256 4e8aa2a2566fb34652ffb37a87649b1284b9ba2c8b509e20f127a70902bfe6db SHA512 560e99263d82a20962f5ef747e95db085f92c018e4cc381c43365c206a5a82b33f50f1d1067dd0f99ffff1af25b068283529b8d86dacfc6b918bc8e114af49c6 WHIRLPOOL 6425123ff7dc4fe0bf9af835c9bb9a206a224cece9b40a2631ab9d19551a3f939defd73edefbb3d6f3a7a18bd65780a85fda12f9d39aaa4cf0020654f6ebc58c +DIST ksshaskpass-5.10.5.tar.xz 20316 SHA256 5c4a166ca5d6a9d99f91c8640121f02db2002a1480b299e47995533651508ca4 SHA512 bf55ea1b5b79b43d1720c32bbd569aabdde1516d818de3ab567de95736e967327a58055e1e4f73c895c90b35b8149ecc4e736c9b067a05a13852ae4579d0cd6b WHIRLPOOL 16ae562fc0016d40b73aa7924226af816f2ec38b649eb09d3e70239dcfbdd41e435a3646fa292f64d1224f1a5d1ea9fdf5849f991cafc052f35c993d820f3021 diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.10.5.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.10.5.ebuild new file mode 100644 index 000000000000..468b1b597c06 --- /dev/null +++ b/kde-plasma/ksshaskpass/ksshaskpass-5.10.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit kde5 + +DESCRIPTION="KDE implementation of ssh-askpass with Kwallet integration" +HOMEPAGE="https://projects.kde.org/projects/kde/workspace/ksshaskpass" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kwallet) + $(add_frameworks_dep kwidgetsaddons) + $(add_qt_dep qtwidgets) +" +RDEPEND=" + ${DEPEND} + !kde-plasma/ksshaskpass:4 +" + +src_install() { + kde5_src_install + + insinto /etc/plasma/startup + doins "${FILESDIR}/05-ksshaskpass.sh" +} + +pkg_postinst() { + kde5_pkg_postinst + + elog "" + elog "In order to have ssh-agent start at kde startup," + elog "edit /etc/plasma/startup/10-agent-startup.sh and uncomment" + elog "the lines enabling ssh-agent." + elog + elog "If you do so, do not forget to uncomment the respective" + elog "lines in /etc/plasma/shutdown/10-agent-shutdown.sh to" + elog "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/plasma/startup/05-ksshaskpass.sh" + elog "" +} |