diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-12 14:07:27 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-12 23:09:04 +0100 |
commit | de94a25204e681fbae8e608ec7967a6ca2c2681b (patch) | |
tree | d56619cac90eebbb7a15ee23cdc05cd5cad26e57 /kde-plasma/ksshaskpass | |
parent | kde-frameworks/solid: Fix ext. optical drives media change detection (diff) | |
download | gentoo-de94a25204e681fbae8e608ec7967a6ca2c2681b.tar.gz gentoo-de94a25204e681fbae8e608ec7967a6ca2c2681b.tar.bz2 gentoo-de94a25204e681fbae8e608ec7967a6ca2c2681b.zip |
kde-plasma: Add KDE Plasma 5.17.3
Package-Manager: Portage-2.3.79, Repoman-2.3.17
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.17.3.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index 91a336e5e589..c7cea0d826e7 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1,2 +1,3 @@ DIST ksshaskpass-5.16.5.tar.xz 21416 BLAKE2B 832f4fcce536feea013ae3b71f1346e6dc6ddddc6036b000979d0860181a40f2eaf016c0ba59ac1fac929eabeed51a494fa55f8da062d58c27bf9cc711787f72 SHA512 b2ca1245ca55fce2fdd722b5b318bf137efffb9d6ee8ece30706cc369b51e1943f738cd95be29a01fd74e184175f4ce0d6fefdc58a2a621d80358dbfe293cfb9 DIST ksshaskpass-5.17.2.tar.xz 21500 BLAKE2B 964633fa8d75f09a6022c927bc68d8dda7da7b803b97eed8134dde528b7e4e9f9c1c930f8a1ffa37baccae6c796188a3e5204ed3e4b230f3c4ae7f610814182a SHA512 8f3d981a2098426f1e4a23e9caa229eae176bcd236012c8e97a58249970c4ed92496d6d5c65fc95e40e2d9254911fce637710fb317a74613c0b0b0c97f902c1a +DIST ksshaskpass-5.17.3.tar.xz 21188 BLAKE2B d6c91a88b1030608816aab70597af840a2eb134e953582d03869e2e0d8ea3aa687dc1fd5b09b8bc48f997614ef0c2c4f34948b593314233550a584e1983946d3 SHA512 e9c375d321938c2f04f6338ca2ea4776b4747029ec812dc270b8e17dd20cf2be15d511b12e7330226736089227d400d2ee23a977566b3e732008c1ad7cea4ebf diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.17.3.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.17.3.ebuild new file mode 100644 index 000000000000..4709b97d6146 --- /dev/null +++ b/kde-plasma/ksshaskpass/ksshaskpass-5.17.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KFMIN=5.64.0 +PVCUT=$(ver_cut 1-3) +QTMIN=5.12.3 +inherit ecm kde.org + +DESCRIPTION="KDE implementation of ssh-askpass with Kwallet integration" +HOMEPAGE="https://cgit.kde.org/ksshaskpass.git" +LICENSE="GPL-2" # TODO: CHECK +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +DEPEND=" + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kwallet-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}: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 "${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 + elog "/etc/xdg/plasma-workspace/env/05-ksshaskpass.sh (ATTN: Path moved!)" + elog + elog "In order to have ssh-agent start with Plasma 5, do the following:" + elog " * Copy the necessary files to your home directory:" + elog " - cp /etc/plasma/startup/10-agent-startup.sh ~/.config/plasma-workspace/env/" + elog " - cp /etc/plasma/shutdown/10-agent-shutdown.sh ~/.config/plasma-workspace/shutdown/" + elog " * Edit 10-agent-startup.sh and uncomment the lines enabling ssh-agent." + elog " * In 10-agent-shutdown.sh uncomment the respective lines to properly kill" + elog " the agent when the session ends." +} |