From 516fb340b1842a5deec3de61e47bb5a7ec5c1980 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Thu, 26 Jun 2014 21:26:11 +0200 Subject: integrate libpagemaker Change-Id: I077d7c9a41793abdf5f001386f44ac407f94a6d3 --- .../libpagemaker/ExternalProject_libpagemaker.mk | 41 ++++++++++++++++++++++ external/libpagemaker/Makefile | 7 ++++ external/libpagemaker/Module_libpagemaker.mk | 17 +++++++++ external/libpagemaker/README | 1 + .../libpagemaker/UnpackedTarball_libpagemaker.mk | 14 ++++++++ 5 files changed, 80 insertions(+) create mode 100644 external/libpagemaker/ExternalProject_libpagemaker.mk create mode 100644 external/libpagemaker/Makefile create mode 100644 external/libpagemaker/Module_libpagemaker.mk create mode 100644 external/libpagemaker/README create mode 100644 external/libpagemaker/UnpackedTarball_libpagemaker.mk (limited to 'external/libpagemaker') diff --git a/external/libpagemaker/ExternalProject_libpagemaker.mk b/external/libpagemaker/ExternalProject_libpagemaker.mk new file mode 100644 index 000000000000..f2bd4cf01421 --- /dev/null +++ b/external/libpagemaker/ExternalProject_libpagemaker.mk @@ -0,0 +1,41 @@ +# -*- 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_ExternalProject_run,build,\ + export PKG_CONFIG="" \ + && ./configure \ + --with-pic \ + --enable-static \ + --disable-shared \ + --without-docs \ + --disable-tools \ + --disable-debug \ + --disable-werror \ + --disable-weffc \ + $(if $(VERBOSE)$(verbose),--disable-silent-rules,--enable-silent-rules) \ + CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost) -I$(BUILDDIR)/config_$(gb_Side))" \ + $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ + && $(MAKE) \ + ) + +# vim: set noet sw=4 ts=4: diff --git a/external/libpagemaker/Makefile b/external/libpagemaker/Makefile new file mode 100644 index 000000000000..e4968cf85fb6 --- /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 000000000000..4888775fa7cf --- /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 000000000000..e60dbd73ccc6 --- /dev/null +++ b/external/libpagemaker/README @@ -0,0 +1 @@ +Library parsing Adobe PageMaker documents. diff --git a/external/libpagemaker/UnpackedTarball_libpagemaker.mk b/external/libpagemaker/UnpackedTarball_libpagemaker.mk new file mode 100644 index 000000000000..fec1c03871dd --- /dev/null +++ b/external/libpagemaker/UnpackedTarball_libpagemaker.mk @@ -0,0 +1,14 @@ +# -*- 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))) + +# vim: set noet sw=4 ts=4: -- cgit