Branch libreoffice-5-0-4
[LibreOffice.git] / solenv / gbuild / extensions / pre_SharedLangList.mk
blob4d32a3ed14e30c78f9b654950047bf3c50d7eb6c
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 # share language list with dmake build system
20 include $(SRCDIR)/solenv/inc/langlist.mk
22 ifneq ($(WITH_LANG),ALL)
23 gb_WITH_LANG=$(WITH_LANG)
24 else
25 # expand ALL based on language list)
26 gb_WITH_LANG=$(completelangiso)
27 endif
28 gb_HELP_LANGS := en-US
30 ifneq ($(ENABLE_RELEASE_BUILD),TRUE)
31 ifneq ($(WITH_LANG),)
32 gb_WITH_LANG += qtz
33 gb_HELP_LANGS += qtz
34 endif
35 endif
37 gb_TRANS_LANGS = $(filter-out en-US,$(filter-out qtz,$(gb_WITH_LANG)))
39 gb_HELP_LANGS += \
40 $(foreach lang,$(filter-out $(WITH_POOR_HELP_LOCALIZATIONS),$(gb_TRANS_LANGS)),\
41 $(if \
42 $(and \
43 $(wildcard $(SRCDIR)/helpcontent2/source/auxiliary/$(lang)),\
44 $(wildcard $(SRCDIR)/translations/source/$(lang)/helpcontent2)),\
45 $(lang)))
47 # Langs that need special handling for registry files. This is done by
48 # MAKE_LANG_SPECIFIC flag in scp.
49 gb_CJK_LANGS := $(filter $(gb_WITH_LANG),ja ko zh-CN zh-TW)
50 gb_CTL_LANGS := $(filter $(gb_WITH_LANG),ar bo dz fa gu he hi km ky-CN lo my ne or pa-IN ta th)
51 gb_CTLSEQCHECK_LANGS := $(filter $(gb_CTL_LANGS),km lo th)
53 # vim: set noet ts=4 sw=4: