summaryrefslogtreecommitdiff
path: root/kde-frameworks/frameworkintegration
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-07-03 07:39:26 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2017-07-03 07:39:26 +0200
commitab4b9bcd507fdbb460bcef22f9f10a278392df0e (patch)
treeee5b936fdc55ce9a1c275f032de92ca4f5a5280c /kde-frameworks/frameworkintegration
parent2294b662607b70ee8a4e919124bc529df0328475 (diff)
downloadkde-ab4b9bcd507fdbb460bcef22f9f10a278392df0e.tar.gz
kde-ab4b9bcd507fdbb460bcef22f9f10a278392df0e.tar.bz2
kde-ab4b9bcd507fdbb460bcef22f9f10a278392df0e.zip
kde-frameworks: Add KDE Frameworks 5.36.0
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'kde-frameworks/frameworkintegration')
-rw-r--r--kde-frameworks/frameworkintegration/Manifest1
-rw-r--r--kde-frameworks/frameworkintegration/frameworkintegration-5.36.0.ebuild52
2 files changed, 53 insertions, 0 deletions
diff --git a/kde-frameworks/frameworkintegration/Manifest b/kde-frameworks/frameworkintegration/Manifest
new file mode 100644
index 00000000000..b80575b6493
--- /dev/null
+++ b/kde-frameworks/frameworkintegration/Manifest
@@ -0,0 +1 @@
+DIST frameworkintegration-5.36.0.tar.xz 1751992 SHA256 345f6dc25d5f864aaeeffec8b5888c25b3248dcab16210c60663e2a65d1143e1 SHA512 38b13cae84e7a5758b729c267722dc06ab3a2c6ff7c0b288a7fc8ad55b4af9d928671da91baf82b47cff3923c87572ec341cfe9499eb937f323430706ee77267 WHIRLPOOL d308e2b971266f01bc199654ed8043230dd225de25e145e50c424c5319e47ffef505c05a298718a821286462ed0692b6c9373dd8cd190496488b1992248d1a02
diff --git a/kde-frameworks/frameworkintegration/frameworkintegration-5.36.0.ebuild b/kde-frameworks/frameworkintegration/frameworkintegration-5.36.0.ebuild
new file mode 100644
index 00000000000..736635e23d9
--- /dev/null
+++ b/kde-frameworks/frameworkintegration/frameworkintegration-5.36.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Framework for integrating Qt applications with KDE Plasma workspaces"
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="appstream X"
+
+RDEPEND="
+ $(add_frameworks_dep kconfig)
+ $(add_frameworks_dep kconfigwidgets)
+ $(add_frameworks_dep ki18n)
+ $(add_frameworks_dep kiconthemes)
+ $(add_frameworks_dep knewstuff)
+ $(add_frameworks_dep knotifications)
+ $(add_frameworks_dep kpackage)
+ $(add_frameworks_dep kwidgetsaddons)
+ $(add_qt_dep qtgui)
+ $(add_qt_dep qtwidgets)
+ appstream? (
+ app-admin/packagekit-qt
+ dev-libs/appstream[qt5]
+ )
+ X? (
+ $(add_qt_dep qtx11extras)
+ x11-libs/libxcb
+ )
+"
+DEPEND="${RDEPEND}"
+
+# requires running kde environment
+RESTRICT+=" test"
+
+src_prepare() {
+ punt_bogus_dep Qt5 DBus
+ kde5_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_find_package appstream AppStreamQt)
+ $(cmake-utils_use_find_package appstream packagekitqt5)
+ $(cmake-utils_use_find_package X XCB)
+ )
+
+ kde5_src_configure
+}