diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-27 19:56:14 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-27 21:24:09 +0100 |
commit | fb9e4f2d54dad43d39c2ae04a45e790d460bf6b1 (patch) | |
tree | cd2e14c7b513dcb87e546c3ed9b4feadc1bb121a /kde-plasma/kde-gtk-config | |
parent | net-dns/pdns-recursor: Stable on am64/x86, bug #671982 (diff) | |
download | gentoo-fb9e4f2d54dad43d39c2ae04a45e790d460bf6b1.tar.gz gentoo-fb9e4f2d54dad43d39c2ae04a45e790d460bf6b1.tar.bz2 gentoo-fb9e4f2d54dad43d39c2ae04a45e790d460bf6b1.zip |
kde-plasma: Add KDE Plasma 5.14.4
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/kde-gtk-config')
-rw-r--r-- | kde-plasma/kde-gtk-config/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/kde-gtk-config/kde-gtk-config-5.14.4.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/kde-plasma/kde-gtk-config/Manifest b/kde-plasma/kde-gtk-config/Manifest index 666edd339a74..0ff44920502e 100644 --- a/kde-plasma/kde-gtk-config/Manifest +++ b/kde-plasma/kde-gtk-config/Manifest @@ -1,2 +1,3 @@ DIST kde-gtk-config-5.13.5.tar.xz 156428 BLAKE2B 54461c4e58c9abf6ac7bc96a12e7a92f5615ab0cb00ce76f07bbba1d48dd40e7651643ed3c22af948efea873e5a1a68dde1759f261575a3fa482f4f3efb5da08 SHA512 bc9b75961a0a0efd9824a1913266831c27a9840af1f87fdef46527065321731b3c35b550cff2727f62c360ee72f9495d96cfab3a38c06b661bae9bdf7d739575 DIST kde-gtk-config-5.14.3.tar.xz 157292 BLAKE2B fd060e1810058472e24a82819c2b3b737637d8a5430912e22511085c0c361ccc5f355f7d1235d9514dabdaede799528f5522fd83b452c33e06689c70ada3502e SHA512 5c8d14d77cd6707d32f09361247445ff4399bb7331125d795bf2046bd7f8467c374ad68a11899bcc1592c9c207a4f94e9ef523074184550577c9c85fa7de49ef +DIST kde-gtk-config-5.14.4.tar.xz 156960 BLAKE2B 43c986887746c3e7ad1ccf9220d0f9356e3b32c2064267e94df3994f128df05712d4dc594b753afa90780597336501206fa367542593a9dd9660212fadeb403e SHA512 37c00a7fe1e7b6d5c502c1a075617187daca3a43657ed119b16e498002f3a3f23beb53062391c825d6bbd48374cfd6a9334d98bc5046a9561f93da89a32428db diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.14.4.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.14.4.ebuild new file mode 100644 index 000000000000..1539d7482fb2 --- /dev/null +++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.14.4.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_TEST="forceoptional" +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="KDE Plasma systemsettings kcm to set GTK application look&feel" +HOMEPAGE="https://cgit.kde.org/kde-gtk-config.git" +LICENSE="GPL-3" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep kwidgetsaddons) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + dev-libs/glib:2 + gnome-base/gsettings-desktop-schemas + x11-libs/gtk+:2 + x11-libs/gtk+:3 + x11-libs/libXcursor +" +RDEPEND="${DEPEND} + $(add_plasma_dep kde-cli-tools) + !kde-plasma/kde-gtk-config:4 +" + +src_configure() { + local mycmakeargs=( + -DDATA_INSTALL_DIR="${EPREFIX}/usr/share" + ) + + kde5_src_configure +} + +pkg_postinst() { + kde5_pkg_postinst + elog "If you notice missing icons in your GTK applications, you may have to install" + elog "the corresponding themes for GTK. A good guess would be x11-themes/oxygen-gtk" + elog "for example." +} |