diff options
Diffstat (limited to 'kde-frameworks/frameworkintegration')
-rw-r--r-- | kde-frameworks/frameworkintegration/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/frameworkintegration/frameworkintegration-5.28.0.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/kde-frameworks/frameworkintegration/Manifest b/kde-frameworks/frameworkintegration/Manifest index 438d13d7d746..6e1241baa491 100644 --- a/kde-frameworks/frameworkintegration/Manifest +++ b/kde-frameworks/frameworkintegration/Manifest @@ -1,2 +1,3 @@ DIST frameworkintegration-5.26.0.tar.xz 1749228 SHA256 374db7d9b69486aa16fccf1391869f058679bf2aa7adf6f109ba29d3f4e31653 SHA512 a3211cff802a0d616d45952659c03cd515c4318b329344dc3b93eb2d2dfcc877fbe07cc88d96f1cf5c0184c596bce733593f5b97fe7bb8c6453643207111386a WHIRLPOOL 0fcc5e6f5b0b3272ddd8faea68396781f7c91325fa457f23a9196e3505c5e239b857849083b0e30a482e23340dff220f039cdf105c703157759a44aade33d00f DIST frameworkintegration-5.27.0.tar.xz 1749768 SHA256 e10e41ca8db269437a2d7bbcf262c21eb54ad82af785ccd300ce0020243ffb7e SHA512 44b7f45a4b6a2b2e4fb21c57bd84bde3d509cfe8e487c7e808963ef6bba1e30b11667de48a0e2b874211f0e2be20505151e37ddcddd4bfab3dafd59d9b650cd6 WHIRLPOOL 3b4639d7655f2e8657612ff1cb2c29343e762c01f750bdbfe53f21df873c51c09797b12125b51f69b166e4a7a62fd57b609b9a1c7227837a3eca588dc68c57c8 +DIST frameworkintegration-5.28.0.tar.xz 1749760 SHA256 161fc7576315d314d5f8f19e6fbc7723c4fc7c697ff8d2b455d9d7faaccf92ad SHA512 633b57ef335e7d4652c8a69d8c8d26da7def8ca32b3b5237d23c4d4cde04ec757b303b6417d88f90c53094259be48701028a0b4882d2ca685aa56f6e588b5982 WHIRLPOOL 4f6a70448d0b933d8c3f14a363412aa4cab806271bbdb8cd2fb6c29b060d6969816fe448c59a5f7da836d827c9a33a7a879491127cec3699cc50892e2fd0b81a diff --git a/kde-frameworks/frameworkintegration/frameworkintegration-5.28.0.ebuild b/kde-frameworks/frameworkintegration/frameworkintegration-5.28.0.ebuild new file mode 100644 index 000000000000..14bdd104a79e --- /dev/null +++ b/kde-frameworks/frameworkintegration/frameworkintegration-5.28.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="Framework for integrating Qt applications with KDE workspaces" +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="X" + +RDEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kwidgetsaddons) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + X? ( + $(add_qt_dep qtx11extras) + x11-libs/libxcb + ) +" +DEPEND="${RDEPEND}" + +# requires running kde environment +RESTRICT+=" test" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package X XCB) + ) + + kde5_src_configure +} |