office-gobmx/extras/CustomTarget_autotextuser.mk
Laurent Balland-Poirier e9dd058ccd Build all l10n AutoText
- Remove .bau files
- Unzip .bau
- Add missing mimetype files
- Remove trailing spaces and tabs
- Change directory names of standard/FN/Object 1 to standard/FN/Object_1
- Add files to project (3800 files)
- Remove non-UTF8 characters in sk/template/HLB and sk/template/HRB
- Move user autotext in CustomTarget to a sub directory "user" to avoid
  conflict with shared autotext
- Change all META-INF/manifest.xml to add DOCTYPE line and complete
  manifest tag
- Add AllLangCustomTarget_autotextshare.mk
- Make relative path for office.dtd and Manifest.dtd in xml file
- Correct pl/standard/ZO/atevent.xml and pl/template/PT1/atevent.xml

Caolan's dream: https://bugs.freedesktop.org/show_bug.cgi?id=40499#c36

Change-Id: I17486cd88f380976990291a7d12969cc7751fb84
Reviewed-on: https://gerrit.libreoffice.org/9954
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-07-02 11:22:27 +00:00

74 lines
2.9 KiB
Makefile

# -*- 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/autotext/user))
extras_AUTOTEXTUSER_AUTOTEXTS := \
mytexts \
extras_AUTOTEXTUSER_XMLFILES := \
mytexts/BlockList.xml \
mytexts/META-INF/manifest.xml \
extras_AUTOTEXTUSER_MIMETYPEFILES := \
mytexts/mimetype \
ifneq ($(sort $(foreach file,$(extras_AUTOTEXTUSER_XMLFILES),$(firstword $(subst /, ,$(file))))),$(sort $(extras_AUTOTEXTUSER_AUTOTEXTS)))
$(call gb_Output_error,defined user autotext do not match existing directories)
endif
$(call gb_CustomTarget_get_target,extras/source/autotext/user) : \
$(foreach atexts,$(extras_AUTOTEXTUSER_AUTOTEXTS),$(call gb_CustomTarget_get_workdir,extras/source/autotext/user)/$(atexts).bau)
$(call gb_CustomTarget_get_workdir,extras/source/autotext/user)/%/mimetype : $(SRCDIR)/extras/source/autotext/%/mimetype
$(call gb_Output_announce,$*/mimetype,$(true),CPY,1)
cp $< $@
$(call gb_CustomTarget_get_workdir,extras/source/autotext/user)/%.xml : $(SRCDIR)/extras/source/autotext/%.xml \
| $(call gb_ExternalExecutable_get_dependencies,xsltproc)
$(call gb_Output_announce,$*.xml,$(true),XSL,1)
$(call gb_ExternalExecutable_get_command,xsltproc) -o $@ $(SRCDIR)/extras/util/compact.xsl $<
$(call gb_CustomTarget_get_workdir,extras/source/autotext/user)/%.bau :
$(call gb_Output_announce,$*.bau,$(true),ZIP,2)
$(call gb_Helper_abbreviate_dirs,\
cd $(EXTRAS_AUTOTEXTUSER_DIR) && \
zip -qrX --filesync --must-match $@ $(EXTRAS_AUTOTEXTUSER_FILES) \
)
define extras_Autotextuser_make_file_deps
$(call gb_CustomTarget_get_workdir,$(1)/user)/$(2) : $(SRCDIR)/$(1)/$(2) \
| $(dir $(call gb_CustomTarget_get_workdir,$(1)/user)/$(2)).dir
endef
define extras_Autotextuser_make_zip_deps
$(call gb_CustomTarget_get_workdir,$(1)/user)/$(2) : \
$(addprefix $(call gb_CustomTarget_get_workdir,$(1)/user)/,$(filter $(3)/%,$(extras_AUTOTEXTUSER_MIMETYPEFILES) $(extras_AUTOTEXTUSER_XMLFILES))) \
| $(dir $(call gb_CustomTarget_get_workdir,$(1)/user)/$(2)).dir
$(call gb_CustomTarget_get_workdir,$(1)/user)/$(2) : \
EXTRAS_AUTOTEXTUSER_FILES := $(foreach file,$(filter $(3)/%,$(extras_AUTOTEXTUSER_MIMETYPEFILES) $(extras_AUTOTEXTUSER_XMLFILES)),$(subst $(3)/,,$(file)))
$(call gb_CustomTarget_get_workdir,$(1)/user)/$(2) : \
EXTRAS_AUTOTEXTUSER_DIR := $(call gb_CustomTarget_get_workdir,$(1)/user)/$(3)
endef
$(eval $(foreach file,$(extras_AUTOTEXTUSER_MIMETYPEFILES) $(extras_AUTOTEXTUSER_XMLFILES),\
$(call extras_Autotextuser_make_file_deps,extras/source/autotext,$(file)) \
))
$(eval $(foreach atexts,$(extras_AUTOTEXTUSER_AUTOTEXTS),\
$(call extras_Autotextuser_make_zip_deps,extras/source/autotext,$(atexts).bau,$(atexts)) \
))
# vim: set noet sw=4 ts=4: