diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-25 15:52:30 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-25 16:52:15 +0200 |
commit | 8d1d62c64b66bfce3107bc20b3cedf8e189bac82 (patch) | |
tree | 87be3b570a957c50e3f8972c0e2ec6fda11ccfc3 /kde-plasma/kdeplasma-addons | |
parent | net-misc/smb4k: Drop 3.0.0-r1 (diff) | |
download | gentoo-8d1d62c64b66bfce3107bc20b3cedf8e189bac82.tar.gz gentoo-8d1d62c64b66bfce3107bc20b3cedf8e189bac82.tar.bz2 gentoo-8d1d62c64b66bfce3107bc20b3cedf8e189bac82.zip |
kde-plasma: Add KDE Plasma 5.16.2
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/kdeplasma-addons')
-rw-r--r-- | kde-plasma/kdeplasma-addons/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/kdeplasma-addons/kdeplasma-addons-5.16.2.ebuild | 57 |
2 files changed, 58 insertions, 0 deletions
diff --git a/kde-plasma/kdeplasma-addons/Manifest b/kde-plasma/kdeplasma-addons/Manifest index 9a07ee71f3ce..ac624b09a1aa 100644 --- a/kde-plasma/kdeplasma-addons/Manifest +++ b/kde-plasma/kdeplasma-addons/Manifest @@ -1,2 +1,3 @@ DIST kdeplasma-addons-5.15.5.tar.xz 604584 BLAKE2B aab24f3f8fee18f4e54a7fdf4edbe35923bf96751f27a656d60b141987174f257ae19b77301dc9b77999ef0f8c439cc3cf71be75a2d4a0b9623e2d23e9ec66d7 SHA512 cc0dff694c71645072c6a56bedaa9067a4947906e5167cd55012868a1554beaa5278d2e4f41092be784c8cd9290c03b807f6622a24941dc0b0f733442355fc80 DIST kdeplasma-addons-5.16.1.tar.xz 594404 BLAKE2B 0cd9c3467a560947db6ccaceba6ac106b003302db678ec457056ac614a16201958321b858fae4ad4b39e6307390f1e9f1c2c84326d8d8d1f06250eb77ea396d6 SHA512 c59ea5a663197464399197c77d8917f5a5c0004217dd287895409ea2b86140d7d8f7c78cc04ace5952abb27fd91038a6baeefb748db937871e38c2016f87ed2f +DIST kdeplasma-addons-5.16.2.tar.xz 594420 BLAKE2B d29d430350de21cf389a294b3e0f15e696c07d4dcc8354ce04427e8adc5a1a9eee67f07548fb33f8b711eae70e481960d2f1a15c95f924b2417afc3ac471ebda SHA512 7ee85d1fd9372da7168fbd99a291a5dc116049dd7113a40964756dcc8d3f3345eb9c85e46f128df10b3128365db727895cf70596b4359e5a2a3502bf20ad1bdd diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.16.2.ebuild b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.16.2.ebuild new file mode 100644 index 000000000000..0d8ba38af27c --- /dev/null +++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.16.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kde5 + +DESCRIPTION="Extra Plasma applets and engines" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="share webengine" + +DEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdeclarative) + $(add_frameworks_dep kholidays) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kpackage) + $(add_frameworks_dep kross) + $(add_frameworks_dep krunner) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kunitconversion) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + $(add_frameworks_dep plasma) + $(add_frameworks_dep sonnet) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + share? ( $(add_frameworks_dep purpose) ) + webengine? ( $(add_qt_dep qtwebengine) ) +" +RDEPEND="${DEPEND} + $(add_plasma_dep plasma-workspace) + $(add_qt_dep qtquickcontrols) + $(add_qt_dep qtquickcontrols2) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package share KF5Purpose) + $(cmake-utils_use_find_package webengine Qt5WebEngine) + ) + + kde5_src_configure +} |