From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 83F9E15814C for ; Tue, 19 Sep 2023 15:27:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7E642BC062; Tue, 19 Sep 2023 15:27:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8CBF92BC062 for ; Tue, 19 Sep 2023 15:27:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A0644335C67 for ; Tue, 19 Sep 2023 15:27:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25ECB11AA for ; Tue, 19 Sep 2023 15:27:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1695136996.c712cdb73ec89765c26bd98f31d15ea2dc1f99d6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/kde-gtk-config/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/kde-gtk-config/kde-gtk-config-5.27.8-r1.ebuild X-VCS-Directories: kde-plasma/kde-gtk-config/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c712cdb73ec89765c26bd98f31d15ea2dc1f99d6 X-VCS-Branch: master Date: Tue, 19 Sep 2023 15:27:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cb39deb5-795d-4d58-a590-e28304a0288d X-Archives-Hash: efb5dbb305af29525166316405bc5649 commit: c712cdb73ec89765c26bd98f31d15ea2dc1f99d6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Sep 19 14:49:40 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Sep 19 15:23:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c712cdb7 kde-plasma/kde-gtk-config: Fix dependencies Closes: https://bugs.gentoo.org/914139 Closes: https://bugs.gentoo.org/914378 Signed-off-by: Andreas Sturmlechner gentoo.org> .../kde-gtk-config/kde-gtk-config-5.27.8-r1.ebuild | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.27.8-r1.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.27.8-r1.ebuild new file mode 100644 index 000000000000..9f484cf6ea1d --- /dev/null +++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.27.8-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KFMIN=5.106.0 +PVCUT=$(ver_cut 1-3) +QTMIN=5.15.9 +inherit ecm plasma.kde.org + +DESCRIPTION="Syncs KDE Plasma theme settings to GTK applications" +HOMEPAGE="https://invent.kde.org/plasma/kde-gtk-config" + +LICENSE="GPL-3" +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="" + +DEPEND=" + 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-frameworks/kwindowsystem-${KFMIN}:5 + >=kde-plasma/kdecoration-${PVCUT}:5 + x11-libs/gtk+:3[X] +" +RDEPEND="${DEPEND} + >=kde-plasma/kde-cli-tools-${PVCUT}:5 + x11-misc/xsettingsd +" +BDEPEND="dev-lang/sassc" + +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." +}