# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python import shutil class Recipe(recipe.Recipe): name = 'gettext' version = '0.18.3.2' # 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.18.3.2.tar.gz' srcdir = 'gettext-runtime' patches = ['gettext/0001-Fix-linker-error-redefinition-of-vasprintf.patch'] platform_deps = { Platform.DARWIN: ['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 if self.config.target_platform == Platform.IOS: self.append_env['CFLAGS'] = '-Dlocale_charset=intl_locale_charset'