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-sato/rxvt-unicode | |
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-sato/rxvt-unicode')
-rw-r--r-- | meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc b/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc index ff2c8f009d..69b8a659ed 100644 --- a/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc +++ b/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc | |||
@@ -16,10 +16,10 @@ SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 | |||
16 | inherit autotools pkgconfig update-alternatives | 16 | inherit autotools pkgconfig update-alternatives |
17 | 17 | ||
18 | PROVIDES = "virtual/x-terminal-emulator" | 18 | PROVIDES = "virtual/x-terminal-emulator" |
19 | ALTERNATIVE_${PN} = "x-terminal-emulator" | 19 | ALTERNATIVE:${PN} = "x-terminal-emulator" |
20 | ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/rxvt" | 20 | ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/rxvt" |
21 | 21 | ||
22 | CFLAGS_append = " -fpermissive" | 22 | CFLAGS:append = " -fpermissive" |
23 | 23 | ||
24 | EXTRA_OECONF = "--enable-xim \ | 24 | EXTRA_OECONF = "--enable-xim \ |
25 | --enable-utmp --enable-wtmp --enable-lastlog \ | 25 | --enable-utmp --enable-wtmp --enable-lastlog \ |
@@ -31,25 +31,25 @@ EXTRA_OECONF = "--enable-xim \ | |||
31 | --enable-combining --disable-perl \ | 31 | --enable-combining --disable-perl \ |
32 | --with-x=${STAGING_DIR_HOST}${prefix}" | 32 | --with-x=${STAGING_DIR_HOST}${prefix}" |
33 | 33 | ||
34 | EXTRA_OECONF_append_libc-musl = " --disable-wtmp --disable-lastlog" | 34 | EXTRA_OECONF:append:libc-musl = " --disable-wtmp --disable-lastlog" |
35 | 35 | ||
36 | PACKAGECONFIG ??= "" | 36 | PACKAGECONFIG ??= "" |
37 | PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification," | 37 | PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification," |
38 | 38 | ||
39 | do_configure_prepend () { | 39 | do_configure:prepend () { |
40 | if [ ! -e ${S}/acinclude.m4 ]; then | 40 | if [ ! -e ${S}/acinclude.m4 ]; then |
41 | cp ${S}/aclocal.m4 ${S}/acinclude.m4 | 41 | cp ${S}/aclocal.m4 ${S}/acinclude.m4 |
42 | fi | 42 | fi |
43 | } | 43 | } |
44 | 44 | ||
45 | do_compile_prepend () { | 45 | do_compile:prepend () { |
46 | echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h | 46 | echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h |
47 | echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h | 47 | echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h |
48 | echo '#define LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h | 48 | echo '#define LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h |
49 | echo '#define HAVE_XLOCALE 1' >> config.h | 49 | echo '#define HAVE_XLOCALE 1' >> config.h |
50 | } | 50 | } |
51 | 51 | ||
52 | do_install_append () { | 52 | do_install:append () { |
53 | install -d ${D}/${datadir} | 53 | install -d ${D}/${datadir} |
54 | install -d ${D}/${datadir}/applications | 54 | install -d ${D}/${datadir}/applications |
55 | install -d ${D}/${datadir}/pixmaps/ | 55 | install -d ${D}/${datadir}/pixmaps/ |
@@ -58,4 +58,4 @@ do_install_append () { | |||
58 | install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications | 58 | install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications |
59 | } | 59 | } |
60 | 60 | ||
61 | FILES_${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/pixmaps/rxvt.png" | 61 | FILES:${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/pixmaps/rxvt.png" |