summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/settings-daemon
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-sato/settings-daemon
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/settings-daemon')
-rw-r--r--meta/recipes-sato/settings-daemon/files/70settings-daemon.sh1
-rw-r--r--meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb28
2 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-sato/settings-daemon/files/70settings-daemon.sh b/meta/recipes-sato/settings-daemon/files/70settings-daemon.sh
deleted file mode 100644
index 95374135f2..0000000000
--- a/meta/recipes-sato/settings-daemon/files/70settings-daemon.sh
+++ /dev/null
@@ -1 +0,0 @@
1/usr/bin/settings-daemon &
diff --git a/meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb b/meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb
deleted file mode 100644
index 3869ab4a02..0000000000
--- a/meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb
+++ /dev/null
@@ -1,28 +0,0 @@
1SUMMARY = "Provides a bridge between gconf and xsettings"
2HOMEPAGE = "https://git.yoctoproject.org/cgit/cgit.cgi/xsettings-daemon/"
3BUGTRACKER = "http://bugzilla.yoctoproject.org/"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://xsettings-manager.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
6 file://xsettings-common.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b"
7DEPENDS = "gconf glib-2.0 gtk+3"
8SECTION = "x11"
9
10PV .= "+git"
11# SRCREV tagged 0.0.2 + one patch
12SRCREV = "df669c6579a6ac7e1ef56be66617f35ae7d33d68"
13SRC_URI = "git://git.yoctoproject.org/xsettings-daemon;branch=master;protocol=https \
14 file://70settings-daemon.sh \
15 "
16UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
17
18inherit autotools pkgconfig gconf features_check
19
20FILES:${PN} = "${bindir}/* ${sysconfdir}"
21
22# Requires gdk-x11-2.0 which is provided by gtk when x11 in DISTRO_FEATURES
23REQUIRED_DISTRO_FEATURES = "x11"
24
25do_install:append () {
26 install -d ${D}/${sysconfdir}/X11/Xsession.d
27 install -m 755 ${UNPACKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/
28}