summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2016-07-15 15:20:05 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-20 10:28:50 +0100
commit096b4c639b6326b0bc14bcb279e04ca4939ad1aa (patch)
treea0fe3cf2d43a826c21ef525fdff69b5e84181c81 /meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb
parent49d3d7da29a201b393196663d44f265f5a64ed8d (diff)
downloadpoky-096b4c639b6326b0bc14bcb279e04ca4939ad1aa.tar.gz
libxsettings-client: Remove as unneeded
xsettings-client is not meant to be a shared library and the only user in oe-core (libmatchbox) now has an in-tree copy. (From OE-Core rev: ed5cbf977dca8f3d85c8d933071c6e49fb4bd95f) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb')
-rw-r--r--meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb b/meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb
deleted file mode 100644
index 9e9336e5db..0000000000
--- a/meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb
+++ /dev/null
@@ -1,43 +0,0 @@
1SUMMARY = "utility functions for the Xsettings protocol"
2DESCRIPTION = "Libraries used for applications making use of the Xsettings configuration \
3setting propagation protocol. Controls setting of double click timeout, drag-and-drop \
4threshold, and default foreground and background colors for all applications running within a \
5desktop."
6HOMEPAGE = "http://matchbox-project.org/sources/optional-dependencies/"
7BUGTRACKER = "http://bugzilla.yoctoproject.org/"
8SECTION = "x/libs"
9LICENSE = "MIT-style"
10LIC_FILES_CHKSUM = "file://COPYING;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
11 file://xsettings-client.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
12 file://xsettings-client.c;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
13 file://xsettings-common.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
14 file://xsettings-common.c;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b"
15DEPENDS = "virtual/libx11"
16
17PR = "r5"
18
19headers = "xsettings-common.h xsettings-client.h"
20
21SRC_URI = "http://downloads.yoctoproject.org/releases/matchbox/optional-dependencies/Xsettings-client-0.10.tar.gz \
22 file://MIT-style-license \
23 file://link-x11.patch;apply=yes \
24 file://obsolete_automake_macros.patch \
25"
26
27SRC_URI[md5sum] = "c14aa9db6c097e0306dac97fb7da1add"
28SRC_URI[sha256sum] = "f274a4bc969ae192994a856b7f786c6fce96bae77f96c1c2b71dd97599e06e43"
29
30S = "${WORKDIR}/Xsettings-client-0.10"
31
32inherit autotools gettext distro_features_check
33# depends on virtual/libx11
34REQUIRED_DISTRO_FEATURES = "x11"
35
36do_patch[postfuncs] += "update_copying_file"
37update_copying_file() {
38 # This package ships with a GPLv2 COPYING file, but the author says
39 # it is actual MIT-style license, add the correct license here to
40 # avoid confusion.
41 cp -f ${WORKDIR}/MIT-style-license ${S}/COPYING
42}
43