2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2003-03-24 20:36:42 +01:00
|
|
|
#
|
|
|
|
# gettext
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-12-13 11:02:57 +01:00
|
|
|
|
2014-01-10 19:59:57 +01:00
|
|
|
GETTEXT_VERSION = 0.18.3.2
|
2012-09-16 14:57:50 +02:00
|
|
|
GETTEXT_SITE = $(BR2_GNU_MIRROR)/gettext
|
|
|
|
GETTEXT_INSTALL_STAGING = YES
|
|
|
|
GETTEXT_LICENSE = GPLv2+
|
|
|
|
GETTEXT_LICENSE_FILES = COPYING
|
|
|
|
|
2012-12-13 11:02:57 +01:00
|
|
|
GETTEXT_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
2013-03-24 06:08:58 +01:00
|
|
|
HOST_GETTEXT_DEPENDENCIES = # we don't want the libiconv dependency
|
2012-12-13 11:02:57 +01:00
|
|
|
|
2012-09-16 14:57:50 +02:00
|
|
|
GETTEXT_CONF_OPT += \
|
2013-05-27 15:01:00 +02:00
|
|
|
--disable-libasprintf \
|
|
|
|
--disable-acl \
|
|
|
|
--disable-openmp \
|
|
|
|
--disable-rpath \
|
|
|
|
--disable-java \
|
|
|
|
--disable-native-java \
|
|
|
|
--disable-csharp \
|
|
|
|
--disable-relocatable \
|
gettext: optimize build time
This commit significantly reduces the build time of host-gettext and
gettext, by using the capacity of gettext to handle build things in a
certain subdirectory:
- For the host variant of gettext, we only need the gettext-tools,
available in the directory of the same name in the gettext sources.
- For the target variant of gettext, we only need the gettext library
libintl, available in the gettext-runtime directory in the gettext
sources.
So by using appropriate values of GETTEXT_SUBDIR and
HOST_GETTEXT_SUBDIR, we only build what's necessary. Moreover, by
manually patching gettext-tools/Makefile.in and
gettext-runtime/Makefile.in, we make sure to not build and install
things like examples, documentation and so on.
In addition to this, these changes avoid the need to autoreconfigure
the gettext package, which was particularly long.
Thanks to these changes, the build time of gettext goes from 1 minutes
and 37 seconds to just 24 seconds, and the build of host-gettext goes
from 2 minutes and 18 seconds to 1 minute and 13 seconds.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-06-01 22:23:31 +02:00
|
|
|
--without-emacs
|
2013-05-27 15:01:00 +02:00
|
|
|
|
|
|
|
HOST_GETTEXT_CONF_OPT = \
|
2012-09-16 14:57:50 +02:00
|
|
|
--disable-libasprintf \
|
2012-12-13 11:02:57 +01:00
|
|
|
--disable-acl \
|
2012-09-16 14:57:50 +02:00
|
|
|
--disable-openmp \
|
|
|
|
--disable-rpath \
|
|
|
|
--disable-java \
|
|
|
|
--disable-native-java \
|
|
|
|
--disable-csharp \
|
|
|
|
--disable-relocatable \
|
|
|
|
--without-emacs
|
|
|
|
|
gettext: optimize build time
This commit significantly reduces the build time of host-gettext and
gettext, by using the capacity of gettext to handle build things in a
certain subdirectory:
- For the host variant of gettext, we only need the gettext-tools,
available in the directory of the same name in the gettext sources.
- For the target variant of gettext, we only need the gettext library
libintl, available in the gettext-runtime directory in the gettext
sources.
So by using appropriate values of GETTEXT_SUBDIR and
HOST_GETTEXT_SUBDIR, we only build what's necessary. Moreover, by
manually patching gettext-tools/Makefile.in and
gettext-runtime/Makefile.in, we make sure to not build and install
things like examples, documentation and so on.
In addition to this, these changes avoid the need to autoreconfigure
the gettext package, which was particularly long.
Thanks to these changes, the build time of gettext goes from 1 minutes
and 37 seconds to just 24 seconds, and the build of host-gettext goes
from 2 minutes and 18 seconds to 1 minute and 13 seconds.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-06-01 22:23:31 +02:00
|
|
|
# For the target version, we only need the runtime, and for the host
|
|
|
|
# version, we only need the tools.
|
|
|
|
GETTEXT_SUBDIR = gettext-runtime
|
|
|
|
HOST_GETTEXT_SUBDIR = gettext-tools
|
|
|
|
|
|
|
|
# Disable the build of documentation and examples of gettext-tools,
|
|
|
|
# and the build of documentation and tests of gettext-runtime.
|
|
|
|
define HOST_GETTEXT_DISABLE_UNNEEDED
|
|
|
|
$(SED) '/^SUBDIRS/s/ doc //;/^SUBDIRS/s/examples$$//' $(@D)/gettext-tools/Makefile.in
|
|
|
|
$(SED) '/^SUBDIRS/s/ doc //;/^SUBDIRS/s/tests$$//' $(@D)/gettext-runtime/Makefile.in
|
|
|
|
endef
|
|
|
|
|
|
|
|
GETTEXT_POST_PATCH_HOOKS += HOST_GETTEXT_DISABLE_UNNEEDED
|
|
|
|
HOST_GETTEXT_POST_PATCH_HOOKS += HOST_GETTEXT_DISABLE_UNNEEDED
|
|
|
|
|
2012-09-16 14:57:50 +02:00
|
|
|
# Force build with NLS support, otherwise libintl is not built
|
|
|
|
# This is needed because some packages (eg. libglib2) requires
|
|
|
|
# locales, but do not properly depend on BR2_ENABLE_LOCALE, and
|
|
|
|
# instead select BR2_PACKAGE_GETTEXT. Those packages need to be
|
|
|
|
# fixed before we can remove the following 3 lines... :-(
|
|
|
|
ifeq ($(BR2_ENABLE_LOCALE),)
|
|
|
|
GETTEXT_CONF_OPT += --enable-nls
|
2007-02-06 19:17:08 +01:00
|
|
|
endif
|
|
|
|
|
2014-04-03 15:43:30 +02:00
|
|
|
# Disable interactive confirmation in host gettextize for package fixups
|
|
|
|
define HOST_GETTEXT_GETTEXTIZE_CONFIRMATION
|
|
|
|
$(SED) '/read dummy/d' $(HOST_DIR)/usr/bin/gettextize
|
|
|
|
endef
|
|
|
|
HOST_GETTEXT_POST_INSTALL_HOOKS += HOST_GETTEXT_GETTEXTIZE_CONFIRMATION
|
|
|
|
|
2012-09-16 14:57:50 +02:00
|
|
|
$(eval $(autotools-package))
|
2013-03-23 23:26:38 +01:00
|
|
|
$(eval $(host-autotools-package))
|