aboutsummaryrefslogtreecommitdiffstats
path: root/classes/gettext.bbclass
blob: 80b05a97e892eb25e6186984496181a195872ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
def gettext_after_parse(d):
    # Remove the NLS bits if USE_NLS is no.
    if bb.data.getVar('USE_NLS', d, 1) == 'no':
        cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
        cfg += " --disable-nls"
        depends = bb.data.getVar('DEPENDS', d, 1) or ""
        bb.data.setVar('DEPENDS', oe_filter_out('^(gettext|gettext-native)$', depends, d), d)
        bb.data.setVar('EXTRA_OECONF', cfg, d)

python () {
    gettext_after_parse(d)
}

DEPENDS_GETTEXT = "gettext-native virtual/libiconv virtual/libintl"

DEPENDS_prepend += "${DEPENDS_GETTEXT} "
DEPENDS_virtclass-native_prepend = "${DEPENDS_GETTEXT} "
DEPENDS_virtclass-nativesdk_prepend = "${DEPENDS_GETTEXT} "
DEPENDS_virtclass-cross_prepend = "${DEPENDS_GETTEXT} "
EXTRA_OECONF += "--enable-nls"