diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-08 12:48:51 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-08 13:28:34 +0100 |
commit | 4596f01b1eeebf3ee9cb8ec94f694191e4150c0b (patch) | |
tree | 0ea2e0348c592fa6fb772ef4d664ee944481630f /kde-apps/ktp-accounts-kcm | |
parent | dev-libs/rasqal: Fix typo (diff) | |
download | gentoo-4596f01b1eeebf3ee9cb8ec94f694191e4150c0b.tar.gz gentoo-4596f01b1eeebf3ee9cb8ec94f694191e4150c0b.tar.bz2 gentoo-4596f01b1eeebf3ee9cb8ec94f694191e4150c0b.zip |
kde-apps: Add KDE Applications 18.08.3
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
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-18.08.3.ebuild | 59 |
2 files changed, 60 insertions, 0 deletions
diff --git a/kde-apps/ktp-accounts-kcm/Manifest b/kde-apps/ktp-accounts-kcm/Manifest index 2a771a33f57e..11fe78177092 100644 --- a/kde-apps/ktp-accounts-kcm/Manifest +++ b/kde-apps/ktp-accounts-kcm/Manifest @@ -1,2 +1,3 @@ DIST ktp-accounts-kcm-18.04.3.tar.xz 264164 BLAKE2B 39f51d40b275b72e4ed3e38bb317fd9e3ede37c8fa1991c30b412938fb835dade8ff33c51256e3fd5cde4d325f780909f3d11d93420c21b3e20a4d1579c4dcb6 SHA512 410b9cc74abdb11287d633a7188970e7e12c21797da19e2a5595057c00e3311d916e3321475309cdad6492ae2bc6404439bc78b0e83d53702fa39dbdd7c39de7 DIST ktp-accounts-kcm-18.08.2.tar.xz 264216 BLAKE2B 11a07ee9b5e6daa89ebddee6caebdfb6fc0d73a254e30e390139a6e9ed371072145fded9d3b4c43a84bae64f262747d269af2b42535ed158e32d4342d0d2230e SHA512 a7b135404c2a77fc29b281aa914fb953fa92c94db7572d6430247f93d9f03e3a8c3964a6358cca881553ef1851f49165a055a6ae03239be6740d287700aa2060 +DIST ktp-accounts-kcm-18.08.3.tar.xz 264276 BLAKE2B 437b13856295370b630341f0dc7b0d2cf547026a6ac73794861aa4ad9ec87eee00df26162c07f920817743c50bef34e71e28092797058adbc8cf887bd894465b SHA512 76ceadf72dc1dc6e9265fb5976e4123e20863fa470cc1dc1c1537a1ba664699b69e9e3b1ff88708859d194b9033ae963e619b1f571e680d1ef758bbe63ce8d98 diff --git a/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-18.08.3.ebuild b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-18.08.3.ebuild new file mode 100644 index 000000000000..3aef765d210e --- /dev/null +++ b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-18.08.3.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2018 Gentoo Authors +# 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) + dev-util/intltool + 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 +} |