Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / solenv / gbuild / Gallery.mk
blob3d3fa2092edc15067153ed67cb4607717d6bfcb3
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 # class Gallery
12 # Handles creation of image galleries.
14 gb_Gallery_TRANSLATE := $(SRCDIR)/solenv/bin/desktop-translate.py
15 gb_Gallery_INSTDIR := $(LIBO_SHARE_FOLDER)/gallery
17 define gb_Gallery__command
18 $(call gb_Helper_abbreviate_dirs,\
19 rm -f $(call gb_Gallery_get_workdir,$(2))/* && \
20 RESPONSEFILE=$(call gb_var2file,$(shell $(call gb_MKTEMP)),$(GALLERY_FILES)) && \
21 $(call gb_Helper_print_on_error,\
22 $(call gb_Executable_get_command,gengal,$(ICECREAM_RUN)) \
23 --build-tree \
24 --destdir $(GALLERY_BASEDIR) \
25 --name "$(GALLERY_NAME)" \
26 --path $(call gb_Gallery_get_workdir,$(2)) \
27 --filenames $(call gb_Helper_make_url,$$RESPONSEFILE) \
28 -env:UserInstallation=$(call gb_Helper_make_url,$(call gb_Gallery_get_workdir,$(2))/user),\
29 $@.log \
30 ) && \
31 rm $$RESPONSEFILE && \
32 touch $@ \
34 endef
36 define gb_Gallery__command_str
37 cp -f $(GALLERY_STRFILE) $@ && \
38 $(call gb_ExternalExecutable_get_command,python) \
39 $(gb_Gallery_TRANSLATE) \
40 --ext "str" \
41 -d $(GALLERY_WORKDIR) \
42 $(GALLERY_ULFFILE)
43 endef
45 gb_Gallery__get_final_target = $(WORKDIR)/Gallery/$(1).final
47 $(dir $(call gb_Gallery_get_target,$(1))).dir :
48 $(if $(wildcard $(dir $@)),,mkdir -p $(dir $@))
50 $(dir $(call gb_Gallery_get_target,$(1)))%/.dir :
51 $(if $(wildcard $(dir $@)),,mkdir -p $(dir $@))
53 $(call gb_Gallery_get_target,%) : $(call gb_Executable_get_target,gengal) \
54 | $(call gb_Executable_get_runtime_dependencies,gengal)
55 $(call gb_Output_announce,$*,$(true),GAL,1)
56 $(call gb_Trace_StartRange,$*,GAL)
57 $(call gb_Gallery__command,$@,$*)
58 $(call gb_Trace_EndRange,$*,GAL)
60 $(call gb_Gallery__get_final_target,%) :
61 touch $@
63 # difficult to determine source dep for this one...
64 $(call gb_Gallery_get_workdir,%).ulf : \
65 $(call gb_Executable_get_runtime_dependencies,ulfex)
66 $(call gb_CustomTarget_ulfex__command,$@,$(GALLERY_ULFFILE),\
67 $(foreach lang,$(gb_TRANS_LANGS),\
68 $(gb_POLOCATION)/$(lang)/extras/source/gallery/share.po))
70 $(call gb_Gallery_get_workdir,%).str : $(gb_Gallery_TRANSLATE) \
71 $(call gb_ExternalExecutable_get_dependencies,python)
72 $(call gb_Output_announce,$*,$(true),STR,1)
73 $(call gb_Trace_StartRange,$*,STR)
74 $(call gb_Gallery__command_str,$@,$*)
75 $(call gb_Trace_EndRange,$*,STR)
77 .PHONY : $(call gb_Gallery_get_clean_target,%)
78 $(call gb_Gallery_get_clean_target,%) :
79 $(call gb_Output_announce,$*,$(false),GAL,1)
80 $(call gb_Helper_abbreviate_dirs,\
81 rm -rf \
82 $(call gb_Gallery__get_final_target,$*) \
83 $(call gb_Gallery_get_target,$*) \
84 $(call gb_Gallery_get_target,$*).log \
85 $(call gb_Gallery_get_workdir,$*) \
88 # the theme package
89 gb_Gallery_get_packagename = Gallery/$(1)
90 # the files package
91 gb_Gallery_get_files_packagename = Gallery/Files/$(1)
93 # Create a gallery.
95 # basedir less one directory will be stripped from paths of the files when they are
96 # inserted into the gallery.
98 # gb_Gallery_Gallery gallery basedir name
99 define gb_Gallery_Gallery
100 $(call gb_Gallery__Gallery_impl,$(1),$(call gb_Gallery_get_packagename,$(1)),$(2),$(3))
102 # setup the files package - we install all of these too
103 $(call gb_Package_Package_internal,$(call gb_Gallery_get_files_packagename,$(1)),$(SRCDIR)/$(2))
104 $(call gb_Gallery__get_final_target,$(1)) : $(call gb_Package_get_target,$(call gb_Gallery_get_files_packagename,$(1)))
105 $(call gb_Gallery_get_clean_target,$(1)) : $(call gb_Package_get_clean_target,$(call gb_Gallery_get_files_packagename,$(1)))
107 endef
110 gb_Gallery_basedir = $(patsubst %/,%,$(dir $(SRCDIR)/$(1)))
112 # TODO: we process the same ulf file for every gallery. That does not
113 # make sense.
115 # gb_Gallery__Gallery_impl gallery package basedir name
116 define gb_Gallery__Gallery_impl
117 $(call gb_Package_Package_internal,$(2),$(call gb_Gallery_get_workdir,$(1)))
118 $(call gb_Package_add_file,$(2),$(gb_Gallery_INSTDIR)/$(1).sdg,$(1).sdg)
119 $(call gb_Package_add_file,$(2),$(gb_Gallery_INSTDIR)/$(1).sdv,$(1).sdv)
120 $(call gb_Package_add_file,$(2),$(gb_Gallery_INSTDIR)/$(1).thm,$(1).thm)
121 $(call gb_Package_add_file,$(2),$(gb_Gallery_INSTDIR)/$(1).str,$(1).str)
123 # strip URL, without / to help the internal gallery system
124 $(call gb_Gallery_get_target,$(1)) : GALLERY_BASEDIR := $(call gb_Helper_make_url,$(call gb_Gallery_basedir,$(3)))
125 $(call gb_Gallery_get_target,$(1)) : GALLERY_FILES :=
126 $(call gb_Gallery_get_target,$(1)) : GALLERY_NAME := $(1)
127 $(call gb_Gallery_get_workdir,$(1))/$(1).str : GALLERY_STRFILE := $(SRCDIR)/$(3)/$(1).str
128 $(call gb_Gallery_get_workdir,$(1))/$(1).str : GALLERY_ULFFILE := $(call gb_Gallery_get_workdir,$(1))/$(1).ulf
129 $(call gb_Gallery_get_workdir,$(1))/$(1).str : GALLERY_WORKDIR := $(call gb_Gallery_get_workdir,$(1))
130 $(call gb_Gallery_get_workdir,$(1))/$(1).ulf : GALLERY_BASEDIR := $(3)
131 $(call gb_Gallery_get_workdir,$(1))/$(1).ulf : GALLERY_ULFFILE := $(call gb_Gallery_basedir,$(3))/share/gallery_names.ulf
133 $(call gb_Gallery_get_workdir,$(1))/$(1).ulf : \
134 $(call gb_Gallery_basedir,$(3))/share/gallery_names.ulf \
135 $(call gb_Gallery_get_target,$(1)) # that rule pre-cleans our output directory
137 $(call gb_Gallery_get_workdir,$(1))/$(1).str : $(call gb_Gallery_get_workdir,$(1))/$(1).ulf
139 # order-only, the Gallery-Target also makes those files
140 $(addprefix $(call gb_Gallery_get_workdir,$(1))/$(1),.sdg .sdv .thm): | $(call gb_Gallery_get_target,$(1))
141 $(call gb_Gallery__get_final_target,$(1)) : $(call gb_Package_get_target,$(2))
143 $(call gb_Gallery_get_clean_target,$(1)) : $(call gb_Package_get_clean_target,$(2))
144 $(call gb_Gallery_get_target,$(1)) :| $(dir $(call gb_Gallery_get_target,$(1))).dir \
145 $(call gb_Gallery_get_workdir,$(1))/.dir
147 $$(eval $$(call gb_Module_register_target,$(call gb_Gallery__get_final_target,$(1)),$(call gb_Gallery_get_clean_target,$(1))))
148 $(call gb_Helper_make_userfriendly_targets,$(1),Gallery,$(call gb_Gallery__get_final_target,$(1)))
150 endef
152 # Add a file to the gallery.
154 # The file is given by path relative to $(SRCDIR).
156 # gb_Gallery_add_file gallery file
157 define gb_Gallery_add_file
158 $(call gb_Gallery_get_target,$(1)) : $(SRCDIR)/$(3)
159 $(call gb_Gallery_get_target,$(1)) : GALLERY_FILES += $(call gb_Helper_make_url,$(SRCDIR)/$(3))
160 $(call gb_Package_add_file,$(call gb_Gallery_get_files_packagename,$(1)),$(2)/$(notdir $(3)),$(notdir $(3)))
162 endef
164 # Add several files to the gallery at once.
166 # The files are given by path relative to $(SRCDIR).
168 # gb_Gallery_add_files gallery file(s)
169 define gb_Gallery_add_files
170 $(foreach fname,$(3),$(call gb_Gallery_add_file,$(1),$(2),$(fname)))
172 endef
174 # vim: set noet sw=4 ts=4: