diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /readlicense_oo/CustomTarget_license.mk | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'readlicense_oo/CustomTarget_license.mk')
-rw-r--r-- | readlicense_oo/CustomTarget_license.mk | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/readlicense_oo/CustomTarget_license.mk b/readlicense_oo/CustomTarget_license.mk new file mode 100644 index 000000000..b4baf7a8f --- /dev/null +++ b/readlicense_oo/CustomTarget_license.mk @@ -0,0 +1,75 @@ +# -*- 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,readlicense_oo/license)) + +readlicense_oo_DIR := $(call gb_CustomTarget_get_workdir,readlicense_oo/license) +readlicense_oo_LICENSE_xml := $(SRCDIR)/readlicense_oo/license/license.xml + +$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/LICENSE.html + +ifeq ($(OS),WNT) +$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/license.txt +else +$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/LICENSE +endif + +$(readlicense_oo_DIR)/LICENSE.html : \ + $(SRCDIR)/readlicense_oo/license/license_html.xsl \ + $(readlicense_oo_LICENSE_xml) \ + | $(readlicense_oo_DIR)/.dir \ + $(call gb_ExternalExecutable_get_dependencies,xsltproc) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),XSL) + $(call gb_Helper_abbreviate_dirs, \ + $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@ \ + --stringparam build_type "$(BUILD_TYPE)" \ + --stringparam os "$(OS)" \ + --stringparam themes "$(WITH_THEMES)" \ + $(if $(MPL_SUBSET),,--stringparam no_mpl_subset no_mpl_subset) \ + $< \ + $(readlicense_oo_LICENSE_xml) \ + $(if $(filter WNT,$(OS)), \ + && $(gb_AWK) 'sub("$$","\r")' $@ > $@.tmp \ + && mv $@.tmp $@ \ + ) \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),XSL) + +$(readlicense_oo_DIR)/LICENSE : \ + $(SRCDIR)/readlicense_oo/license/license_plain_text.xsl \ + $(readlicense_oo_LICENSE_xml) \ + | $(readlicense_oo_DIR)/.dir \ + $(call gb_ExternalExecutable_get_dependencies,xsltproc) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),XSL) + $(call gb_Helper_abbreviate_dirs, \ + $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@ \ + --stringparam build_type "$(BUILD_TYPE)" \ + --stringparam os "$(OS)" \ + --stringparam themes "$(WITH_THEMES)" \ + $(if $(MPL_SUBSET),,--stringparam no_mpl_subset no_mpl_subset) \ + $< \ + $(readlicense_oo_LICENSE_xml) \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),XSL) + +ifeq ($(OS),WNT) +$(readlicense_oo_DIR)/license.txt : \ + $(readlicense_oo_DIR)/LICENSE \ + | $(readlicense_oo_DIR)/.dir + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),AWK,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),AWK) + $(call gb_Helper_abbreviate_dirs, \ + $(gb_AWK) 'sub("$$","\r")' $< > $@.tmp && mv $@.tmp $@ \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),AWK) +endif + +# vim:set shiftwidth=4 tabstop=4 noexpandtab: |