mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
It fails to compile xfce4-datetime-setter occasionally when system load is high: | ../git/xfce/main.c:42:10: fatal error: cc-datetime-resources.h: No such file or directory | 42 | #include "cc-datetime-resources.h" | | ^~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. Update datetime_panel_dep to make sure cc-datetime-resources.h be generated before including. xfce4-datetime-setter depends on libxfce4ui which requires distro feature 'x11', so make it require 'x11' too. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
709 B
BlitzBasic
23 lines
709 B
BlitzBasic
DESCRIPTION = "A fork of (early) gnome-control-center datetime panel for XFCE. \
|
|
It is based upon GTK3 and embedds into recent xfce4-settings."
|
|
HOMEPAGE = "https://github.com/schnitzeltony/xfce4-datetime-setter"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=75859989545e37968a99b631ef42722e"
|
|
|
|
DEPENDS = "glib-2.0-native libxfce4ui"
|
|
|
|
SRC_URI = "git://github.com/schnitzeltony/xfce4-datetime-setter.git;protocol=https \
|
|
file://fix-inner-dependency.patch \
|
|
"
|
|
SRCREV = "5c7a73a3824b03b91719e05e2604b97c7a72d50f"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit gettext meson distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "systemd x11"
|
|
|
|
FILES_${PN} += "${datadir}/icons/hicolor"
|
|
|
|
RDEPENDS_${PN} = "tzdata"
|