d2aeb7b8f5
Change-Id: I76f8cab70d4c1a5b98bb5ba1608676d34570694b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119879 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# -*- 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,libodfgen))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,libodfgen,$(ODFGEN_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_patchlevel,libodfgen,0))
|
|
|
|
$(eval $(call gb_UnpackedTarball_update_autoconf_configs,libodfgen))
|
|
|
|
# * external/libodfgen/ellipticalarc.patch reported upstream as
|
|
# <https://sourceforge.net/p/libwpd/mailman/message/37329517/> "[Libwpd-devel] [PATCH] Avoid
|
|
# division by zero for empty elliptical arc":
|
|
$(eval $(call gb_UnpackedTarball_add_patches,libodfgen, \
|
|
external/libodfgen/ellipticalarc.patch \
|
|
))
|
|
|
|
ifeq ($(SYSTEM_REVENGE),)
|
|
$(eval $(call gb_UnpackedTarball_add_patches,libodfgen, \
|
|
external/libodfgen/rpath.patch \
|
|
))
|
|
endif
|
|
|
|
ifneq ($(OS),MACOSX)
|
|
ifneq ($(OS),WNT)
|
|
$(eval $(call gb_UnpackedTarball_add_patches,libodfgen, \
|
|
external/libodfgen/libodfgen-bundled-soname.patch.0 \
|
|
))
|
|
endif
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|