diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-03-08 19:04:08 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-03-08 19:04:39 +0100 |
commit | d7443e05892e21953f2476002a87f3c0213706bb (patch) | |
tree | bdc943e4106bc2c6f20218650cf96563b88f1827 /kde-apps/ktp-accounts-kcm | |
parent | sys-fs/zfs: drop old (diff) | |
download | gentoo-d7443e05892e21953f2476002a87f3c0213706bb.tar.gz gentoo-d7443e05892e21953f2476002a87f3c0213706bb.tar.bz2 gentoo-d7443e05892e21953f2476002a87f3c0213706bb.zip |
kde-apps: Add KDE Applications 17.12.3
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'kde-apps/ktp-accounts-kcm')
-rw-r--r-- | kde-apps/ktp-accounts-kcm/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-17.12.3.ebuild | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/kde-apps/ktp-accounts-kcm/Manifest b/kde-apps/ktp-accounts-kcm/Manifest index 267541c83e23..00d32222ad38 100644 --- a/kde-apps/ktp-accounts-kcm/Manifest +++ b/kde-apps/ktp-accounts-kcm/Manifest @@ -1,2 +1,3 @@ DIST ktp-accounts-kcm-17.08.3.tar.xz 262952 BLAKE2B fe6230d7cb739c26194a2ef05493aed1bc4ed7c298b1fd143701fc564619e2b872162eb30d827e7e795ef20c15f1253b8a177e8efc6c5c144b53c12487c5cfa9 SHA512 a621cc83c7dd3827af55ab5abc486ce34af9281e194fea80489acb4b2c4060f1686433b974c56e333368b79284421acf556f28e0f4035d6fc1ca1612bc155454 DIST ktp-accounts-kcm-17.12.2.tar.xz 262772 BLAKE2B 9072ae171f6e66466962c8b5e7f458f3ea2f371b0fed6f136f6004a725b94a5400349bfa85480c79b3668f7d64c7c5e84f89db39f3e9c72413888d953e4f59f6 SHA512 890f05eae2c405c887158d77eda5a8dfcbc9842c8273abc2d2ee53f4a7a4d0fa59986c33fdf0a593d92e8da4ad9d7ab8a61a6b5f7c100608d99bbf113ae89940 +DIST ktp-accounts-kcm-17.12.3.tar.xz 262800 BLAKE2B 63db8496c2a21114ade346ae060b1ecea49faf8df101cc6ecb465ef0c5b856d54f6240dd7900f0917fb9729182b32c376634e6fdf29cd94c5e2d66e4d768fce5 SHA512 5cb33357fa974e383a288f7af4785b9d18e35445130a01a3062e127be4f01039a4f65e894cfc5fe2f0002cd8bd837b066be03e5e19f4fed89a8a0bef5436f43c diff --git a/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-17.12.3.ebuild b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-17.12.3.ebuild new file mode 100644 index 000000000000..0bd40b4ef69c --- /dev/null +++ b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-17.12.3.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit kde5 + +DESCRIPTION="KDE Telepathy account management kcm" +HOMEPAGE="https://community.kde.org/Real-Time_Communication_and_Collaboration" + +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~x86" +IUSE="experimental" + +COMMON_DEPEND=" + $(add_frameworks_dep kcodecs) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_kdeapps_dep kaccounts-integration) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + net-libs/accounts-qt + net-libs/signond + net-libs/telepathy-qt[qt5(+)] +" +DEPEND="${COMMON_DEPEND} + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kio) + net-libs/libaccounts-glib +" +RDEPEND="${COMMON_DEPEND} + $(add_kdeapps_dep kaccounts-providers) + net-im/telepathy-connection-managers +" + +src_prepare() { + if use experimental; then + mv "${S}"/data/kaccounts/disabled/*.in "${S}"/data/kaccounts/ || die "couldn't enable experimental services" + fi + kde5_src_prepare +} + +pkg_postinst() { + if use experimental; then + ewarn "Experimental providers are enabled." + ewarn "Most of them aren't integrated nicely and may require additional steps for account creation." + ewarn "Use at your own risk!" + fi +} |