diff options
| -rw-r--r-- | meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch | 41 | ||||
| -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 @@ | |||
| 1 | From b6e46e6a84e45f7bd954687be703987825a54c1e Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Eric Koegel <eric.koegel@gmail.com> | ||
| 3 | Date: Sun, 11 Jun 2017 11:38:26 +0300 | ||
| 4 | Subject: [PATCH] Fix linking to dbus-glib (bug #13633) | ||
| 5 | |||
| 6 | With xfconf moving to GDBus nothing provides the libs for dbus-glib | ||
| 7 | that xfce4-settings requires. This patch adds the libs back in until | ||
| 8 | settings can be ported to GDBus. | ||
| 9 | |||
| 10 | Signed-off-by: Sean Davis <smd.seandavis@gmail.com> | ||
| 11 | |||
| 12 | Upstream-Status: Backport | ||
| 13 | --- | ||
| 14 | xfce4-settings-editor/Makefile.am | 4 +++- | ||
| 15 | 1 file changed, 3 insertions(+), 1 deletion(-) | ||
| 16 | |||
| 17 | diff --git a/xfce4-settings-editor/Makefile.am b/xfce4-settings-editor/Makefile.am | ||
| 18 | index 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 | -- | ||
| 40 | 2.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" | |||
| 2 | SECTION = "x11/wm" | 2 | SECTION = "x11/wm" |
| 3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
| 5 | DEPENDS = "exo exo-native garcon gtk+ libxfce4util libxfce4ui xfconf dbus-glib libxi virtual/libx11 xrandr libxcursor libxklavier upower" | 5 | DEPENDS = "exo exo-native garcon libxi virtual/libx11 xrandr libxcursor libxklavier upower" |
| 6 | 6 | ||
| 7 | inherit xfce xfce-git distro_features_check | 7 | inherit xfce distro_features_check |
| 8 | 8 | ||
| 9 | REQUIRED_DISTRO_FEATURES = "x11" | 9 | REQUIRED_DISTRO_FEATURES = "x11" |
| 10 | 10 | ||
| 11 | # schnitzeltony git repo is the mainline repo | 11 | SRC_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 | ||
| 15 | SRC_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 | " |
| 20 | SRCREV = "75d7c9b15e5ccce12b0864d3659ae9b6de96e245" | 14 | SRC_URI[md5sum] = "ec0a3daa810bce57cf140317243eeb1d" |
| 21 | S = "${WORKDIR}/git" | 15 | SRC_URI[sha256sum] = "ac11391eee22cb5fbffe3342916bcf9805f29c722aca825c2f57d98dc167a065" |
| 22 | PV = "4.12.4+git${SRCPV}" | ||
| 23 | 16 | ||
| 24 | EXTRA_OECONF += "--enable-maintainer-mode --disable-debug" | 17 | EXTRA_OECONF += "--enable-maintainer-mode --disable-debug" |
| 25 | 18 | ||
| 26 | PACKAGECONFIG ??= " \ | 19 | PACKAGECONFIG ??= " \ |
| 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 | " |
| 30 | PACKAGECONFIG[datetime-setter] = "--enable-datetime-settings, --disable-datetime-settings,, tzdata" | ||
| 31 | PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify" | 22 | PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify" |
| 32 | PACKAGECONFIG[sound-setter] = "--enable-sound-settings, --disable-sound-settings, libcanberra, libcanberra-gtk2 sound-theme-freedesktop" | 23 | PACKAGECONFIG[sound-setter] = "--enable-sound-settings, --disable-sound-settings, libcanberra, libcanberra-gtk2 sound-theme-freedesktop" |
| 33 | 24 | ||
