diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-09-04 13:19:53 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-09-04 14:25:46 +0200 |
commit | e152ffd98793f16b489bbba958bbdc549f3b64b1 (patch) | |
tree | dec57cba5f4c711e2b59aa2cb05f5b665d8e558a /kde-plasma/ksshaskpass | |
parent | app-i18n/ibus-table: new upstream release (diff) | |
download | gentoo-e152ffd98793f16b489bbba958bbdc549f3b64b1.tar.gz gentoo-e152ffd98793f16b489bbba958bbdc549f3b64b1.tar.bz2 gentoo-e152ffd98793f16b489bbba958bbdc549f3b64b1.zip |
kde-plasma: Add KDE Plasma 5.13.5
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'kde-plasma/ksshaskpass')
-rw-r--r-- | kde-plasma/ksshaskpass/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/ksshaskpass/ksshaskpass-5.13.5.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index 2ff696be90da..cd2c8598259a 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1,3 +1,4 @@ DIST ksshaskpass-5.12.5.tar.xz 21200 BLAKE2B 70d134502538dc5aed5ff8d65a1b5c3c3f9e714f849e9cd9b66f43b170db4ea4e23c2a011ad2dec81d05bc26090e64453b592a5677969a2b3ed812e7d1459f4a SHA512 4e798ac709d656104cddcb637aaf352c3f55660256f7edecd2caa6c78cb2ccba065c1c9e17e39a14fab72ca760c18b729035598fc6f9055fa1a6d6b9fe6ea453 DIST ksshaskpass-5.12.6.tar.xz 21264 BLAKE2B 41c0d67308041c5eaf40c925e303f7ae5f1d0c0aaf654df18bc45c30e9d444ec950323a356ae60d98581a5e2670cec79d672b843e040539fa0d0543cd7775887 SHA512 d01ab87ba927e4e46f84ace3cec09431148fb0312cda2bd8972d185fbd3408525f01d90ade9865b481b19486c75ecb13cef47fbe2f41a37fdbc99b502a3b7433 DIST ksshaskpass-5.13.4.tar.xz 21460 BLAKE2B 62d383ddeeb22e8806a1fb54c791cd7634c83d83daba7e4d9fb99d02234ada73e277222327d9fe981ad715e6f51573a95fb69e8246dd490efd7fe5de72a88e09 SHA512 1572e60bc3e748009f591227147da479909835a408b19bfd1d7d46be452d461d94e583a53eafd1241be90be2faa86852268cd5d109420877eaff4d055d10b402 +DIST ksshaskpass-5.13.5.tar.xz 21408 BLAKE2B f69798427ca5e4681543580158fc0ded5c4c3d352e31476cbc7832e99844cd30d8134785c460900724fdbd922ef526974dfc28d76ef89369ac309bcbf495e334 SHA512 88712a268710bac6c60bb111d79bf52f5b34e0a7e0f27ea1affb32bc1a18925998a5040e1b96907e4e1648304706ca2c3c2815d98b7807d972fbf8f57f285e96 diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.13.5.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.13.5.ebuild new file mode 100644 index 000000000000..3009c8d5ff69 --- /dev/null +++ b/kde-plasma/ksshaskpass/ksshaskpass-5.13.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2018 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://cgit.kde.org/ksshaskpass.git" +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 "" +} |