forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-plasma/kde-gtk-config: 5.22.3 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST kde-gtk-config-5.21.5.tar.xz 68764 BLAKE2B 5b63ae7d4a2f7c364d202321c87a3c6cb11361d6ee74625c3786428adbfda72d792a6de1f51e32d179f6746b33ffb801afccfac8f0167b31f759973b48bc629e SHA512 7acd5036cc008fac85cabd9f3a5321dc1c0209a1133d6063342ca1b1235843dce5e37a7712e0cbbd520f09b3ff46b71a94517c61414c8e7c1c35a2d65b428347 | ||
DIST kde-gtk-config-5.22.2.tar.xz 70728 BLAKE2B 0e7420316a0a64fb9491e1c4686f18e2d64530f647987cc7049219c26f6dd0eb930fe8e51c760ac8e89e0d4e4f85b05bc4e20063cb4c4d074cc5d9fedb16f587 SHA512 343dce0c2a95a60125fc46354c10e051ddba42175532008abc4d7330fa73b1635d258e947adf770c9b51e4ff389ab40384af1f29f7ddd3ea51238072603c418f | ||
DIST kde-gtk-config-5.22.3.tar.xz 70848 BLAKE2B bcf7971f1330becd8768eefe6b886c55e974313c3beeb3d6c02029065b79ef14a22f1f83bf4402a4ca3a270e5dae11c3b412ce3b4923ebf8c33bd9061149ea2c SHA512 d2308bbd83804aad37bdf534f10e8fecb277aaef84ec75e036de2ffd923133beba332287297f2cc529db1ceeeb5a686fee76ddbae083f96d6708dde37c26c6e3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
KFMIN=5.82.0 | ||
PVCUT=$(ver_cut 1-3) | ||
QTMIN=5.15.2 | ||
VIRTUALX_REQUIRED="test" | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="GTK2 and GTK3 configurator for KDE Plasma" | ||
HOMEPAGE="https://invent.kde.org/plasma/kde-gtk-config" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
IUSE="" | ||
|
||
BDEPEND=" | ||
dev-lang/sassc | ||
" | ||
DEPEND=" | ||
dev-cpp/glibmm:2 | ||
dev-libs/glib:2 | ||
>=dev-qt/qtdbus-${QTMIN}:5 | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtsvg-${QTMIN}:5 | ||
gnome-base/gsettings-desktop-schemas | ||
>=kde-frameworks/kconfig-${KFMIN}:5 | ||
>=kde-frameworks/kconfigwidgets-${KFMIN}:5 | ||
>=kde-frameworks/kcoreaddons-${KFMIN}:5 | ||
>=kde-frameworks/kdbusaddons-${KFMIN}:5 | ||
>=kde-frameworks/kguiaddons-${KFMIN}:5 | ||
>=kde-plasma/kdecoration-${PVCUT}:5 | ||
x11-libs/gtk+:2 | ||
x11-libs/gtk+:3 | ||
" | ||
RDEPEND="${DEPEND} | ||
>=kde-plasma/kde-cli-tools-${PVCUT}:5 | ||
x11-misc/xsettingsd | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DDATA_INSTALL_DIR="${EPREFIX}/usr/share" | ||
) | ||
|
||
ecm_src_configure | ||
} | ||
|
||
pkg_postinst() { | ||
ecm_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." | ||
} |