summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-04-26 19:20:30 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-29 19:35:58 +0100
commit4fe89e0acdb401f484c4edcb853245c0b27406b7 (patch)
tree79e20512b4bd1589160cb095369439c374684f6d /meta/recipes-graphics
parentff5b6b7eb1abf950c6856f1826bfdb6dfc53a506 (diff)
downloadpoky-4fe89e0acdb401f484c4edcb853245c0b27406b7.tar.gz
libxsettings-client: fix COPYING file
Fixed: * Move the code of copy COPYING file from do_configure_append() to do_patch[postfuncs] since we had moved license-checksum from do_package_qa to do_populate_lic. * Add xsettings-client.c and xsettings-common.c to LIC_FILES_CHKSUM. * Update comments. (From OE-Core rev: 89332686ac6c756672cbf67c2df70c5150efa998) (From OE-Core rev: 6eb173a6f4e67a9426dd19307a65dde6f3bf8974) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r--meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb13
1 files changed, 8 insertions, 5 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
index 67c5e27776..9e9336e5db 100644
--- a/meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb
+++ b/meta/recipes-graphics/libxsettings-client/libxsettings-client_0.10.bb
@@ -9,7 +9,9 @@ SECTION = "x/libs"
9LICENSE = "MIT-style" 9LICENSE = "MIT-style"
10LIC_FILES_CHKSUM = "file://COPYING;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \ 10LIC_FILES_CHKSUM = "file://COPYING;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
11 file://xsettings-client.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \ 11 file://xsettings-client.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
12 file://xsettings-common.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"
13DEPENDS = "virtual/libx11" 15DEPENDS = "virtual/libx11"
14 16
15PR = "r5" 17PR = "r5"
@@ -31,10 +33,11 @@ inherit autotools gettext distro_features_check
31# depends on virtual/libx11 33# depends on virtual/libx11
32REQUIRED_DISTRO_FEATURES = "x11" 34REQUIRED_DISTRO_FEATURES = "x11"
33 35
34do_configure_prepend() { 36do_patch[postfuncs] += "update_copying_file"
35 # This package doesn't ship with its own COPYING file and 37update_copying_file() {
36 # autotools will install a GPLv2 one instead of the actual MIT-style license here. 38 # This package ships with a GPLv2 COPYING file, but the author says
37 # Add the correct license here to avoid confusion. 39 # it is actual MIT-style license, add the correct license here to
40 # avoid confusion.
38 cp -f ${WORKDIR}/MIT-style-license ${S}/COPYING 41 cp -f ${WORKDIR}/MIT-style-license ${S}/COPYING
39} 42}
40 43