summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/fontconfig
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-graphics/fontconfig
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/fontconfig')
-rw-r--r--meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb20
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb
index d0da419ce0..63e4062862 100644
--- a/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb
+++ b/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb
@@ -29,33 +29,33 @@ SRC_URI[sha256sum] = "9f0d852b39d75fc655f9f53850eb32555394f36104a044bb2b2fc9e66d
29 29
30UPSTREAM_CHECK_REGEX = "fontconfig-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)" 30UPSTREAM_CHECK_REGEX = "fontconfig-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"
31 31
32do_configure_prepend() { 32do_configure:prepend() {
33 # work around https://bugs.freedesktop.org/show_bug.cgi?id=101280 33 # work around https://bugs.freedesktop.org/show_bug.cgi?id=101280
34 rm -f ${S}/src/fcobjshash.h ${S}/src/fcobjshash.gperf 34 rm -f ${S}/src/fcobjshash.h ${S}/src/fcobjshash.gperf
35} 35}
36 36
37do_install_append_class-target() { 37do_install:append:class-target() {
38 # duplicate fc-cache for postinstall script 38 # duplicate fc-cache for postinstall script
39 mkdir -p ${D}${libexecdir} 39 mkdir -p ${D}${libexecdir}
40 ln ${D}${bindir}/fc-cache ${D}${libexecdir}/${MLPREFIX}fc-cache 40 ln ${D}${bindir}/fc-cache ${D}${libexecdir}/${MLPREFIX}fc-cache
41} 41}
42 42
43do_install_append_class-nativesdk() { 43do_install:append:class-nativesdk() {
44 # duplicate fc-cache for postinstall script 44 # duplicate fc-cache for postinstall script
45 mkdir -p ${D}${libexecdir} 45 mkdir -p ${D}${libexecdir}
46 ln ${D}${bindir}/fc-cache ${D}${libexecdir}/${MLPREFIX}fc-cache 46 ln ${D}${bindir}/fc-cache ${D}${libexecdir}/${MLPREFIX}fc-cache
47} 47}
48 48
49PACKAGES =+ "fontconfig-utils" 49PACKAGES =+ "fontconfig-utils"
50FILES_${PN} =+ "${datadir}/xml/*" 50FILES:${PN} =+ "${datadir}/xml/*"
51FILES_${PN}-dev += "${datadir}/gettext/*" 51FILES:${PN}-dev += "${datadir}/gettext/*"
52FILES_fontconfig-utils = "${bindir}/* ${libexecdir}/*" 52FILES:fontconfig-utils = "${bindir}/* ${libexecdir}/*"
53 53
54# Work around past breakage in debian.bbclass 54# Work around past breakage in debian.bbclass
55RPROVIDES_fontconfig-utils = "libfontconfig-utils" 55RPROVIDES:fontconfig-utils = "libfontconfig-utils"
56RREPLACES_fontconfig-utils = "libfontconfig-utils" 56RREPLACES:fontconfig-utils = "libfontconfig-utils"
57RCONFLICTS_fontconfig-utils = "libfontconfig-utils" 57RCONFLICTS:fontconfig-utils = "libfontconfig-utils"
58DEBIAN_NOAUTONAME_fontconfig-utils = "1" 58DEBIAN_NOAUTONAME:fontconfig-utils = "1"
59 59
60inherit autotools pkgconfig relative_symlinks gettext 60inherit autotools pkgconfig relative_symlinks gettext
61 61