summaryrefslogtreecommitdiff
path: root/ios/CustomTarget_LibreOffice_app.mk
blob: 1bf67993593230b91ba69aa58a4699b03483c89c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# -*- 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_CustomTarget_CustomTarget,ios/LibreOffice_app))

# We distinguish between builds for the simulator and device by
# looking for the "iarmv7" or "i386" in the -arch option that is part
# of $(CC)

ifneq ($(filter i386,$(CC)),)
xcode_sdk=iphonesimulator
xcode_arch=i386
else
xcode_sdk=iphoneos
xcode_arch=armv7
endif

# If run from Xcode, check that its configuration (device or
# simulator) matches that of gbuild. We detect being run from Xcode by
# looking for $(SCRIPT_OUTPUT_FILE_0). The Run Script build phase in
# our project has as its (single) output file the location of the app
# executable in its app bundle.

ifneq ($(SCRIPT_OUTPUT_FILE_0),)

export CCACHE_CPP2=y

ifneq ($(CURRENT_ARCH),$(xcode_arch))
$(error Xcode platform ($(CURRENT_ARCH)) does not match that of this build tree ($(xcode_arch)))
endif

endif

ifneq ($(SCRIPT_OUTPUT_FILE_0),)
ifeq ($(EXECUTABLE_NAME),LibreOffice)
# When run from Xcode, we move the LibreOffice executable from solver into
# the LibreOffice.app directory that Xcode uses. We also set up/copy all
# the run-time configuration etc files that the app needs.
$(call gb_CustomTarget_get_target,ios/LibreOffice_app) : $(SCRIPT_OUTPUT_FILE_0)

appdir=$(dir $(SCRIPT_OUTPUT_FILE_0))
buildid=$(shell cd $(SRCDIR) && git log -1 --format=%H)

$(SCRIPT_OUTPUT_FILE_0) : $(call gb_Executable_get_target,LibreOffice)
	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),APP,2)
	mkdir -p $(appdir)/ure
	mv $(call gb_Executable_get_target,LibreOffice) $(SCRIPT_OUTPUT_FILE_0)
#
# Copy rdb files
#
	cp $(OUTDIR)/bin/offapi.rdb $(appdir)
	cp $(OUTDIR)/bin/udkapi.rdb $(appdir)
	cp $(OUTDIR)/bin/oovbaapi.rdb $(appdir)
	cp $(INSTDIR)/program/services/services.rdb $(appdir)
	cp $(INSTDIR)/ure/share/misc/services.rdb $(appdir)/ure
#
# Copy "registry" files
#
	mkdir -p $(appdir)/registry/modules $(appdir)/registry/res
	cp $(OUTDIR)/xml/*.xcd $(appdir)/registry
	mv $(appdir)/registry/fcfg_langpack_en-US.xcd $(appdir)/registry/res
	cp -R $(OUTDIR)/xml/registry/* $(appdir)/registry
#
# Copy .res files
#
# program/resource is hardcoded in tools/source/rc/resmgr.cxx. Sure,
# we could set STAR_RESOURCE_PATH instead. sigh...
#
	mkdir -p $(appdir)/program/resource
	cp $(INSTDIR)/$(LIBO_SHARE_RESOURCE_FOLDER)/*en-US.res $(appdir)/program/resource
#
# Artwork
#
	mkdir -p $(appdir)/share/config
	cp -R $(INSTDIR)/$(LIBO_SHARE_FOLDER)/config/images_tango.zip $(appdir)/share/config/images.zip
#
# soffice.cfg
#
	cp -R $(INSTROOT)/share/config/soffice.cfg $(appdir)/share/config
#
# "registry"
#
	mkdir -p $(appdir)/share/registry/res
	cp $(OUTDIR)/xml/*.xcd $(appdir)/share/registry
	mv $(appdir)/share/registry/fcfg_langpack_en-US.xcd $(appdir)/share/registry/res
	cp -R $(OUTDIR)/xml/registry/* $(appdir)/share/registry
#
# Set up rc, the "inifile". See getIniFileName_Impl().
#
	( \
		echo '[Bootstrap]' && \
		echo 'URE_BOOTSTRAP=file://$$APP_DATA_DIR/fundamentalrc' && \
		echo 'HOME=$$APP_DATA_DIR/tmp' && \
	: ) > $(appdir)/rc
#
# Set up fundamentalrc, unorc, bootstraprc and versionrc.
#
# Do we really need all these?
#
	( \
		echo '[Bootstrap]' && \
		echo 'BRAND_BASE_DIR=file://$$APP_DATA_DIR' && \
		echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/registry module:$${BRAND_BASE_DIR}/registry/modules res:$${BRAND_BASE_DIR}/registry' && \
	: ) > $(appdir)/fundamentalrc
#
	( \
		echo '[Bootstrap]' && \
		: UNO_TYPES and UNO_SERVICES are set up in lo-viewer.mm, is that sane? && \
	: ) > $(appdir)/unorc
#
# bootstraprc must be in $BRAND_BASE_DIR/program
#
	mkdir -p $(appdir)/program
	( \
		echo '[Bootstrap]' && \
		echo 'InstallMode=<installmode>' && \
		echo 'ProductKey=LibreOffice $(PRODUCTVERSION)' && \
		echo 'UserInstallation=file://$$APP_DATA_DIR/../Library/Application%20Support' && \
	: ) > $(appdir)/program/bootstraprc
#
# Is this really needed?
#
	( \
		echo '[Version]' && \
		echo 'AllLanguages=en-US' && \
		echo 'BuildVersion=' && \
		echo 'buildid=$(buildid)' && \
		echo 'ProductMajor=360' && \
		echo 'ProductMinor=1' && \
	: ) > $(appdir)/program/versionrc
#
# Copy a sample document... good old test1.odt...
#
	cp $(SRC_ROOT)/odk/examples/java/DocumentHandling/test/test1.odt $(appdir)
endif
else
# When run just from the command line, we don't have any app bundle to
# copy or move the executable to. So do nothing. Except one trick:
# Copy the Xcode project to BUILDDIR if SRCDIR!=BUILDDIR, so that one
# can then open it from there in Xcode.
$(call gb_CustomTarget_get_target,ios/LibreOffice_app) : $(gb_Helper_PHONY)
	if test $(SRCDIR) != $(BUILDDIR); then \
		(cd $(SRCDIR) && tar cf - ios/experimental/LibreOffice/LibreOffice.xcodeproj/project.pbxproj) | (cd $(BUILDDIR) && tar xf -); \
	fi

$(call gb_CustomTarget_get_clean_target,ios/LibreOffice_app) :
	$(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),APP,2)
# Here we just assume that Xcode's settings are default, or something
	rm -rf experimental/LibreOffice/build

endif

# vim: set noet sw=4 ts=4: