diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
commit | 940b4d1848e8c70ab7642901a68594e8016caffc (patch) | |
tree | eb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /external/libpagemaker | |
parent | Initial commit. (diff) | |
download | libreoffice-1ad18e38974bb28c3d98d0be8f7d8c18fc56de29.tar.xz libreoffice-1ad18e38974bb28c3d98d0be8f7d8c18fc56de29.zip |
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'external/libpagemaker')
-rw-r--r-- | external/libpagemaker/ExternalProject_libpagemaker.mk | 44 | ||||
-rw-r--r-- | external/libpagemaker/Makefile | 7 | ||||
-rw-r--r-- | external/libpagemaker/Module_libpagemaker.mk | 17 | ||||
-rw-r--r-- | external/libpagemaker/README | 3 | ||||
-rw-r--r-- | external/libpagemaker/UnpackedTarball_libpagemaker.mk | 16 |
5 files changed, 87 insertions, 0 deletions
diff --git a/external/libpagemaker/ExternalProject_libpagemaker.mk b/external/libpagemaker/ExternalProject_libpagemaker.mk new file mode 100644 index 000000000..34254b872 --- /dev/null +++ b/external/libpagemaker/ExternalProject_libpagemaker.mk @@ -0,0 +1,44 @@ +# -*- 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_ExternalProject_ExternalProject,libpagemaker)) + +$(eval $(call gb_ExternalProject_use_autoconf,libpagemaker,build)) + +$(eval $(call gb_ExternalProject_register_targets,libpagemaker,\ + build \ +)) + +$(eval $(call gb_ExternalProject_use_externals,libpagemaker,\ + boost_headers \ + revenge \ +)) + +$(call gb_ExternalProject_get_state_target,libpagemaker,build) : + $(call gb_Trace_StartRange,libpagemaker,EXTERNAL) + $(call gb_ExternalProject_run,build,\ + export PKG_CONFIG="" \ + && MAKE=$(MAKE) ./configure \ + --with-pic \ + --enable-static \ + --disable-shared \ + --without-docs \ + --disable-tools \ + --disable-debug \ + --disable-werror \ + --disable-weffc \ + $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \ + CXXFLAGS="$(gb_CXXFLAGS) $(if $(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS))" \ + CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \ + $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ + && $(MAKE) \ + ) + $(call gb_Trace_EndRange,libpagemaker,EXTERNAL) + +# vim: set noet sw=4 ts=4: diff --git a/external/libpagemaker/Makefile b/external/libpagemaker/Makefile new file mode 100644 index 000000000..e4968cf85 --- /dev/null +++ b/external/libpagemaker/Makefile @@ -0,0 +1,7 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- + +module_directory:=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) + +include $(module_directory)/../../solenv/gbuild/partial_build.mk + +# vim: set noet sw=4 ts=4: diff --git a/external/libpagemaker/Module_libpagemaker.mk b/external/libpagemaker/Module_libpagemaker.mk new file mode 100644 index 000000000..4888775fa --- /dev/null +++ b/external/libpagemaker/Module_libpagemaker.mk @@ -0,0 +1,17 @@ +# -*- 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_Module_Module,libpagemaker)) + +$(eval $(call gb_Module_add_targets,libpagemaker,\ + ExternalProject_libpagemaker \ + UnpackedTarball_libpagemaker \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/external/libpagemaker/README b/external/libpagemaker/README new file mode 100644 index 000000000..309aa82fe --- /dev/null +++ b/external/libpagemaker/README @@ -0,0 +1,3 @@ +Library parsing Adobe PageMaker documents. + +[https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker] diff --git a/external/libpagemaker/UnpackedTarball_libpagemaker.mk b/external/libpagemaker/UnpackedTarball_libpagemaker.mk new file mode 100644 index 000000000..752d5c0eb --- /dev/null +++ b/external/libpagemaker/UnpackedTarball_libpagemaker.mk @@ -0,0 +1,16 @@ +# -*- 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_UnpackedTarball_UnpackedTarball,libpagemaker)) + +$(eval $(call gb_UnpackedTarball_set_tarball,libpagemaker,$(PAGEMAKER_TARBALL))) + +$(eval $(call gb_UnpackedTarball_update_autoconf_configs,libpagemaker)) + +# vim: set noet sw=4 ts=4: |