diff options
author | Johannes Huber <johu@gentoo.org> | 2016-03-29 22:15:32 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2016-03-29 22:19:20 +0200 |
commit | 30cab995774241d564efbb4df148c3a636172b9a (patch) | |
tree | fcfa560b8a2507a749b322260a7a8e5aa33c0c13 /kde-plasma/ksshaskpass | |
parent | www-client/google-chrome-unstable: automated update (diff) | |
download | gentoo-30cab995774241d564efbb4df148c3a636172b9a.tar.gz gentoo-30cab995774241d564efbb4df148c3a636172b9a.tar.bz2 gentoo-30cab995774241d564efbb4df148c3a636172b9a.zip |
kde-plasma: Version bump KDE Plasma 5.6.1
Package-Manager: portage-2.2.28
Diffstat (limited to 'kde-plasma/ksshaskpass')
-rw-r--r-- | kde-plasma/ksshaskpass/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/ksshaskpass/ksshaskpass-5.6.1.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index a9562699d25b..58dd4e109fbf 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1 +1,2 @@ DIST ksshaskpass-5.5.5.tar.xz 20556 SHA256 8a5c48f50c4449e39dc312ca5d3dc8cec466d2fc6ad4602adf0d41ee3828fc6b SHA512 48018fe6c42e15c5338cba280f05215c6b3e0e9f015641b377f8ab0c00e6e2898e5fb9e463ac044485268378c0f0a6d6d43c4829881fbd9825c4e4dbe0dc8c1a WHIRLPOOL 5fedc473d93f5ffe66c06daff739a096306ba05e3f86c122529514a6786987d950b397f47f988a431cdb67bce2fb61a472f979bb8a7118164056ba561724148a +DIST ksshaskpass-5.6.1.tar.xz 24804 SHA256 9797045a29276c06ffc8f50e3fb688b96322fd59fa6286ef7b83077969be5937 SHA512 106bd5ee0256eb7e300ff57cff51be8c10c3acafe8f11a0f7dc22b9387e7d7f2fbde39fa3d4c2037b7d6ddf00a53026d3588102b9aff7ed3c137ecd4f86d6ce3 WHIRLPOOL a1c46d4d8c7d31958234e7e66c301f8c8761911c214ac2e814a39bdf883018eb0edecd93bcaa1f2b7bfeda3f6f4fb28f473e8b07f15454f46b6688283a0e3c73 diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.6.1.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.6.1.ebuild new file mode 100644 index 000000000000..ed1fdbac0d72 --- /dev/null +++ b/kde-plasma/ksshaskpass/ksshaskpass-5.6.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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} + !net-misc/ksshaskpass +" + +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 "" +} |