summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-07-03 12:51:13 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-07-03 12:55:08 +0200
commita76abf47ec66858dde347079afa915589b44b7bb (patch)
tree9681d4d56bc37c200495f2716d28b40eeee25ffb /kde-plasma/ksshaskpass
parentprofiles: arm: Add plasma-meta[browser-integration] to p.use.mask (diff)
downloadgentoo-a76abf47ec66858dde347079afa915589b44b7bb.tar.gz
gentoo-a76abf47ec66858dde347079afa915589b44b7bb.tar.bz2
gentoo-a76abf47ec66858dde347079afa915589b44b7bb.zip
kde-plasma: Add KDE Plasma 5.13.2
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'kde-plasma/ksshaskpass')
-rw-r--r--kde-plasma/ksshaskpass/Manifest1
-rw-r--r--kde-plasma/ksshaskpass/ksshaskpass-5.13.2.ebuild49
2 files changed, 50 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest
index f992acb8bb43..537f1396d222 100644
--- a/kde-plasma/ksshaskpass/Manifest
+++ b/kde-plasma/ksshaskpass/Manifest
@@ -1,2 +1,3 @@
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.2.tar.xz 21204 BLAKE2B 6cbe6a2feebae2439f454a2a15c2addfd82023868ef3f11c90a561a553f4d60aad0426d5590f358ceeaa289bd1c006e4da028b7b1674a65a5693dc634cf0abd2 SHA512 dbf9dc67abf3ec6b490f7103f78882db895edcae0ccb6d34c44db78436b184c12b50b6ebda8338e8d7c76c5939f04022367a99feae4fb75a1651118e44f6bd00
diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.13.2.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.13.2.ebuild
new file mode 100644
index 000000000000..3009c8d5ff69
--- /dev/null
+++ b/kde-plasma/ksshaskpass/ksshaskpass-5.13.2.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 ""
+}