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/libabw | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.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/libabw')
-rw-r--r-- | external/libabw/ExternalProject_libabw.mk | 46 | ||||
-rw-r--r-- | external/libabw/Makefile | 7 | ||||
-rw-r--r-- | external/libabw/Module_libabw.mk | 17 | ||||
-rw-r--r-- | external/libabw/README | 3 | ||||
-rw-r--r-- | external/libabw/UnpackedTarball_libabw.mk | 16 |
5 files changed, 89 insertions, 0 deletions
diff --git a/external/libabw/ExternalProject_libabw.mk b/external/libabw/ExternalProject_libabw.mk new file mode 100644 index 000000000..50e66fdb7 --- /dev/null +++ b/external/libabw/ExternalProject_libabw.mk @@ -0,0 +1,46 @@ +# -*- 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,libabw)) + +$(eval $(call gb_ExternalProject_use_autoconf,libabw,build)) + +$(eval $(call gb_ExternalProject_register_targets,libabw,\ + build \ +)) + +$(eval $(call gb_ExternalProject_use_externals,libabw,\ + boost_headers \ + libxml2 \ + revenge \ + zlib \ +)) + +$(call gb_ExternalProject_get_state_target,libabw,build) : + $(call gb_Trace_StartRange,libabw,EXTERNAL) + $(call gb_ExternalProject_run,build,\ + export PKG_CONFIG="" \ + && MAKE=$(MAKE) ./configure \ + --with-pic \ + --enable-static \ + --disable-shared \ + --without-docs \ + --disable-tools \ + $(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \ + --disable-werror \ + $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \ + $(if $(gb_FULLDEPS),,--disable-dependency-tracking) \ + 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,libabw,EXTERNAL) + +# vim: set noet sw=4 ts=4: diff --git a/external/libabw/Makefile b/external/libabw/Makefile new file mode 100644 index 000000000..e4968cf85 --- /dev/null +++ b/external/libabw/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/libabw/Module_libabw.mk b/external/libabw/Module_libabw.mk new file mode 100644 index 000000000..096150613 --- /dev/null +++ b/external/libabw/Module_libabw.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,libabw)) + +$(eval $(call gb_Module_add_targets,libabw,\ + ExternalProject_libabw \ + UnpackedTarball_libabw \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/external/libabw/README b/external/libabw/README new file mode 100644 index 000000000..ce209901f --- /dev/null +++ b/external/libabw/README @@ -0,0 +1,3 @@ +AbiWord file word processor format import library from + +[https://wiki.documentfoundation.org/DLP/Libraries/libabw] diff --git a/external/libabw/UnpackedTarball_libabw.mk b/external/libabw/UnpackedTarball_libabw.mk new file mode 100644 index 000000000..6860e0905 --- /dev/null +++ b/external/libabw/UnpackedTarball_libabw.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,libabw)) + +$(eval $(call gb_UnpackedTarball_set_tarball,libabw,$(ABW_TARBALL))) + +$(eval $(call gb_UnpackedTarball_update_autoconf_configs,libabw)) + +# vim: set noet sw=4 ts=4: |