summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/man-db
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-extended/man-db
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-extended/man-db')
-rw-r--r--meta/recipes-extended/man-db/man-db_2.9.4.bb20
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/recipes-extended/man-db/man-db_2.9.4.bb b/meta/recipes-extended/man-db/man-db_2.9.4.bb
index cfa6561769..c4cdbcc3b4 100644
--- a/meta/recipes-extended/man-db/man-db_2.9.4.bb
+++ b/meta/recipes-extended/man-db/man-db_2.9.4.bb
@@ -11,11 +11,11 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
11SRC_URI[sha256sum] = "b66c99edfad16ad928c889f87cf76380263c1609323c280b3a9e6963fdb16756" 11SRC_URI[sha256sum] = "b66c99edfad16ad928c889f87cf76380263c1609323c280b3a9e6963fdb16756"
12 12
13DEPENDS = "libpipeline gdbm groff-native base-passwd" 13DEPENDS = "libpipeline gdbm groff-native base-passwd"
14RDEPENDS_${PN} += "base-passwd" 14RDEPENDS:${PN} += "base-passwd"
15PACKAGE_WRITE_DEPS += "base-passwd" 15PACKAGE_WRITE_DEPS += "base-passwd"
16 16
17# | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr' 17# | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr'
18USE_NLS_libc-musl = "no" 18USE_NLS:libc-musl = "no"
19 19
20inherit gettext pkgconfig autotools systemd 20inherit gettext pkgconfig autotools systemd
21 21
@@ -31,17 +31,17 @@ do_install() {
31 fi 31 fi
32} 32}
33 33
34do_install_append_libc-musl() { 34do_install:append:libc-musl() {
35 rm -f ${D}${libdir}/charset.alias 35 rm -f ${D}${libdir}/charset.alias
36} 36}
37 37
38FILES_${PN} += "${prefix}/lib/tmpfiles.d" 38FILES:${PN} += "${prefix}/lib/tmpfiles.d"
39 39
40FILES_${PN}-dev += "${libdir}/man-db/libman.so ${libdir}/${BPN}/libmandb.so" 40FILES:${PN}-dev += "${libdir}/man-db/libman.so ${libdir}/${BPN}/libmandb.so"
41 41
42RDEPENDS_${PN} += "groff" 42RDEPENDS:${PN} += "groff"
43RRECOMMENDS_${PN} += "less" 43RRECOMMENDS:${PN} += "less"
44RPROVIDES_${PN} += " man" 44RPROVIDES:${PN} += " man"
45 45
46def compress_pkg(d): 46def compress_pkg(d):
47 if bb.utils.contains("INHERIT", "compress_doc", True, False, d): 47 if bb.utils.contains("INHERIT", "compress_doc", True, False, d):
@@ -54,7 +54,7 @@ def compress_pkg(d):
54 return "xz" 54 return "xz"
55 return "" 55 return ""
56 56
57RDEPENDS_${PN} += "${@compress_pkg(d)}" 57RDEPENDS:${PN} += "${@compress_pkg(d)}"
58 58
59SYSTEMD_SERVICE_${PN} = "man-db.timer man-db.service" 59SYSTEMD_SERVICE:${PN} = "man-db.timer man-db.service"
60SYSTEMD_AUTO_ENABLE ?= "disable" 60SYSTEMD_AUTO_ENABLE ?= "disable"