summaryrefslogtreecommitdiff
path: root/solenv/gbuild/AllLangMoTarget.mk
blob: 8276f76a0b98d42935c16b61f26c65b59c184ca1 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
#   Licensed to the Apache Software Foundation (ASF) under one or more
#   contributor license agreements. See the NOTICE file distributed
#   with this work for additional information regarding copyright
#   ownership. The ASF licenses this file to you under the Apache
#   License, Version 2.0 (the "License"); you may not use this file
#   except in compliance with the License. You may obtain a copy of
#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
#

# Overview of dependencies and tasks of AllLangMoTarget
#
# target                task                depends on
# AllLangMoTarget      nothing              MoTarget for all active langs
# MoTarget             running msgfmt

# MoTarget

ifeq ($(SYSTEM_PYTHON),)
gb_Python_EXECUTABLE := $(gb_Python_INSTALLED_EXECUTABLE)
gb_Python_DEPS ?= $(call gb_Package_get_target,python3) $(call gb_Package_get_target,python_shell)
else
gb_Python_EXECUTABLE := $(PYTHON_FOR_BUILD)
gb_Python_DEPS :=
endif

$(call gb_MoTarget_get_clean_target,%) :
	$(call gb_Output_announce,$*,$(false),RES,2)
	$(call gb_Helper_abbreviate_dirs,\
		rm -f \
			$(call gb_MoTarget_get_target,$*) \
			$(call gb_MoTarget_get_install_target,$*))

$(call gb_MoTarget_get_target,%) : $(gb_Helper_MISCDUMMY) $(gb_Python_DEPS)
	$(call gb_Output_announce,$*,$(true),MO,2)
#	 after translate should look like this
#        $(call gb_Helper_abbreviate_dirs,\
#                mkdir -p $(dir $@) && \
#                $(MSGUNIQ) $(gb_POLOCATION)/$(LANGUAGE)/$(POLOCATION)/messages.po | $(MSGFMT) - -o $@)
	$(call gb_Helper_abbreviate_dirs,\
		mkdir -p $(dir $@) && $(gb_Python_EXECUTABLE) $(SRCDIR)/solenv/bin/interim-update-module-for-gettext $(gb_POLOCATION)/$(LANGUAGE)/$(POLOCATION) $@.po && \
		$(MSGUNIQ) --force-po $@.po | $(MSGFMT) - -o $@)

#$(info $(call gb_MoTarget_get_target,$(1)))
define gb_MoTarget_MoTarget
$(call gb_MoTarget_get_target,$(1)) : LIBRARY = $(2)
$(call gb_MoTarget_get_target,$(1)) : LANGUAGE = $(3)
$(call gb_MoTarget_get_target,$(1)) : POLOCATION = $(2)
$(call gb_AllLangMoTarget_get_clean_target,$(2)) : $(call gb_MoTarget_get_clean_target,$(1))

endef

define gb_MoTarget_set_polocation
$(call gb_MoTarget_get_target,$(1)) : POLOCATION = $(2)

endef

# AllLangMoTarget

gb_AllLangMoTarget_LANGS := $(filter-out qtz,$(filter-out en-US,$(gb_WITH_LANG)))

define gb_AllLangMoTarget_set_langs
gb_AllLangMoTarget_LANGS := $(1)
endef

$(call gb_AllLangMoTarget_get_clean_target,%) :
	$(call gb_Helper_abbreviate_dirs,\
		rm -f $(call gb_AllLangMoTarget_get_target,$*))

$(call gb_AllLangMoTarget_get_target,%) :
	$(call gb_Helper_abbreviate_dirs,\
		mkdir -p $(dir $@) && touch $@)

gb_MoTarget_get_install_target = $(INSTROOT)/$(LIBO_SHARE_RESOURCE_FOLDER)/$(1).mo

define gb_AllLangMoTarget_AllLangMoTarget
ifeq (,$$(filter $(1),$$(gb_AllLangMoTarget_REGISTERED)))
$$(eval $$(call gb_Output_info,Currently known AllLangMoTargets are: $(sort $(gb_AllLangMoTarget_REGISTERED)),ALL))
$$(eval $$(call gb_Output_error,AllLangMoTarget $(1) must be registered in Repository.mk))
endif
$(foreach lang,$(gb_AllLangMoTarget_LANGS),\
	$(call gb_MoTarget_MoTarget,$(1)$(lang),$(1),$(lang)))

$(foreach lang,$(gb_AllLangMoTarget_LANGS),\
$(call gb_Helper_install,$(call gb_AllLangMoTarget_get_target,$(1)), \
	$(call gb_MoTarget_get_install_target,$(shell $(SRCDIR)/solenv/bin/localestr $(lang))/LC_MESSAGES/$(1)), \
	$(call gb_MoTarget_get_target,$(1)$(lang))))

$$(eval $$(call gb_Module_register_target,$(call gb_AllLangMoTarget_get_target,$(1)),$(call gb_AllLangMoTarget_get_clean_target,$(1))))
$(call gb_Helper_make_userfriendly_targets,$(1),AllLangMoTarget)
$(call gb_Postprocess_register_target,AllResources,AllLangMoTarget,$(1))

endef

define gb_AllLangMoTarget_set_polocation
$(foreach lang,$(gb_AllLangMoTarget_LANGS),\
        $(call gb_MoTarget_set_polocation,$(1)$(lang),$(2)))

endef

# vim: set noet sw=4: