public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-plasma/kde-gtk-config/, kde-plasma/kde-gtk-config/files/
@ 2015-10-06 10:58 Michael Palimaka
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka @ 2015-10-06 10:58 UTC (permalink / raw
  To: gentoo-commits

commit:     17da4ae478249970aa074219d754d45925cad6a1
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Fri Oct  2 22:22:55 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Oct  6 10:58:18 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=17da4ae4

kde-plasma/kde-gtk-config: Make gtk+3 optional

gtk3proxies depends on a ui file from gtkproxies, so gtk+2 is kept unconditionally.

Package-Manager: portage-2.2.20.1

 .../files/kde-gtk-config-5.4.2-gtk3-optional.patch    | 19 +++++++++++++++++++
 kde-plasma/kde-gtk-config/kde-gtk-config-5.4.2.ebuild |  6 +++++-
 .../kde-gtk-config/kde-gtk-config-5.4.49.9999.ebuild  |  6 +++++-
 kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild  |  6 +++++-
 kde-plasma/kde-gtk-config/metadata.xml                |  3 +++
 5 files changed, 37 insertions(+), 3 deletions(-)

diff --git a/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.4.2-gtk3-optional.patch b/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.4.2-gtk3-optional.patch
new file mode 100644
index 0000000..e1e8de2
--- /dev/null
+++ b/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.4.2-gtk3-optional.patch
@@ -0,0 +1,19 @@
+--- a/CMakeLists.txt	2015-10-02 22:36:55.186480671 +0200
++++ b/CMakeLists.txt	2015-10-02 22:38:40.048169719 +0200
+@@ -17,6 +17,7 @@
+ include(ECMSetupVersion)
+ include(ECMInstallIcons)
+ include(ECMMarkAsTest)
++include(ECMOptionalAddSubdirectory)
+ include(GenerateExportHeader)
+ include(FeatureSummary)
+ include(KDEInstallDirs)
+@@ -62,7 +63,7 @@
+ install(FILES kde-gtk-config.desktop DESTINATION ${SERVICES_INSTALL_DIR})
+ 
+ add_subdirectory(gtkproxies)
+-add_subdirectory(gtk3proxies)
++ecm_optional_add_subdirectory(gtk3proxies)
+ add_subdirectory(icons)
+ add_subdirectory(tests)
+ 

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.2.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.2.ebuild
index 6fc2840..fc00913 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.2.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.2.ebuild
@@ -11,6 +11,7 @@ DESCRIPTION="KDE systemsettings kcm to set GTK application look&feel"
 HOMEPAGE="https://projects.kde.org/kde-gtk-config"
 LICENSE="GPL-3"
 KEYWORDS="~amd64 ~x86"
+IUSE="+gtk3"
 
 DEPEND="
 	$(add_frameworks_dep karchive)
@@ -26,7 +27,7 @@ DEPEND="
 	dev-qt/qtgui:5
 	dev-qt/qtwidgets:5
 	x11-libs/gtk+:2
-	x11-libs/gtk+:3
+	gtk3? ( x11-libs/gtk+:3 )
 "
 RDEPEND="${DEPEND}
 	$(add_plasma_dep kde-cli-tools)
@@ -34,9 +35,12 @@ RDEPEND="${DEPEND}
 	!kde-misc/kde-gtk-config
 "
 
+PATCHES=( "${FILESDIR}/${PN}-5.4.2-gtk3-optional.patch" )
+
 src_configure() {
 	local mycmakeargs=(
 		-DDATA_INSTALL_DIR="${EPREFIX}/usr/share"
+		-DBUILD_gtk3proxies=$(usex gtk3)
 	)
 
 	kde5_src_configure

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.49.9999.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.49.9999.ebuild
index 329048d..365514e 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.49.9999.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.4.49.9999.ebuild
@@ -11,6 +11,7 @@ DESCRIPTION="KDE systemsettings kcm to set GTK application look&feel"
 HOMEPAGE="https://projects.kde.org/kde-gtk-config"
 LICENSE="GPL-3"
 KEYWORDS=""
+IUSE="+gtk3"
 
 DEPEND="
 	$(add_frameworks_dep karchive)
@@ -26,7 +27,7 @@ DEPEND="
 	dev-qt/qtgui:5
 	dev-qt/qtwidgets:5
 	x11-libs/gtk+:2
-	x11-libs/gtk+:3
+	gtk3? ( x11-libs/gtk+:3 )
 "
 RDEPEND="${DEPEND}
 	$(add_plasma_dep kde-cli-tools)
@@ -34,9 +35,12 @@ RDEPEND="${DEPEND}
 	!kde-misc/kde-gtk-config
 "
 
+PATCHES=( "${FILESDIR}/${PN}-5.4.2-gtk3-optional.patch" )
+
 src_configure() {
 	local mycmakeargs=(
 		-DDATA_INSTALL_DIR="${EPREFIX}/usr/share"
+		-DBUILD_gtk3proxies=$(usex gtk3)
 	)
 
 	kde5_src_configure

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
index 329048d..365514e 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
@@ -11,6 +11,7 @@ DESCRIPTION="KDE systemsettings kcm to set GTK application look&feel"
 HOMEPAGE="https://projects.kde.org/kde-gtk-config"
 LICENSE="GPL-3"
 KEYWORDS=""
+IUSE="+gtk3"
 
 DEPEND="
 	$(add_frameworks_dep karchive)
@@ -26,7 +27,7 @@ DEPEND="
 	dev-qt/qtgui:5
 	dev-qt/qtwidgets:5
 	x11-libs/gtk+:2
-	x11-libs/gtk+:3
+	gtk3? ( x11-libs/gtk+:3 )
 "
 RDEPEND="${DEPEND}
 	$(add_plasma_dep kde-cli-tools)
@@ -34,9 +35,12 @@ RDEPEND="${DEPEND}
 	!kde-misc/kde-gtk-config
 "
 
+PATCHES=( "${FILESDIR}/${PN}-5.4.2-gtk3-optional.patch" )
+
 src_configure() {
 	local mycmakeargs=(
 		-DDATA_INSTALL_DIR="${EPREFIX}/usr/share"
+		-DBUILD_gtk3proxies=$(usex gtk3)
 	)
 
 	kde5_src_configure

diff --git a/kde-plasma/kde-gtk-config/metadata.xml b/kde-plasma/kde-gtk-config/metadata.xml
index a23f444..b277fb6 100644
--- a/kde-plasma/kde-gtk-config/metadata.xml
+++ b/kde-plasma/kde-gtk-config/metadata.xml
@@ -2,4 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<herd>kde</herd>
+	<use>
+		<flag name="gtk3">Add support for gtk+3-based applications.</flag>
+	</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/kde-gtk-config/, kde-plasma/kde-gtk-config/files/
@ 2016-09-14 14:00 Michael Palimaka
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka @ 2016-09-14 14:00 UTC (permalink / raw
  To: gentoo-commits

commit:     1bddc947631e3849ce09430fab45a2d112900223
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 14:00:29 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 14:00:35 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=1bddc947

kde-plasma/kde-gtk-config: backport patch from upstream to search for cursors in the correct location

Upstream-commit: fa473a1c4572ef3c2614318b0ce7090613878005

Package-Manager: portage-2.3.0

 ...fig-5.7.4-look-for-cursors-in-right-place.patch | 109 +++++++++++++++++++++
 .../kde-gtk-config-5.7.49.9999.ebuild              |   8 +-
 .../kde-gtk-config/kde-gtk-config-9999.ebuild      |   3 +-
 3 files changed, 117 insertions(+), 3 deletions(-)

diff --git a/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.7.4-look-for-cursors-in-right-place.patch b/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.7.4-look-for-cursors-in-right-place.patch
new file mode 100644
index 0000000..81da8d6
--- /dev/null
+++ b/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.7.4-look-for-cursors-in-right-place.patch
@@ -0,0 +1,109 @@
+commit fa473a1c4572ef3c2614318b0ce7090613878005
+Author: Jason A. Donenfeld <Jason@zx2c4.com>
+Date:   Tue Sep 13 04:13:47 2016 +0200
+
+    cursor model: look for cursors in correct place
+    
+    plasma-desktop's cursor theme kcm does the right thing, by consulting
+    the libXcursor library for the right search paths. Unfortunately, the
+    kcm here does a pretty butchered job of it. So, we copy, more or less,
+    the same algorithm used by plasma-desktop. Now there's parity in cursor
+    selection.
+    
+    For reference, please see line 165 of:
+    https://quickgit.kde.org/?p=plasma-desktop.git&a=blob&f=kcms%2Fcursortheme%2Fxcursor%2Fthememodel.cpp
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 07d313c..88f5a47 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -7,6 +7,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" ${ECM_MODULE_P
+ 
+ find_package(Qt5 REQUIRED NO_MODULE COMPONENTS Widgets Test)
+ find_package(KF5 REQUIRED COMPONENTS I18n KIO ConfigWidgets NewStuff Archive KCMUtils IconThemes)
++find_package(X11 REQUIRED)
+ 
+ include_directories(
+     ${CMAKE_SOURCE_DIR} 
+@@ -54,7 +55,7 @@ ki18n_wrap_ui(kcm_SRCS
+ )
+ add_library(kcm_kdegtkconfig MODULE ${kcm_SRCS})
+ target_compile_definitions(kcm_kdegtkconfig PRIVATE -DPROJECT_VERSION="${PROJECT_VERSION}")
+-target_link_libraries(kcm_kdegtkconfig KF5::I18n KF5::KIOWidgets KF5::NewStuff KF5::Archive KF5::NewStuff KF5::ConfigWidgets KF5::IconThemes)
++target_link_libraries(kcm_kdegtkconfig ${X11_Xcursor_LIB} KF5::I18n KF5::KIOWidgets KF5::NewStuff KF5::Archive KF5::NewStuff KF5::ConfigWidgets KF5::IconThemes)
+ 
+ kcoreaddons_desktop_to_json(kcm_kdegtkconfig kde-gtk-config.desktop)
+ 
+diff --git a/src/cursorthemesmodel.cpp b/src/cursorthemesmodel.cpp
+index 5238714..0e58230 100644
+--- a/src/cursorthemesmodel.cpp
++++ b/src/cursorthemesmodel.cpp
+@@ -24,12 +24,14 @@
+ #include <QDir>
+ #include <QDirIterator>
+ #include <QSet>
+-#include <KIconTheme>
+ #include <QStandardPaths>
++#include <KIconTheme>
++#include <KShell>
++
++#include <X11/Xcursor/Xcursor.h>
+ 
+-CursorThemesModel::CursorThemesModel(bool onlyHome, QObject* parent)
++CursorThemesModel::CursorThemesModel(QObject* parent)
+     : IconThemesModel(parent)
+-    , m_onlyHome(onlyHome)
+ {
+     reload();
+ }
+@@ -37,13 +39,11 @@ CursorThemesModel::CursorThemesModel(bool onlyHome, QObject* parent)
+ QList<QDir> CursorThemesModel::installedThemesPaths()
+ {
+     QList<QDir> availableIcons;
++    QStringList dirs(QString(XcursorLibraryPath()).split(':', QString::SkipEmptyParts));
++
++    std::transform(dirs.begin(), dirs.end(), dirs.begin(), KShell::tildeExpand);
++    dirs.removeDuplicates();
+ 
+-    QSet<QString> dirs;
+-    dirs += QDir::home().filePath(".icons");
+-    if(!m_onlyHome) {
+-        dirs += QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "icons", QStandardPaths::LocateDirectory).toSet();
+-    }
+-    
+     foreach(const QString& dir, dirs) {
+         QDir userIconsDir(dir);
+         QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs|QDir::NoSymLinks);
+diff --git a/src/cursorthemesmodel.h b/src/cursorthemesmodel.h
+index 7658bd5..4acfa4b 100644
+--- a/src/cursorthemesmodel.h
++++ b/src/cursorthemesmodel.h
+@@ -29,14 +29,13 @@ class QDir;
+ class CursorThemesModel : public IconThemesModel
+ {
+     public:
+-        explicit CursorThemesModel(bool onlyHome=false, QObject* parent = 0);
++        explicit CursorThemesModel(QObject* parent = 0);
+ 
+         void reload();
+         
+     private:
+         static void fillItem(const QDir& dir, QStandardItem* item);
+         QList<QDir> installedThemesPaths();
+-        bool m_onlyHome;
+ };
+ 
+ #endif // CURSORTHEMESMODEL_H
+diff --git a/src/gtkconfigkcmodule.cpp b/src/gtkconfigkcmodule.cpp
+index 7afe698..d36c6a3 100644
+--- a/src/gtkconfigkcmodule.cpp
++++ b/src/gtkconfigkcmodule.cpp
+@@ -71,7 +71,7 @@ GTKConfigKCModule::GTKConfigKCModule(QWidget* parent, const QVariantList& args )
+     setButtons(KCModule::Default | KCModule::Apply);
+     ui->setupUi(this);
+     appareance = new AppearenceGTK;
+-    m_cursorsModel = new CursorThemesModel(false, this);
++    m_cursorsModel = new CursorThemesModel(this);
+     ui->cb_cursor->setModel(m_cursorsModel);
+     m_iconsModel = new IconThemesModel(false, this);
+     ui->cb_icon->setModel(m_iconsModel);

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.7.49.9999.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.7.49.9999.ebuild
index e104b07..3cf83e5 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-5.7.49.9999.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.7.49.9999.ebuild
@@ -24,9 +24,10 @@ DEPEND="
 	$(add_frameworks_dep kio)
 	$(add_frameworks_dep knewstuff)
 	$(add_frameworks_dep kwidgetsaddons)
-	dev-libs/glib:2
 	$(add_qt_dep qtgui)
 	$(add_qt_dep qtwidgets)
+	dev-libs/glib:2
+	x11-libs/libXcursor
 	x11-libs/gtk+:2
 	gtk3? ( x11-libs/gtk+:3 )
 "
@@ -36,7 +37,10 @@ RDEPEND="${DEPEND}
 	!kde-misc/kde-gtk-config
 "
 
-PATCHES=( "${FILESDIR}/${PN}-5.4.2-gtk3-optional.patch" )
+PATCHES=(
+	"${FILESDIR}/${PN}-5.4.2-gtk3-optional.patch"
+	"${FILESDIR}/${PN}-5.7.4-look-for-cursors-in-right-place.patch"
+)
 
 src_configure() {
 	local mycmakeargs=(

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
index e104b07..b356512 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
@@ -24,9 +24,10 @@ DEPEND="
 	$(add_frameworks_dep kio)
 	$(add_frameworks_dep knewstuff)
 	$(add_frameworks_dep kwidgetsaddons)
-	dev-libs/glib:2
 	$(add_qt_dep qtgui)
 	$(add_qt_dep qtwidgets)
+	dev-libs/glib:2
+	x11-libs/libXcursor
 	x11-libs/gtk+:2
 	gtk3? ( x11-libs/gtk+:3 )
 "


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/kde-gtk-config/, kde-plasma/kde-gtk-config/files/
@ 2021-08-26 16:46 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2021-08-26 16:46 UTC (permalink / raw
  To: gentoo-commits

commit:     c7208656b89e3eac3dbdd4dd57dc3f864719eb89
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 26 15:31:43 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Aug 26 15:31:49 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=c7208656

kde-plasma/kde-gtk-config: Drop unused x11-libs/gtk+:2 DEPEND

Upstream commit 090cfb2db4bc9c032cd7a7c12cf2a317c248e3c6

Update DESCRIPTION.

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../kde-gtk-config-5.22.5-drop-gtk2-dep.patch      | 25 ++++++++++++++++++++++
 .../kde-gtk-config-5.22.49.9999.ebuild             | 11 +++++-----
 .../kde-gtk-config/kde-gtk-config-9999.ebuild      |  9 ++++----
 3 files changed, 35 insertions(+), 10 deletions(-)

diff --git a/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.22.5-drop-gtk2-dep.patch b/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.22.5-drop-gtk2-dep.patch
new file mode 100644
index 0000000000..77831e3ebb
--- /dev/null
+++ b/kde-plasma/kde-gtk-config/files/kde-gtk-config-5.22.5-drop-gtk2-dep.patch
@@ -0,0 +1,25 @@
+From 090cfb2db4bc9c032cd7a7c12cf2a317c248e3c6 Mon Sep 17 00:00:00 2001
+From: Fabian Vogt <fabian@ritter-vogt.de>
+Date: Mon, 2 Aug 2021 13:52:38 +0200
+Subject: [PATCH] Drop unused dependency on gtk+-2.0
+
+FWICT it's not actually used anywhere.
+---
+ CMakeLists.txt | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 45d02ef..f102642 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -20,7 +20,6 @@ find_package(Sass REQUIRED)
+ find_package(XSettingsd)
+ 
+ pkg_check_modules(GTK+3 REQUIRED IMPORTED_TARGET gtk+-3.0)
+-pkg_check_modules(GTK+2 REQUIRED IMPORTED_TARGET gtk+-2.0)
+ pkg_check_modules(GLib2 REQUIRED IMPORTED_TARGET glib-2.0)
+ pkg_check_modules(GObject REQUIRED IMPORTED_TARGET gobject-2.0)
+ pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0)
+-- 
+GitLab
+

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.22.49.9999.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.22.49.9999.ebuild
index 09368c9277..839c9f38e1 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-5.22.49.9999.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.22.49.9999.ebuild
@@ -9,7 +9,7 @@ QTMIN=5.15.2
 VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
-DESCRIPTION="GTK2 and GTK3 configurator for KDE Plasma"
+DESCRIPTION="Syncs KDE Plasma theme settings to GTK applications"
 HOMEPAGE="https://invent.kde.org/plasma/kde-gtk-config"
 
 LICENSE="GPL-3"
@@ -17,9 +17,6 @@ SLOT="5"
 KEYWORDS=""
 IUSE=""
 
-BDEPEND="
-	dev-lang/sassc
-"
 DEPEND="
 	dev-cpp/glibmm:2
 	dev-libs/glib:2
@@ -33,13 +30,17 @@ DEPEND="
 	>=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
 "
+BDEPEND="
+	dev-lang/sassc
+"
+
+PATCHES=( "${FILESDIR}/${PN}-5.22.5-drop-gtk2-dep.patch" )
 
 src_configure() {
 	local mycmakeargs=(

diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
index 789bc6b67d..90de80db70 100644
--- a/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
+++ b/kde-plasma/kde-gtk-config/kde-gtk-config-9999.ebuild
@@ -9,7 +9,7 @@ QTMIN=5.15.2
 VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
-DESCRIPTION="GTK2 and GTK3 configurator for KDE Plasma"
+DESCRIPTION="Syncs KDE Plasma theme settings to GTK applications"
 HOMEPAGE="https://invent.kde.org/plasma/kde-gtk-config"
 
 LICENSE="GPL-3"
@@ -17,9 +17,6 @@ SLOT="5"
 KEYWORDS=""
 IUSE=""
 
-BDEPEND="
-	dev-lang/sassc
-"
 DEPEND="
 	dev-cpp/glibmm:2
 	dev-libs/glib:2
@@ -33,13 +30,15 @@ DEPEND="
 	>=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
 "
+BDEPEND="
+	dev-lang/sassc
+"
 
 src_configure() {
 	local mycmakeargs=(


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-26 16:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-06 10:58 [gentoo-commits] proj/kde:master commit in: kde-plasma/kde-gtk-config/, kde-plasma/kde-gtk-config/files/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2016-09-14 14:00 Michael Palimaka
2021-08-26 16:46 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox