diff options
author | Laurent Balland-Poirier <laurent.balland-poirier@laposte.net> | 2014-06-04 08:26:07 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-04 09:00:50 +0000 |
commit | 56e071690febd8ee0e4c71684c9ed592fc5a628a (patch) | |
tree | c8012b8f1d478e8af0d4ca9fcc12bd1f0ff81882 /extras | |
parent | b3843321e9cc1436cd0039f9431b4d6c5261db20 (diff) |
Build default user AutoText file MyTexts.bau
Unzip Mytexts.bau and add files to project
Add empty mimetype file
Change-Id: Icc8099bcc4fe51e12b5314a4f25fcaf5f2e0938b
Reviewed-on: https://gerrit.libreoffice.org/9639
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extras')
-rw-r--r-- | extras/CustomTarget_autotextuser.mk | 74 | ||||
-rw-r--r-- | extras/Module_extras.mk | 1 | ||||
-rw-r--r-- | extras/Package_autotextuser.mk | 2 | ||||
-rw-r--r-- | extras/source/autotext/mytexts.bau | bin | 567 -> 0 bytes | |||
-rw-r--r-- | extras/source/autotext/mytexts/BlockList.xml | 3 | ||||
-rw-r--r-- | extras/source/autotext/mytexts/META-INF/manifest.xml | 6 | ||||
-rw-r--r-- | extras/source/autotext/mytexts/mimetype | 0 |
7 files changed, 85 insertions, 1 deletions
diff --git a/extras/CustomTarget_autotextuser.mk b/extras/CustomTarget_autotextuser.mk new file mode 100644 index 000000000000..ce474344fd44 --- /dev/null +++ b/extras/CustomTarget_autotextuser.mk @@ -0,0 +1,74 @@ +# -*- 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)) + +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) : \ + $(foreach atexts,$(extras_AUTOTEXTUSER_AUTOTEXTS),$(call gb_CustomTarget_get_workdir,extras/source/autotext)/$(atexts).bau) + +$(call gb_CustomTarget_get_workdir,extras/source/autotext)/%/mimetype : $(SRCDIR)/extras/source/autotext/%/mimetype + $(call gb_Output_announce,$*/mimetype,$(true),CPY,1) + cp $< $@ + +$(call gb_CustomTarget_get_workdir,extras/source/autotext)/%.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)/%.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))/$(2) : $(SRCDIR)/$(1)/$(2) \ + | $(dir $(call gb_CustomTarget_get_workdir,$(1))/$(2)).dir + +endef + +define extras_Autotextuser_make_zip_deps +$(call gb_CustomTarget_get_workdir,$(1))/$(2) : \ + $(addprefix $(call gb_CustomTarget_get_workdir,$(1))/,$(filter $(3)/%,$(extras_AUTOTEXTUSER_MIMETYPEFILES) $(extras_AUTOTEXTUSER_XMLFILES))) \ + | $(dir $(call gb_CustomTarget_get_workdir,$(1))/$(2)).dir + +$(call gb_CustomTarget_get_workdir,$(1))/$(2) : \ + EXTRAS_AUTOTEXTUSER_FILES := $(foreach file,$(filter $(3)/%,$(extras_AUTOTEXTUSER_MIMETYPEFILES) $(extras_AUTOTEXTUSER_XMLFILES)),$(subst $(3)/,,$(file))) +$(call gb_CustomTarget_get_workdir,$(1))/$(2) : \ + EXTRAS_AUTOTEXTUSER_DIR := $(call gb_CustomTarget_get_workdir,$(1))/$(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: diff --git a/extras/Module_extras.mk b/extras/Module_extras.mk index 5b5678a22bd4..1602ec160032 100644 --- a/extras/Module_extras.mk +++ b/extras/Module_extras.mk @@ -11,6 +11,7 @@ $(eval $(call gb_Module_Module,extras)) $(eval $(call gb_Module_add_targets,extras,\ CustomTarget_autocorr \ + CustomTarget_autotextuser \ CustomTarget_glade \ Package_autocorr \ Package_autotextuser \ diff --git a/extras/Package_autotextuser.mk b/extras/Package_autotextuser.mk index 054295dca515..57ddb7f26016 100644 --- a/extras/Package_autotextuser.mk +++ b/extras/Package_autotextuser.mk @@ -7,7 +7,7 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -$(eval $(call gb_Package_Package,extras_autotextuser,$(SRCDIR)/extras/source/autotext)) +$(eval $(call gb_Package_Package,extras_autotextuser,$(call gb_CustomTarget_get_workdir,extras/source/autotext))) $(eval $(call gb_Package_add_files,extras_autotextuser,$(LIBO_SHARE_PRESETS_FOLDER)/autotext,\ mytexts.bau \ diff --git a/extras/source/autotext/mytexts.bau b/extras/source/autotext/mytexts.bau Binary files differdeleted file mode 100644 index 6df413a1b597..000000000000 --- a/extras/source/autotext/mytexts.bau +++ /dev/null diff --git a/extras/source/autotext/mytexts/BlockList.xml b/extras/source/autotext/mytexts/BlockList.xml new file mode 100644 index 000000000000..d54a37c72451 --- /dev/null +++ b/extras/source/autotext/mytexts/BlockList.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<block-list:block-list xmlns:block-list="http://openoffice.org/2001/block-list" block-list:list-name="My AutoText"/>
\ No newline at end of file diff --git a/extras/source/autotext/mytexts/META-INF/manifest.xml b/extras/source/autotext/mytexts/META-INF/manifest.xml new file mode 100644 index 000000000000..798e1d25896f --- /dev/null +++ b/extras/source/autotext/mytexts/META-INF/manifest.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest"> + <manifest:file-entry manifest:media-type="" manifest:full-path="/"/> + <manifest:file-entry manifest:media-type="" manifest:full-path="META-INF/"/> + <manifest:file-entry manifest:media-type="text/xml" manifest:full-path="BlockList.xml"/> +</manifest:manifest>
\ No newline at end of file diff --git a/extras/source/autotext/mytexts/mimetype b/extras/source/autotext/mytexts/mimetype new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/extras/source/autotext/mytexts/mimetype |