aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dosfstools/dosfstools_2.11.bb
blob: a5f6e034dd35e8ad3e6c038af50511d569bfd1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# dosfstools OE build file
# Copyright (C) 2004-2006, Advanced Micro Devices, Inc.  All Rights Reserved
# Released under the MIT license (see packages/COPYING)

DESCRIPTION = "DOS FAT Filesystem Utilities"

SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"

PR = "r0"

SRC_URI = "ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-${PV}.src.tar.gz \
	   file://alignment_hack.patch;patch=1 \
           file://msdos_fat12_undefined.patch;patch=1 \
	   file://include-linux-types.patch;patch=1"

do_install () {
	oe_runmake "PREFIX=${D}" "SBINDIR=${D}${sbindir}" \
		   "MANDIR=${D}${mandir}/man8" install
}
OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/meta/classes/gettext.bbclass
blob: 0b69fa9392d2455668c410031c6d2413af43f075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
        bb.data.setVar('EXTRA_OECONF', cfg, d)

python () {
    gettext_after_parse(d)
}

DEPENDS =+ "gettext-native"
EXTRA_OECONF += "--enable-nls"