1# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2#
3# This file is part of the LibreOffice project.
4#
5# This Source Code Form is subject to the terms of the Mozilla Public
6# License, v. 2.0. If a copy of the MPL was not distributed with this
7# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8#
9
10$(eval $(call gb_CustomTarget_CustomTarget,i18npool/breakiterator))
11
12i18npool_BIDIR := $(call gb_CustomTarget_get_workdir,i18npool/breakiterator)
13
14ifeq ($(OS),iOS)
15
16$(call gb_CustomTarget_get_target,i18npool/breakiterator) : \
17	$(i18npool_BIDIR)/dict_ja.data $(i18npool_BIDIR)/dict_zh.data $(i18npool_BIDIR)/OpenOffice_dat.c
18
19$(i18npool_BIDIR)/dict_%.data : \
20		$(SRCDIR)/i18npool/source/breakiterator/data/%.dic \
21		$(call gb_Executable_get_runtime_dependencies,gendict) \
22		| $(i18npool_BIDIR)/.dir
23	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),DIC,1)
24	$(call gb_Helper_abbreviate_dirs,\
25		$(call gb_Helper_execute,gendict) $< $@ $(patsubst $(i18npool_BIDIR)/dict_%.cxx,%,$@))
26else
27
28$(call gb_CustomTarget_get_target,i18npool/breakiterator) : \
29	$(i18npool_BIDIR)/dict_ja.cxx $(i18npool_BIDIR)/dict_zh.cxx $(i18npool_BIDIR)/OpenOffice_dat.c
30
31$(i18npool_BIDIR)/dict_%.cxx : \
32		$(SRCDIR)/i18npool/source/breakiterator/data/%.dic \
33		$(call gb_Executable_get_runtime_dependencies,gendict) \
34		| $(i18npool_BIDIR)/.dir
35	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),DIC,1)
36	$(call gb_Helper_abbreviate_dirs,\
37		$(call gb_Helper_execute,gendict) $< $@ $(patsubst $(i18npool_BIDIR)/dict_%.cxx,%,$@))
38
39endif
40
41# Do we want the char_in.brk data? It's for languages in India (and bn_BD)
42ifeq ($(WITH_LOCALES),)
43i18npool_breakiterator_want_in=TRUE
44else ifneq ($(filter bn bn_% gu gu_% hi hi_% kn kn_% ml ml_% or or_% pa pa_% ta ta_% te te_%,$(WITH_LOCALES)),)
45i18npool_breakiterator_want_in=TRUE
46endif
47
48i18npool_BRKTXTS := \
49    $(if $(i18npool_breakiterator_want_in),char_in.brk) \
50    char.brk \
51    count_word.brk \
52    $(call gb_Helper_optional_locale,he,dict_word_he.brk) \
53    $(call gb_Helper_optional_locale,hu,dict_word_hu.brk) \
54    dict_word_nodash.brk \
55    dict_word_prepostdash.brk \
56    dict_word.brk \
57    $(call gb_Helper_optional_locale,he,edit_word_he.brk) \
58    $(call gb_Helper_optional_locale,hu,edit_word_hu.brk) \
59    edit_word.brk \
60    line.brk \
61    sent.brk
62
63# 'gencmn', 'genbrk' and 'genccode' are tools generated and delivered by icu project to process icu breakiterator rules.
64# The output of gencmn generates warnings under Windows. We want to minimize the patches to external tools,
65# so the output (OpenOffice_dat.c) is changed here to include a pragma to disable the warnings.
66# Output of gencmn is redirected to OpenOffice_tmp.c with the -t switch.
67$(i18npool_BIDIR)/OpenOffice_dat.c : $(SRCDIR)/i18npool/CustomTarget_breakiterator.mk \
68		$(patsubst %.brk,$(i18npool_BIDIR)/%_brk.c,$(i18npool_BRKTXTS)) \
69		$(call gb_ExternalExecutable_get_dependencies,gencmn)
70	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CMN,1)
71	$(call gb_Helper_abbreviate_dirs,\
72		RESPONSEFILE=$(shell $(gb_MKTEMP)) && \
73		$(foreach brk,$(i18npool_BRKTXTS),echo '$(brk)' >> $${RESPONSEFILE} && ) \
74		$(call gb_ExternalExecutable_get_command,gencmn) -n OpenOffice -t tmp -S -d $(i18npool_BIDIR)/ 0 $${RESPONSEFILE} && \
75		rm -f $${RESPONSEFILE} && \
76		echo '#ifdef _MSC_VER' > $@ && \
77		echo '#pragma warning( disable : 4229 )' >> $@ && \
78		echo '#endif' >> $@ && \
79		cat $(subst _dat,_tmp,$@) >> $@)
80
81$(i18npool_BIDIR)/%_brk.c : $(i18npool_BIDIR)/%.brk $(call gb_ExternalExecutable_get_dependencies,genccode)
82	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CCD,1)
83	$(call gb_Helper_abbreviate_dirs,\
84		$(call gb_ExternalExecutable_get_command,genccode) -n OpenOffice -d $(i18npool_BIDIR)/ $< \
85			$(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
86
87$(i18npool_BIDIR)/%.brk : $(i18npool_BIDIR)/%.txt $(call gb_ExternalExecutable_get_dependencies,genbrk)
88	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),BRK,1)
89	$(call gb_Helper_abbreviate_dirs,\
90		$(call gb_ExternalExecutable_get_command,genbrk) \
91		$(if $(SYSTEM_ICU),,-i $(call gb_UnpackedTarball_get_dir,icu)/source/data/out/tmp) \
92		-r $< -o $@ $(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
93
94# fdo#31271 ")" reclassified in more recent Unicode Standards / ICU 4.4
95# * Prepend set empty as of Unicode Version 6.1 / ICU 49, which bails out if used.
96#   NOTE: strips every line with _word_ 'Prepend', including $Prepend
97# * Conditional_Japanese_Starter does not exist in ICU < 49, which bail out if used.
98# * Hebrew_Letter does not exist in ICU < 49, which bail out if used.
99#   NOTE: I sincerely hope there is a better way to avoid problems than this abominable
100#   sed substitution...
101$(i18npool_BIDIR)/%.txt : \
102	$(SRCDIR)/i18npool/source/breakiterator/data/%.txt | $(i18npool_BIDIR)/.dir
103	sed -e "s#\[:LineBreak =  Close_Punctuation:\]#\[& \[:LineBreak = Close_Parenthesis:\]\]#" \
104		$(if $(ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER),,\
105			-e '/\[:LineBreak =  Conditional_Japanese_Starter:\]/d' \
106			-e 's# $$CJ##' \
107		) \
108		$(if $(ICU_RECLASSIFIED_HEBREW_LETTER),,\
109			-e '/\[:LineBreak =  Hebrew_Letter:\]/d' \
110			-e '/^$$HLcm =/d' \
111			-e '/^$$HLcm $$NUcm;/d' \
112			-e '/^$$NUcm $$HLcm;/d' \
113			-e '/^$$HL $$CM+;/d' \
114			-e 's# | $$HL\(cm\)\?##g' \
115			-e 's#$$HLcm ##g' \
116			-e 's# $$HL##g' \
117		) \
118		$(if $(ICU_RECLASSIFIED_PREPEND_SET_EMPTY),-e "/Prepend/d") \
119		$< > $@
120
121# vim: set noet sw=4 ts=4:
122