lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | def gettext_dependencies(d): |
| 2 | if d.getVar('INHIBIT_DEFAULT_DEPS') and not oe.utils.inherits(d, 'cross-canadian'): |
| 3 | return "" |
| 4 | if d.getVar('USE_NLS') == 'no': |
| 5 | return "gettext-minimal-native" |
| 6 | return "gettext-native" |
| 7 | |
| 8 | def gettext_oeconf(d): |
| 9 | if d.getVar('USE_NLS') == 'no': |
| 10 | return '--disable-nls' |
| 11 | # Remove the NLS bits if USE_NLS is no or INHIBIT_DEFAULT_DEPS is set |
| 12 | if d.getVar('INHIBIT_DEFAULT_DEPS') and not oe.utils.inherits(d, 'cross-canadian'): |
| 13 | return '--disable-nls' |
| 14 | return "--enable-nls" |
| 15 | |
| 16 | BASEDEPENDS_append = " ${@gettext_dependencies(d)}" |
| 17 | EXTRA_OECONF_append = " ${@gettext_oeconf(d)}" |
| 18 | |
| 19 | # Without this, msgfmt from gettext-native will not find ITS files |
| 20 | # provided by target recipes (for example, polkit.its). |
| 21 | GETTEXTDATADIRS_append_class-target = ":${STAGING_DATADIR}/gettext" |
| 22 | export GETTEXTDATADIRS |