diff options
-rw-r--r-- | sdext/Extension_minimizer.mk | 4 | ||||
-rw-r--r-- | sdext/Extension_pdfimport.mk | 4 | ||||
-rw-r--r-- | sdext/Extension_presenter.mk | 4 | ||||
-rw-r--r-- | sdext/platform.mk | 49 | ||||
-rw-r--r-- | sdext/source/minimizer/description.xml | 4 | ||||
-rw-r--r-- | sdext/source/pdfimport/description.xml | 4 | ||||
-rw-r--r-- | sdext/source/presenter/description.xml | 4 |
7 files changed, 67 insertions, 6 deletions
diff --git a/sdext/Extension_minimizer.mk b/sdext/Extension_minimizer.mk index 1afc2c4e7ded..2954d46388f7 100644 --- a/sdext/Extension_minimizer.mk +++ b/sdext/Extension_minimizer.mk @@ -25,8 +25,12 @@ # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # instead of those above. +include $(dir $(realpath $(lastword $(MAKEFILE_LIST))))platform.mk + $(eval $(call gb_Extension_Extension,presentation-minimizer,sdext/source/minimizer)) +$(eval $(call gb_Extension_set_platform,presentation-minimizer,$(sdext_PLATFORM))) + $(eval $(call gb_Extension_add_package_dependencies,presentation-minimizer,\ sdext_minimizer_manifest \ )) diff --git a/sdext/Extension_pdfimport.mk b/sdext/Extension_pdfimport.mk index 8c29d0020308..2cba816c93aa 100644 --- a/sdext/Extension_pdfimport.mk +++ b/sdext/Extension_pdfimport.mk @@ -25,8 +25,12 @@ # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # instead of those above. +include $(dir $(realpath $(lastword $(MAKEFILE_LIST))))platform.mk + $(eval $(call gb_Extension_Extension,pdfimport,sdext/source/pdfimport)) +$(eval $(call gb_Extension_set_platform,pdfimport,$(sdext_PLATFORM))) + $(eval $(call gb_Extension_set_manifest,pdfimport,$(WORKDIR)/CustomTarget/sdext/source/pdfimport/config/manifest.xml)) $(eval $(call gb_Extension_add_package_dependencies,pdfimport,\ diff --git a/sdext/Extension_presenter.mk b/sdext/Extension_presenter.mk index 537805935061..0f47585e881b 100644 --- a/sdext/Extension_presenter.mk +++ b/sdext/Extension_presenter.mk @@ -25,8 +25,12 @@ # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # instead of those above. +include $(dir $(realpath $(lastword $(MAKEFILE_LIST))))platform.mk + $(eval $(call gb_Extension_Extension,presenter-screen,sdext/source/presenter)) +$(eval $(call gb_Extension_set_platform,presenter-screen,$(sdext_PLATFORM))) + $(eval $(call gb_Extension_set_manifest,presenter-screen,$(WORKDIR)/CustomTarget/sdext/source/presenter/manifest.xml)) $(eval $(call gb_Extension_add_package_dependencies,presenter-screen,\ diff --git a/sdext/platform.mk b/sdext/platform.mk new file mode 100644 index 000000000000..bda30c23fadb --- /dev/null +++ b/sdext/platform.mk @@ -0,0 +1,49 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2012 Red Hat, Inc., David Tardon <dtardon@redhat.com> +# (initial developer) +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +# TODO: the variables from rtlbootstrap.mk could (and should) be set by +# configure +# TODO: there should be their lowercase variants, too +include $(OUTDIR)/inc/rtlbootstrap.mk + +sdext__LOWERCASE_TABLE := A-a B-b C-c D-d E-e F-f G-g H-h I-i J-j K-k L-l M-m N-n O-o P-p R-r S-s T-t U-u V-v W-w X-x Y-y Z-z + +define sdext__lcase_impl +$(if $(3),$(call sdext__lcase,$(firstword $(3)),$(3),$(subst $(1),$(2),$(4))),$(subst $(1),$(2),$(4))) +endef + +define sdext__lcase +$(call sdext__lcase_impl,$(firstword $(subst -, ,$(1))),$(lastword $(subst -, ,$(1))),$(wordlist 2,$(words $(2)),$(2)),$(3)) +endef + +define sdext__lowercase +$(call sdext__lcase,$(firstword $(sdext__LOWERCASE_TABLE)),$(sdext__LOWERCASE_TABLE),$(1)) +endef + +sdext_PLATFORM := $(call sdext__lowercase,$(RTL_OS)_$(RTL_ARCH)) + +# vim:set shiftwidth=4 softtabstop=4 expandtab: diff --git a/sdext/source/minimizer/description.xml b/sdext/source/minimizer/description.xml index eef22a750af6..b2043123c32e 100644 --- a/sdext/source/minimizer/description.xml +++ b/sdext/source/minimizer/description.xml @@ -5,7 +5,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dep="http://openoffice.org/extensions/description/2006"> - <identifier value="UPDATED_IDENTIFIER"/> + <identifier value="com.sun.star.PresentationMinimizer-@PLATFORM@"/> <dependencies> <OpenOffice.org-minimal-version value="2.3" dep:name="OpenOffice.org 2.3"/> @@ -13,7 +13,7 @@ <version value="1.0.3"/> - <platform value="UPDATED_SUPPORTED_PLATFORM"/> + <platform value="@PLATFORM@"/> <publisher> <name xlink:href="http://www.documentfoundation.org" lang="en-US">The Document Foundation</name> diff --git a/sdext/source/pdfimport/description.xml b/sdext/source/pdfimport/description.xml index 503753af178c..b75aeb8fa2e3 100644 --- a/sdext/source/pdfimport/description.xml +++ b/sdext/source/pdfimport/description.xml @@ -4,7 +4,7 @@ xmlns="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dep="http://openoffice.org/extensions/description/2006"> - <identifier value="UPDATED_IDENTIFIER" /> + <identifier value="com.sun.star.PDFImport-@PLATFORM@" /> <dependencies> <OpenOffice.org-minimal-version value="3.0" dep:name="OpenOffice.org 3.0"/> @@ -12,7 +12,7 @@ <version value="1.0.5" /> - <platform value="UPDATED_SUPPORTED_PLATFORM" /> + <platform value="@PLATFORM@" /> <publisher> <name xlink:href="http://www.documentfoundation.org" lang="en-US">The Document Foundation</name> diff --git a/sdext/source/presenter/description.xml b/sdext/source/presenter/description.xml index 22e51199bf09..8c647d6a9c4d 100644 --- a/sdext/source/presenter/description.xml +++ b/sdext/source/presenter/description.xml @@ -5,7 +5,7 @@ xmlns:dep="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink"> - <identifier value="com.sun.PresenterScreen-UPDATED_PLATFORM" /> + <identifier value="com.sun.PresenterScreen-@PLATFORM@" /> <dependencies> <OpenOffice.org-minimal-version value="3.3" dep:name="OpenOffice.org 3.3"/> @@ -13,7 +13,7 @@ <version value="1.1.0" /> - <platform value="UPDATED_PLATFORM" /> + <platform value="@PLATFORM@" /> <publisher> <name xlink:href="http://www.documentfoundation.org" lang="en-US">The Document Foundation</name> |