summaryrefslogtreecommitdiff
path: root/extras/CustomTarget_templates.mk
blob: c6bea14a27dfcd078165eb035e2291c653bf2f5d (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
# -*- 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/.
#

$(eval $(call gb_CustomTarget_CustomTarget,extras/source/templates))

# # for OTT templates: mimetype, styles.xml, META-INF/manifest.xml and
# Thumbnails/thumbnail.png files are automatically added for each template
# # for OTG templates: mimetype, content.xml, styles.xml, META-INF/manifest.xml and
# Thumbnails/thumbnail.png files are automatically added for each template
# list of meta.xml files (one per template) + other files (content.xml, manifest.rdf, settings.xml, pictures...)
extras_TEMPLATES_XMLFILES := \
	officorr/Modern_business_letter_sans_serif/meta.xml \
	officorr/Modern_business_letter_serif/meta.xml \
	offimisc/Businesscard-with-logo/meta.xml \
	personal/CV/meta.xml \
	personal/Resume1page/meta.xml \
	styles/Default/meta.xml \
	styles/Modern/meta.xml \
	styles/Simple/meta.xml \
	officorr/Modern_business_letter_sans_serif/content.xml \
	officorr/Modern_business_letter_serif/content.xml \
	offimisc/Businesscard-with-logo/content.xml \
	personal/CV/content.xml \
	personal/Resume1page/content.xml \
	officorr/Modern_business_letter_sans_serif/manifest.rdf \
	officorr/Modern_business_letter_serif/manifest.rdf \
	offimisc/Businesscard-with-logo/manifest.rdf \
	personal/CV/manifest.rdf \
	personal/Resume1page/manifest.rdf \
	offimisc/Businesscard-with-logo/settings.xml \
	offimisc/Businesscard-with-logo/Pictures/10000201000001F4000000A0108F3F06.png \
	draw/bpmn/meta.xml \
	l10n/zh_CN_ott_normal/meta.xml \
	l10n/zh_CN_ott_normal/content.xml \

# param: style-base (e.g. Modern)
extras_TEMPLATES_XMLFILES_RELATIVE = $(subst $(1)/,,$(filter $(1)/%,$(extras_TEMPLATES_XMLFILES)))

.SECONDEXPANSION:
# secondexpansion since the patterns not just cover a filename portion, but also include a
# directory portion with different number of elements
# copy regular files (mimetype, *.jpg, *.png, *.rdf, *.svg, *.svm, …)
$(call gb_CustomTarget_get_workdir,extras/source/templates)/% : $(SRCDIR)/extras/source/templates/% \
        | $$(dir $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*).dir
	$(call gb_Output_announce,templates/$*,$(true),CPY,1)
	$(call gb_Trace_StartRange,templates/$*,CPY)
	cp $< $@
	$(call gb_Trace_EndRange,templates/$*,CPY)

# test and copy xml files
$(call gb_CustomTarget_get_workdir,extras/source/templates)/%.xml : $(SRCDIR)/extras/source/templates/%.xml \
        | $(call gb_ExternalExecutable_get_dependencies,xsltproc) \
          $$(dir $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*.xml).dir
	$(call gb_Output_announce,templates/$*.xml,$(true),XSL,1)
	$(call gb_Trace_StartRange,templates/$*.xml,XSL)
	$(call gb_ExternalExecutable_get_command,xsltproc) --nonet -o $@ $(SRCDIR)/extras/util/compact.xsl $<
	$(call gb_Trace_EndRange,templates/$*.xml,XSL)

# zip files to OTT
$(call gb_CustomTarget_get_workdir,extras/source/templates)/%.ott : \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            mimetype $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            styles.xml $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            META-INF/manifest.xml $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            Thumbnails/thumbnail.png $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) )
	$(call gb_Output_announce,templates/$*.ott,$(true),ZIP,2)
	$(call gb_Trace_StartRange,templates/$*.ott,ZIP)
	$(call gb_Helper_abbreviate_dirs,\
		cd $(dir $<) && \
		zip -q0X --filesync --must-match $@ mimetype && \
		zip -qrX --must-match $@ styles.xml META-INF/manifest.xml Thumbnails/thumbnail.png && \
		zip -qrX --must-match $@ $(call extras_TEMPLATES_XMLFILES_RELATIVE,$*) \
	)
	$(call gb_Trace_EndRange,templates/$*.ott,ZIP)

# zip files to OTG
$(call gb_CustomTarget_get_workdir,extras/source/templates)/%.otg : \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            mimetype $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            content.xml $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            styles.xml $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            META-INF/manifest.xml $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) ) \
        $$(addprefix $(call gb_CustomTarget_get_workdir,extras/source/templates)/$$*/,\
            Thumbnails/thumbnail.png $$(call extras_TEMPLATES_XMLFILES_RELATIVE,$$*) )
	$(call gb_Output_announce,templates/$*.otg,$(true),ZIP,2)
	$(call gb_Trace_StartRange,templates/$*.otg,ZIP)
	$(call gb_Helper_abbreviate_dirs,\
		cd $(dir $<) && \
		zip -q0X --filesync --must-match $@ mimetype && \
		zip -qrX --must-match $@ content.xml styles.xml META-INF/manifest.xml Thumbnails/thumbnail.png && \
		zip -qrX --must-match $@ $(call extras_TEMPLATES_XMLFILES_RELATIVE,$*) \
	)
	$(call gb_Trace_EndRange,templates/$*.otg,ZIP)

# vim: set noet sw=4 ts=4: