mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
fixes (found in Martin's world build) | /bin/bash: exo-csource: command not found | make[3]: *** [appearance-dialog_ui.h] Error 127 | make[3]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings/4.10.0+gitAUTOINC+b7a0e1fd77-r0/git/dialogs/appearance-settings' | make[2]: *** [all-recursive] Error 1 | make[2]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings/4.10.0+gitAUTOINC+b7a0e1fd77-r0/git/dialogs' | make[1]: *** [all-recursive] Error 1 | make[1]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings/4.10.0+gitAUTOINC+b7a0e1fd77-r0/git' | make: *** [all] Error 2 | ERROR: oe_runmake failed | WARNING: exit code 1 from a shell command. | ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
52 lines
2.3 KiB
BlitzBasic
52 lines
2.3 KiB
BlitzBasic
DESCRIPTION = "Xfce4 settings"
|
|
SECTION = "x11/wm"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
DEPENDS = "exo exo-native garcon gtk+ libxfce4util libxfce4ui xfconf dbus-glib libxi virtual/libx11 xrandr libnotify libxcursor libxklavier"
|
|
|
|
inherit xfce
|
|
|
|
SRC_URI = " git://gitorious.org/xfce/xfce4-settings.git;protocol=git;branch=for-oe \
|
|
file://0001-xsettings.xml-remove-trouble-causing-comment.patch \
|
|
file://0002-xsettings.xml-Set-default-themes.patch \
|
|
file://touchscreen/invisible \
|
|
file://touchscreen/wait \
|
|
file://touchscreen/0001-add-cursor-theme-xfce-invisible.patch \
|
|
file://touchscreen/0002-mouse-settings-dialog-add-touchscreen-pointer-option.patch \
|
|
file://touchscreen/0003-XfcePointersHelper-gets-a-pointer-to-XfceXSettingsHe.patch \
|
|
file://touchscreen/0004-XfceXSettingsHelper-gets-a-property-touchscreen-poin.patch \
|
|
file://touchscreen/0005-pointers-detect-a-change-of-pointer-device-used-and-.patch \
|
|
"
|
|
SRCREV = "b7a0e1fd77f5bb5c372223ff62aec7acf252f061"
|
|
S = "${WORKDIR}/git"
|
|
PV = "4.11.0+git${SRCPV}"
|
|
|
|
EXTRA_OECONF += "--enable-maintainer-mode --disable-debug"
|
|
|
|
PACKAGECONFIG ??= " \
|
|
${@base_contains('DISTRO_FEATURES','systemd','datetime-setter','',d)} \
|
|
${@base_contains('DISTRO_FEATURES','alsa','sound-setter', base_contains('DISTRO_FEATURES','pulseaudio','sound-setter','',d),d)} \
|
|
"
|
|
PACKAGECONFIG[datetime-setter] = "--enable-datetime-settings, --disable-datetime-settings,, tzdata"
|
|
PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify"
|
|
PACKAGECONFIG[sound-setter] = "--enable-sound-settings, --disable-sound-settings, libcanberra, libcanberra-gtk2 sound-theme-freedesktop"
|
|
|
|
do_configure_prepend() {
|
|
NOCONFIGURE=yes ./autogen.sh
|
|
}
|
|
|
|
FILES_${PN} += " \
|
|
${libdir}/xfce4 \
|
|
${datadir}/xfce4 \
|
|
"
|
|
|
|
do_install_prepend() {
|
|
# somehow binary files are not patched correctly by oe-patch - so copy them
|
|
cp ${WORKDIR}/touchscreen/invisible ${S}/cursors
|
|
cp ${WORKDIR}/touchscreen/wait ${S}/cursors
|
|
}
|
|
|
|
RRECOMMENDS_${PN} += "gnome-icon-theme"
|
|
RRECOMMENDS_${PN} += "${@base_contains('DISTRO_FEATURES','alsa','libcanberra-alsa','',d)}"
|
|
RRECOMMENDS_${PN} += "${@base_contains('DISTRO_FEATURES','pulseaudio','libcanberra-pulse','',d)}"
|