summaryrefslogtreecommitdiff
path: root/liborcus/UnpackedTarball_orcus.mk
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-09-09 15:29:43 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-09-11 14:34:55 +0200
commit1ee760335b8562f52728baa6ffebb2e79b28e789 (patch)
treeeabc4cd9adbc50756f55856a1fe49eee0693862d /liborcus/UnpackedTarball_orcus.mk
parented2ad9638208b905f6501fedcd9b84d4176b9529 (diff)
liborcus: convert to gbuild
Change-Id: I6a0d869526ffd40bfe5ff81267f241c049d050f0
Diffstat (limited to 'liborcus/UnpackedTarball_orcus.mk')
-rw-r--r--liborcus/UnpackedTarball_orcus.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/liborcus/UnpackedTarball_orcus.mk b/liborcus/UnpackedTarball_orcus.mk
new file mode 100644
index 000000000000..6846f22f3374
--- /dev/null
+++ b/liborcus/UnpackedTarball_orcus.mk
@@ -0,0 +1,31 @@
+# -*- 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,orcus))
+
+$(eval $(call gb_UnpackedTarball_set_tarball,orcus,$(ORCUS_TARBALL)))
+
+$(eval $(call gb_UnpackedTarball_set_patchlevel,orcus,0))
+
+orcus_patches :=
+# -Werror,-Wunused-variable -Werror,-Wunused-private-field
+orcus_patches += liborcus_0.1.0-warnings.patch
+# make config.sub recognize arm-linux-androideabi
+orcus_patches += liborcus_0.1.0-configure.patch
+# fix MinGW build
+orcus_patches += liborcus_0.1.0-mingw.patch
+# disable boost "auto lib" in MSVC build
+# for some reason (CRLF in file?) this patch doesn't want to apply on unix...
+orcus_patches += liborcus_0.1.0-boost_disable_auto_lib.patch
+
+$(eval $(call gb_UnpackedTarball_add_patches,orcus,\
+ $(foreach patch,$(orcus_patches),liborcus/$(patch)) \
+))
+
+# vim: set noet sw=4 ts=4: