Bump version to 4.1-6
[LibreOffice.git] / i18npool / CustomTarget_breakiterator.mk
blobe01e5439422fa9e60a513b886293fb12a46ecbfd
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
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/.
10 $(eval $(call gb_CustomTarget_CustomTarget,i18npool/breakiterator))
12 i18npool_BIDIR := $(call gb_CustomTarget_get_workdir,i18npool/breakiterator)
14 $(call gb_CustomTarget_get_target,i18npool/breakiterator) : \
15 $(i18npool_BIDIR)/dict_ja.cxx $(i18npool_BIDIR)/dict_zh.cxx $(i18npool_BIDIR)/OpenOffice_dat.c
17 $(i18npool_BIDIR)/dict_%.cxx : \
18 $(SRCDIR)/i18npool/source/breakiterator/data/%.dic \
19 $(call gb_Executable_get_runtime_dependencies,gendict) \
20 | $(i18npool_BIDIR)/.dir
21 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),DIC,1)
22 $(call gb_Helper_abbreviate_dirs,\
23 $(call gb_Helper_execute,gendict) $< $@ $(patsubst $(i18npool_BIDIR)/dict_%.cxx,%,$@))
25 i18npool_BRKTXTS := \
26 char_in.brk \
27 char.brk \
28 count_word_fi.brk \
29 count_word.brk \
30 dict_word_fi.brk \
31 dict_word_he.brk \
32 dict_word_hu.brk \
33 dict_word_nodash.brk \
34 dict_word_prepostdash.brk \
35 dict_word.brk \
36 edit_word_he.brk \
37 edit_word_hu.brk \
38 edit_word.brk \
39 line.brk \
40 sent.brk
42 # 'gencmn', 'genbrk' and 'genccode' are tools generated and delivered by icu project to process icu breakiterator rules.
43 # The output of gencmn generates warnings under Windows. We want to minimize the patches to external tools,
44 # so the output (OpenOffice_dat.c) is changed here to include a pragma to disable the warnings.
45 # Output of gencmn is redirected to OpenOffice_tmp.c with the -t switch.
46 $(i18npool_BIDIR)/OpenOffice_dat.c : $(SRCDIR)/i18npool/CustomTarget_breakiterator.mk \
47 $(patsubst %.brk,$(i18npool_BIDIR)/%_brk.c,$(i18npool_BRKTXTS)) \
48 $(call gb_ExternalExecutable_get_dependencies,gencmn)
49 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CMN,1)
50 $(call gb_Helper_abbreviate_dirs,\
51 RESPONSEFILE=$(shell $(gb_MKTEMP)) && \
52 $(foreach brk,$(i18npool_BRKTXTS),echo '$(brk)' >> $${RESPONSEFILE} && ) \
53 $(call gb_ExternalExecutable_get_command,gencmn) -n OpenOffice -t tmp -S -d $(i18npool_BIDIR)/ 0 $${RESPONSEFILE} && \
54 rm -f $${RESPONSEFILE} && \
55 echo '#ifdef _MSC_VER' > $@ && \
56 echo '#pragma warning( disable : 4229 4668 )' >> $@ && \
57 echo '#endif' >> $@ && \
58 cat $(subst _dat,_tmp,$@) >> $@)
60 $(i18npool_BIDIR)/%_brk.c : $(i18npool_BIDIR)/%.brk $(call gb_ExternalExecutable_get_dependencies,genccode)
61 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CCD,1)
62 $(call gb_Helper_abbreviate_dirs,\
63 $(call gb_ExternalExecutable_get_command,genccode) -n OpenOffice -d $(i18npool_BIDIR)/ $< \
64 $(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
66 $(i18npool_BIDIR)/%.brk : $(i18npool_BIDIR)/%.txt $(call gb_ExternalExecutable_get_dependencies,genbrk)
67 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),BRK,1)
68 $(call gb_Helper_abbreviate_dirs,\
69 $(call gb_ExternalExecutable_get_command,genbrk) -r $< -o $@ $(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
71 # fdo#31271 ")" reclassified in more recent Unicode Standards / ICU 4.4
72 # * Prepend set empty as of Unicode Version 6.1 / ICU 49, which bails out if used.
73 # NOTE: strips every line with _word_ 'Prepend', including $Prepend
74 # * Conditional_Japanese_Starter does not exist in ICU < 49, which bail out if used.
75 # * Hebrew_Letter does not exist in ICU < 49, which bail out if used.
76 # NOTE: I sincerely hope there is a better way to avoid problems than this abominable
77 # sed substitution...
78 $(i18npool_BIDIR)/%.txt : \
79 $(SRCDIR)/i18npool/source/breakiterator/data/%.txt | $(i18npool_BIDIR)/.dir
80 sed -e ': dummy' \
81 $(if $(filter YES,$(ICU_RECLASSIFIED_CLOSE_PARENTHESIS)),-e "s#\[:LineBreak = Close_Punctuation:\]#\[& \[:LineBreak = Close_Parenthesis:\]\]#") \
82 $(if $(filter-out YES,$(ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER)),\
83 -e '/\[:LineBreak = Conditional_Japanese_Starter:\]/d' \
84 -e 's# $$CJ##' \
85 ) \
86 $(if $(filter-out YES,$(ICU_RECLASSIFIED_HEBREW_LETTER)),\
87 -e '/\[:LineBreak = Hebrew_Letter:\]/d' \
88 -e '/^$$HLcm =/d' \
89 -e '/^$$HLcm $$NUcm;/d' \
90 -e '/^$$NUcm $$HLcm;/d' \
91 -e '/^$$HL $$CM+;/d' \
92 -e 's# | $$HL\(cm\)\?##g' \
93 -e 's#$$HLcm ##g' \
94 -e 's# $$HL##g' \
95 ) \
96 $(if $(filter YES,$(ICU_RECLASSIFIED_PREPEND_SET_EMPTY)),-e "/Prepend/d") \
97 $< > $@
99 # vim: set noet sw=4 ts=4: