diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-09 15:05:44 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-09 15:05:44 +0100 |
commit | fc673f93b204709bd56426d01fb497d17a231549 (patch) | |
tree | a4e35f1a0c18dd58b04ced4408e79f76c9383ffc /kde-frameworks/purpose | |
parent | kde-apps/kalarm: Drop bogus COMMON_DEPEND (diff) | |
download | gentoo-fc673f93b204709bd56426d01fb497d17a231549.tar.gz gentoo-fc673f93b204709bd56426d01fb497d17a231549.tar.bz2 gentoo-fc673f93b204709bd56426d01fb497d17a231549.zip |
kde-frameworks: Add KDE Frameworks 5.55.0
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/purpose')
-rw-r--r-- | kde-frameworks/purpose/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/purpose/purpose-5.55.0.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/kde-frameworks/purpose/Manifest b/kde-frameworks/purpose/Manifest index f6a84f28943c..ec8952b81f4b 100644 --- a/kde-frameworks/purpose/Manifest +++ b/kde-frameworks/purpose/Manifest @@ -1 +1,2 @@ DIST purpose-5.54.0.tar.xz 142684 BLAKE2B 51dd914668d05513bc325305ac6c23e083b3a18f070681db04149732362a81199fdae89f9e5b00d711a68465ba32fd0c0e41e75f2c175db266a1b07ef2be749d SHA512 548b42fee675f112dfa1d6fd8ab1c8944190417f3d27d7ebbce6826bb50bdc9c560b02c665a51d0ac5e37fcbf0778318a03bad31cae076dc6c53f2139786edbb +DIST purpose-5.55.0.tar.xz 143084 BLAKE2B f76c82872049bfbf96211470bd44d3fe6e950869d663145b5d40a820c32a3d2ea47888c6ba3360392e98541bf4848db9c973eacc4d422b6fa4013dd9607ce24d SHA512 3efcf196970751dd83a362e52ffbbcc48e21ebb029fef1c88041123772122e74157ff9c9a1550c8ab7fd95055efa0b584cfe3cb3a4ea53c221ec740f26ab17e1 diff --git a/kde-frameworks/purpose/purpose-5.55.0.ebuild b/kde-frameworks/purpose/purpose-5.55.0.ebuild new file mode 100644 index 000000000000..a7d9468222f3 --- /dev/null +++ b/kde-frameworks/purpose/purpose-5.55.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_QTHELP="false" +KDE_TEST="forceoptional" +inherit kde5 + +DESCRIPTION="Library for providing abstractions to get the developer's purposes fulfilled" +LICENSE="LGPL-2.1+" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="+kaccounts" + +DEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + kaccounts? ( + $(add_kdeapps_dep kaccounts-integration) + net-libs/accounts-qt + ) +" +RDEPEND="${DEPEND}" + +# requires running environment +RESTRICT+=" test" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package kaccounts KAccounts) + ) + + kde5_src_configure +} + +pkg_postinst(){ + kde5_pkg_postinst + + if ! has_version "kde-misc/kdeconnect[app]" ; then + elog "Optional runtime dependency:" + elog "kde-misc/kdeconnect[app] (send through KDE Connect)" + fi +} |