diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-12 10:58:04 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-12 11:07:37 +0200 |
commit | 03b5070fa51fa15ac47489fae77811eaa07e1b91 (patch) | |
tree | 891706a5e6725e4f37f331422302e6d53a82aa6a /kde-plasma/kde-gtk-config | |
parent | www-apps/mediawiki: fixed test in postupgrade file (diff) | |
download | gentoo-03b5070fa51fa15ac47489fae77811eaa07e1b91.tar.gz gentoo-03b5070fa51fa15ac47489fae77811eaa07e1b91.tar.bz2 gentoo-03b5070fa51fa15ac47489fae77811eaa07e1b91.zip |
kde-plasma: Add KDE Plasma 5.16.0
Package-Manager: Portage-2.3.67, Repoman-2.3.14
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.16.0.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 e3fd524df054..e8d994b741b0 100644 --- a/kde-plasma/kde-gtk-config/Manifest +++ b/kde-plasma/kde-gtk-config/Manifest @@ -1 +1,2 @@ DIST kde-gtk-config-5.15.5.tar.xz 156704 BLAKE2B 8c53c009c028ff15ab7ec1c8d8e5283c3b734ea92265962b3bb2459def86fbfe1f5b42af2b60eda1c92244e40b8ab5c0471e937ecdbd5564ab4551961400d78b SHA512 b783dd7451fe52a79e92e19c40f932456baa0522b81d982794f8677a26f0907bbf1f7817cf54c988d4aeb0e09f761e665e9f70dab270a7bacf54c391ff31f8df +DIST kde-gtk-config-5.16.0.tar.xz 154312 BLAKE2B cf5f8e303a19e0a4b3fbe6d4c0892c3e82af6b0a56227fdb4ecf8345f20e33d659c720a37a8d5ed769f6a0650740524e32a82af19aa084c6fea81458e960a890 SHA512 7f322118fe2ddc398328c519a47b33fd7b2f0c7704d5bb42284985fe0b33e1af3f32a4c52569d07b02f4dc865da2285a7cab7a080493bafe6cbb5392708e0af2 diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.16.0.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.16.0.ebuild new file mode 100644 index 000000000000..03f067d76fe8 --- /dev/null +++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.16.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 ~arm64 ~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 qtsvg) + $(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) +" + +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." +} |