diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-support/consolekit | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-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-support/consolekit')
-rw-r--r-- | meta/recipes-support/consolekit/consolekit_0.4.6.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-support/consolekit/consolekit_0.4.6.bb b/meta/recipes-support/consolekit/consolekit_0.4.6.bb index 22e755747b..3d28ba2a24 100644 --- a/meta/recipes-support/consolekit/consolekit_0.4.6.bb +++ b/meta/recipes-support/consolekit/consolekit_0.4.6.bb | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | |||
9 | file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3" | 9 | file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3" |
10 | 10 | ||
11 | DEPENDS = "glib-2.0 glib-2.0-native dbus dbus-glib virtual/libx11" | 11 | DEPENDS = "glib-2.0 glib-2.0-native dbus dbus-glib virtual/libx11" |
12 | RDEPENDS_${PN} += "base-files" | 12 | RDEPENDS:${PN} += "base-files" |
13 | 13 | ||
14 | inherit autotools pkgconfig features_check | 14 | inherit autotools pkgconfig features_check |
15 | # depends on virtual/libx11 | 15 | # depends on virtual/libx11 |
@@ -31,15 +31,15 @@ PACKAGECONFIG[pam] = "--enable-pam-module --with-pam-module-dir=${base_libdir}/s | |||
31 | PACKAGECONFIG[polkit] = "--with-polkit,--without-polkit,polkit" | 31 | PACKAGECONFIG[polkit] = "--with-polkit,--without-polkit,polkit" |
32 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--with-systemdsystemunitdir=" | 32 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--with-systemdsystemunitdir=" |
33 | 33 | ||
34 | FILES_${PN} += "${exec_prefix}/lib/ConsoleKit \ | 34 | FILES:${PN} += "${exec_prefix}/lib/ConsoleKit \ |
35 | ${libdir}/ConsoleKit ${systemd_unitdir} ${base_libdir} \ | 35 | ${libdir}/ConsoleKit ${systemd_unitdir} ${base_libdir} \ |
36 | ${datadir}/dbus-1 ${datadir}/PolicyKit ${datadir}/polkit*" | 36 | ${datadir}/dbus-1 ${datadir}/PolicyKit ${datadir}/polkit*" |
37 | 37 | ||
38 | PACKAGES =+ "pam-plugin-ck-connector" | 38 | PACKAGES =+ "pam-plugin-ck-connector" |
39 | FILES_pam-plugin-ck-connector += "${base_libdir}/security/*.so" | 39 | FILES:pam-plugin-ck-connector += "${base_libdir}/security/*.so" |
40 | RDEPENDS_pam-plugin-ck-connector += "${PN}" | 40 | RDEPENDS:pam-plugin-ck-connector += "${PN}" |
41 | 41 | ||
42 | do_install_append() { | 42 | do_install:append() { |
43 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 43 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
44 | install -d ${D}${sysconfdir}/tmpfiles.d | 44 | install -d ${D}${sysconfdir}/tmpfiles.d |
45 | echo "d ${localstatedir}/log/ConsoleKit - - - -" \ | 45 | echo "d ${localstatedir}/log/ConsoleKit - - - -" \ |