summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch41
-rw-r--r--meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.13.7.bb (renamed from meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb)19
2 files changed, 5 insertions, 55 deletions
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch b/meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch
deleted file mode 100644
index 109b7b1459..0000000000
--- a/meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch
+++ /dev/null
@@ -1,41 +0,0 @@
1From b6e46e6a84e45f7bd954687be703987825a54c1e Mon Sep 17 00:00:00 2001
2From: Eric Koegel <eric.koegel@gmail.com>
3Date: Sun, 11 Jun 2017 11:38:26 +0300
4Subject: [PATCH] Fix linking to dbus-glib (bug #13633)
5
6With xfconf moving to GDBus nothing provides the libs for dbus-glib
7that xfce4-settings requires. This patch adds the libs back in until
8settings can be ported to GDBus.
9
10Signed-off-by: Sean Davis <smd.seandavis@gmail.com>
11
12Upstream-Status: Backport
13---
14 xfce4-settings-editor/Makefile.am | 4 +++-
15 1 file changed, 3 insertions(+), 1 deletion(-)
16
17diff --git a/xfce4-settings-editor/Makefile.am b/xfce4-settings-editor/Makefile.am
18index 5964366..c2c7c4b 100644
19--- a/xfce4-settings-editor/Makefile.am
20+++ b/xfce4-settings-editor/Makefile.am
21@@ -28,6 +28,7 @@ xfce4_settings_editor_CFLAGS = \
22 $(LIBXFCE4UTIL_CFLAGS) \
23 $(LIBXFCE4UI_CFLAGS) \
24 $(XFCONF_CFLAGS) \
25+ $(DBUS_GLIB_CFLAGS) \
26 $(PLATFORM_CFLAGS)
27
28 xfce4_settings_editor_LDFLAGS = \
29@@ -39,7 +40,8 @@ xfce4_settings_editor_LDADD = \
30 $(DBUS_GLIB_LIBS) \
31 $(LIBXFCE4UTIL_LIBS) \
32 $(LIBXFCE4UI_LIBS) \
33- $(XFCONF_LIBS)
34+ $(XFCONF_LIBS) \
35+ $(DBUS_GLIB_LIBS)
36
37 desktopdir = $(datadir)/applications
38 desktop_in_files = xfce4-settings-editor.desktop.in
39--
402.14.3
41
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.13.7.bb
index a4685aed33..e79b0ab0bf 100644
--- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb
+++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.13.7.bb
@@ -2,32 +2,23 @@ SUMMARY = "Xfce4 settings"
2SECTION = "x11/wm" 2SECTION = "x11/wm"
3LICENSE = "GPLv2" 3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" 4LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5DEPENDS = "exo exo-native garcon gtk+ libxfce4util libxfce4ui xfconf dbus-glib libxi virtual/libx11 xrandr libxcursor libxklavier upower" 5DEPENDS = "exo exo-native garcon libxi virtual/libx11 xrandr libxcursor libxklavier upower"
6 6
7inherit xfce xfce-git distro_features_check 7inherit xfce distro_features_check
8 8
9REQUIRED_DISTRO_FEATURES = "x11" 9REQUIRED_DISTRO_FEATURES = "x11"
10 10
11# schnitzeltony git repo is the mainline repo 11SRC_URI += " \
12# + datetime-setter - sent to mainline but strange response
13# + minor bugfixes - sent mainline but no response
14# + option to hide mousepointer for a specific (touch) input device - sent mainline but no response
15SRC_URI = " \
16 git://github.com/schnitzeltony/xfce4-settings.git;protocol=git;branch=for-oe-4.12.4 \
17 file://0001-xsettings.xml-Set-default-themes.patch \ 12 file://0001-xsettings.xml-Set-default-themes.patch \
18 file://0002-Fix-linking-to-dbus-glib-bug-13633.patch \
19" 13"
20SRCREV = "75d7c9b15e5ccce12b0864d3659ae9b6de96e245" 14SRC_URI[md5sum] = "ec0a3daa810bce57cf140317243eeb1d"
21S = "${WORKDIR}/git" 15SRC_URI[sha256sum] = "ac11391eee22cb5fbffe3342916bcf9805f29c722aca825c2f57d98dc167a065"
22PV = "4.12.4+git${SRCPV}"
23 16
24EXTRA_OECONF += "--enable-maintainer-mode --disable-debug" 17EXTRA_OECONF += "--enable-maintainer-mode --disable-debug"
25 18
26PACKAGECONFIG ??= " \ 19PACKAGECONFIG ??= " \
27 ${@bb.utils.contains('DISTRO_FEATURES','systemd','datetime-setter','',d)} \
28 ${@bb.utils.contains('DISTRO_FEATURES','alsa','sound-setter', bb.utils.contains('DISTRO_FEATURES','pulseaudio','sound-setter','',d),d)} \ 20 ${@bb.utils.contains('DISTRO_FEATURES','alsa','sound-setter', bb.utils.contains('DISTRO_FEATURES','pulseaudio','sound-setter','',d),d)} \
29" 21"
30PACKAGECONFIG[datetime-setter] = "--enable-datetime-settings, --disable-datetime-settings,, tzdata"
31PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify" 22PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify"
32PACKAGECONFIG[sound-setter] = "--enable-sound-settings, --disable-sound-settings, libcanberra, libcanberra-gtk2 sound-theme-freedesktop" 23PACKAGECONFIG[sound-setter] = "--enable-sound-settings, --disable-sound-settings, libcanberra, libcanberra-gtk2 sound-theme-freedesktop"
33 24