commit: 16d3ce46a6c8c50ba5e96871a6a278d462846887 Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org> AuthorDate: Sun Jun 10 19:19:21 2018 +0000 Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org> CommitDate: Sun Jun 10 19:19:21 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=16d3ce46
gnome-extra/gnome-tweak-tool: 3.24.1 -> 3.26.4 Package-Manager: Portage-2.3.36, Repoman-2.3.9 Manifest-Sign-Key: 0x7DF238CF0AA182E1 ...me-tweak-tool-3.26.4-gentoo-cursor-themes.patch | 26 ++++++++ .../gnome-tweak-tool-3.26.4.ebuild | 75 ++++++++++++++++++++++ 2 files changed, 101 insertions(+) diff --git a/gnome-extra/gnome-tweak-tool/files/gnome-tweak-tool-3.26.4-gentoo-cursor-themes.patch b/gnome-extra/gnome-tweak-tool/files/gnome-tweak-tool-3.26.4-gentoo-cursor-themes.patch new file mode 100644 index 00000000..a974b4f0 --- /dev/null +++ b/gnome-extra/gnome-tweak-tool/files/gnome-tweak-tool-3.26.4-gentoo-cursor-themes.patch @@ -0,0 +1,26 @@ +From dd1a9a03cb424fe9fcded3c6e0ba4505e04e8cec Mon Sep 17 00:00:00 2001 +From: Sobhan Mohammadpour <sob...@gentoo.org> +Date: Sun, 10 Jun 2018 22:12:59 +0430 +Subject: [PATCH] update gnome-tweak-tool-3.10.1-gentoo-cursor-themes patch + +--- + gtweak/tweaks/tweak_group_appearance.py | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/gtweak/tweaks/tweak_group_appearance.py b/gtweak/tweaks/tweak_group_appearance.py +index 05d13e9..920df59 100644 +--- a/gtweak/tweaks/tweak_group_appearance.py ++++ b/gtweak/tweaks/tweak_group_appearance.py +@@ -89,7 +89,8 @@ class CursorThemeSwitcher(GSettingsComboTweak): + def _get_valid_cursor_themes(self): + dirs = ( os.path.join(gtweak.DATA_DIR, "icons"), + os.path.join(GLib.get_user_data_dir(), "icons"), +- os.path.join(os.path.expanduser("~"), ".icons")) ++ os.path.join(os.path.expanduser("~"), ".icons"), ++ os.path.join(gtweak.DATA_DIR, "cursors", "xorg-x11")) + valid = walk_directories(dirs, lambda d: + os.path.isdir(d) and \ + os.path.exists(os.path.join(d, "cursors"))) +-- +2.17.0 + diff --git a/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.26.4.ebuild b/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.26.4.ebuild new file mode 100644 index 00000000..ca70d152 --- /dev/null +++ b/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.26.4.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_LA_PUNT="yes" +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit gnome-meson python-r1 + +DESCRIPTION="Tool to customize GNOME 3 options" +HOMEPAGE="https://wiki.gnome.org/action/show/Apps/GnomeTweakTool" + +LICENSE="GPL-2+" +SLOT="0" + +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +KEYWORDS="~amd64 ~ia64 ~x86" + +COMMON_DEPEND=" + ${PYTHON_DEPS} + dev-libs/glib:2[dbus] + >=dev-python/pygobject-3.10.2:3[${PYTHON_USEDEP}] + >=gnome-base/gsettings-desktop-schemas-3.23.3 +" +# g-s-d, gnome-desktop, gnome-shell etc. needed at runtime for the gsettings schemas +RDEPEND="${COMMON_DEPEND} + >=gnome-base/gnome-desktop-3.6.0.1:3=[introspection] + >=x11-libs/gtk+-3.12:3[introspection] + + net-libs/libsoup:2.4[introspection] + x11-libs/libnotify[introspection] + + >=gnome-base/gnome-settings-daemon-3 + >=gnome-base/gnome-shell-3.24 + >=gnome-base/nautilus-3 +" +DEPEND="${COMMON_DEPEND} + sys-devel/gettext + >=dev-util/intltool-0.40.0 + virtual/pkgconfig +" +run_in_sane_meson_variables() { + local EMESON_SOURCE + EMESON_SOURCE=${BUILD_DIR} + BUILD_DIR="${BUILD_DIR}-build" + "$@" + BUILD_DIR=${EMESON_SOURCE} +} + +src_prepare() { + # Add contents of Gentoo's cursor theme directory to cursor theme list + eapply "${FILESDIR}/${PN}-3.26.4-gentoo-cursor-themes.patch" + + gnome-meson_src_prepare + python_copy_sources +} + +src_configure() { + python_foreach_impl run_in_build_dir run_in_sane_meson_variables gnome-meson_src_configure +} + +src_compile() { + python_foreach_impl run_in_build_dir run_in_sane_meson_variables gnome-meson_src_compile +} + +src_test() { + python_foreach_impl run_in_build_dir run_in_sane_meson_variables meson_src_test +} + +src_install() { + python_foreach_impl run_in_build_dir run_in_sane_meson_variables gnome-meson_src_install + python_foreach_impl run_in_build_dir python_doscript gnome-tweak-tool || die +}