summaryrefslogtreecommitdiff
path: root/recipes/gettext.recipe
blob: 66e97885cd4b6acde4fee74b10ccf8418935b96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import shutil

class Recipe(recipe.Recipe):
    name = 'gettext'
    version = '0.19.5.1'
    # only libraries are LGPLv2+, tools are GPLv3+ and defined below
    licenses = [License.LGPLv2Plus]
    stype = SourceType.TARBALL
    url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.5.1.tar.gz'
    srcdir = 'gettext-runtime'
    patches = ['gettext/0001-Fix-linker-error-redefinition-of-vasprintf.patch',
               'gettext/0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch' ]
    platform_deps = {
        Platform.ANDROID:  ['libiconv'],
        Platform.WINDOWS:  ['mingw-runtime'],
            }

    files_libs = ['libintl']
    files_devel = ['include/libintl.h']

    def prepare (self):
        intl_path = os.path.join(self.make_dir, 'intl')
        self.make = 'cd %s && make' % intl_path
        self.make_install = 'cd %s && make PACKAGE=gettext-tools install' % intl_path
        if self.config.target_platform == Platform.WINDOWS:
            self.configure_options += ' --enable-threads=win32'
        if self.config.target_platform != Platform.LINUX:
            self.runtime_dep = True
        self.append_env['CFLAGS'] = '-Dlocale_charset=intl_locale_charset'