diff options
author | Johannes Huber <johu@gentoo.org> | 2016-05-18 15:42:18 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2016-05-18 16:03:33 +0200 |
commit | 66ef0203d4c540eb29b88a9ca47a71d54d5fa2dd (patch) | |
tree | 5096e0b3a3b9501276d23ccbdefa39f613d758d5 /kde-apps/ktp-accounts-kcm | |
parent | app-misc/tmux: Add 2.1-r1 and ship terminfo file. (diff) | |
download | gentoo-66ef0203d4c540eb29b88a9ca47a71d54d5fa2dd.tar.gz gentoo-66ef0203d4c540eb29b88a9ca47a71d54d5fa2dd.tar.bz2 gentoo-66ef0203d4c540eb29b88a9ca47a71d54d5fa2dd.zip |
kde-apps: Version bump KDE Applications 16.04.1
Except KDE PIM which is not ready for production yet, which is available
(masked) in kde overlay.
Package-Manager: portage-2.3.0_rc1
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-16.04.1.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/kde-apps/ktp-accounts-kcm/Manifest b/kde-apps/ktp-accounts-kcm/Manifest index 91b64b41de7c..ff073783a6fb 100644 --- a/kde-apps/ktp-accounts-kcm/Manifest +++ b/kde-apps/ktp-accounts-kcm/Manifest @@ -1,2 +1,3 @@ DIST ktp-accounts-kcm-0.9.0.tar.bz2 264892 SHA256 b9d7cf3b2a8f99e50ba60fec039b107f3049df41e44787683dbc346d08c37de7 SHA512 fadc424be1a462d3f84e1845e02467880214345a6f47b79036cce48ac60454abf3c449026e4b830628848d8e7744d628e61877817dfe7ac9f1f80b6913823bc8 WHIRLPOOL d6945ed15d9a0b4df5819a8de35f09cb650d70ce74622bbdcb774984e295e645128a2af0ccd2ce6dda077f198b748508f1f52d1781696878d54dbdc8795f4fc8 DIST ktp-accounts-kcm-15.12.3.tar.xz 89012 SHA256 fab487ae001bd07cc8f4941e0aa1cea72e3472396c19aab91072dfc5ffcdd7ff SHA512 71acb011722f9cd793163acec2f52b174de26939c924d03c0e714865fe238877d35c26e0e3a1bd30efbc73e083e2a7d37e9bd137384d4c09d7f4fea0ee3ed460 WHIRLPOOL 7ab93e04bc8ef6c62b6c29052073117de8ab5332ae5590414b21736622e4989512660f436fb64a0b9e3b0d25c7fa847fc5d28d4dd5e7e8486eabf6c37fd429d3 +DIST ktp-accounts-kcm-16.04.1.tar.xz 89056 SHA256 6dce9fb0a743ef6bf4a8dfea2bb4ff255dd678bd88fa4a61d10fe3a7d0a40660 SHA512 9ee94a281a853d515bde399cba89d71ed1294f36296b017157daf3a70e33f15827467b50561e449858d2c4163cc7556e3ac5e9e713fa48eb3ab78e32fa5c13bc WHIRLPOOL 2aebfcca0e1706d40bbb343c6f94690245e9b4fb16d855db0955d2a2fa28c5c35bfe0daf4f95aa474cf9bc8180c1ed3a0990853a7d0861323277209e57d605ee diff --git a/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-16.04.1.ebuild b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-16.04.1.ebuild new file mode 100644 index 000000000000..6f38e6425825 --- /dev/null +++ b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-16.04.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 + !kde-apps/ktp-accounts-kcm:4 +" + +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 +} |