diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-11 00:21:01 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-11 10:19:23 +0200 |
commit | 832934f31e45d450d2eaee2a9ebd501303303c43 (patch) | |
tree | 26ddfbcde55dc86490c71053a6813be8c3a8c212 /kde-frameworks/purpose | |
parent | media-gfx/digikam: Drop 6.1.0 (diff) | |
download | gentoo-832934f31e45d450d2eaee2a9ebd501303303c43.tar.gz gentoo-832934f31e45d450d2eaee2a9ebd501303303c43.tar.bz2 gentoo-832934f31e45d450d2eaee2a9ebd501303303c43.zip |
kde-frameworks: Add KDE Frameworks 5.61.0
Package-Manager: Portage-2.3.71, Repoman-2.3.17
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.61.0.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/kde-frameworks/purpose/Manifest b/kde-frameworks/purpose/Manifest index f105592c0c8f..d51aaa2096b1 100644 --- a/kde-frameworks/purpose/Manifest +++ b/kde-frameworks/purpose/Manifest @@ -1 +1,2 @@ DIST purpose-5.60.0.tar.xz 147472 BLAKE2B c29506d7d1cb4adb09705b40e10ff4459c8c9dca68667f9c64aa4268fa202fcc949703d6855148e9c8934135b25990de84f68e0942c5e7050322a3623e05dc55 SHA512 0d26fb1b8d0d50843da036a1f6f789ae2457afb9ab449d45be35fca79712b6d8a7974faa89bc5f6605dd8b738bb1011a6cd8d294dfdf118339f784083808d3af +DIST purpose-5.61.0.tar.xz 149240 BLAKE2B e6bdb2246e913efe1f367bb85f2b8fc4de17a8c6e8dcd2d0683d8654bf55703b9be879e38ee2c60f140f3ea88556fe1b2389ab44a693c236d005b4727fc852b0 SHA512 75ea323538df7114fded44a95d5772ccaecf375e2f6f888b30619ec5f1427ba437af2f10aef25d22ebb276086ba359d45442e02ace47d5448fc0ce533b09daa9 diff --git a/kde-frameworks/purpose/purpose-5.61.0.ebuild b/kde-frameworks/purpose/purpose-5.61.0.ebuild new file mode 100644 index 000000000000..9fb40862382b --- /dev/null +++ b/kde-frameworks/purpose/purpose-5.61.0.ebuild @@ -0,0 +1,49 @@ +# 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 ~arm64 ~x86" +IUSE="+kaccounts" + +DEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kirigami) + $(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 +} |