lok: avoid ILibreOfficeKitNotifier null ptr de-reference on shutdown.
[LibreOffice.git] / sysui / CustomTarget_share.mk
blob8af5d6664f7cca1ff530d804048ef4eac6948017
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 include $(SRCDIR)/sysui/productlist.mk
13 ifeq ($(ENABLE_GIO),TRUE)
14 brand_URIPARAM := --urls
15 else ifeq ($(ENABLE_QT5),TRUE)
16 brand_URIPARAM := --urls
17 else
18 brand_URIPARAM :=
19 endif
21 share_WORKDIR := $(call gb_CustomTarget_get_workdir,sysui/share)
22 share_SRCDIR := $(SRCDIR)/sysui/desktop
24 share_TRANSLATE := $(SRCDIR)/solenv/bin/desktop-translate.pl
26 LAUNCHERLIST_APPS := writer calc draw impress math base startcenter
27 LAUNCHERLIST := $(LAUNCHERLIST_APPS) xsltfilter
28 LAUNCHERS := $(foreach launcher,$(LAUNCHERLIST),$(share_SRCDIR)/menus/$(launcher).desktop)
30 MIMELIST := \
31 text \
32 text-template \
33 spreadsheet \
34 spreadsheet-template \
35 drawing \
36 drawing-template \
37 presentation \
38 presentation-template \
39 formula \
40 master-document \
41 oasis-text \
42 oasis-text-template \
43 oasis-text-flat-xml \
44 oasis-spreadsheet \
45 oasis-spreadsheet-template \
46 oasis-spreadsheet-flat-xml \
47 oasis-drawing \
48 oasis-drawing-template \
49 oasis-drawing-flat-xml \
50 oasis-presentation \
51 oasis-presentation-template \
52 oasis-presentation-flat-xml \
53 oasis-formula \
54 oasis-master-document \
55 oasis-master-document-template \
56 oasis-database \
57 oasis-web-template \
58 ms-excel-sheet-12 \
59 ms-excel-sheet \
60 ms-excel-template-12 \
61 ms-powerpoint-presentation-12 \
62 ms-powerpoint-presentation \
63 ms-powerpoint-template-12 \
64 ms-word-document-12 \
65 ms-word-document \
66 ms-word-document2 \
67 ms-word-template-12 \
68 openxmlformats-officedocument-presentationml-presentation \
69 openxmlformats-officedocument-presentationml-template \
70 openxmlformats-officedocument-spreadsheetml-sheet \
71 openxmlformats-officedocument-spreadsheetml-template \
72 openxmlformats-officedocument-wordprocessingml-document \
73 openxmlformats-officedocument-wordprocessingml-template \
74 ms-excel-sheet-binary-12 \
75 extension
77 MIMEICONLIST := \
78 oasis-text \
79 oasis-text-template \
80 oasis-spreadsheet \
81 oasis-spreadsheet-template \
82 oasis-drawing \
83 oasis-drawing-template \
84 oasis-presentation \
85 oasis-presentation-template \
86 oasis-formula \
87 oasis-master-document \
88 oasis-master-document-template \
89 oasis-database \
90 oasis-web-template \
91 text \
92 text-template \
93 spreadsheet \
94 spreadsheet-template \
95 drawing \
96 drawing-template \
97 presentation \
98 presentation-template \
99 formula \
100 master-document \
101 database \
102 extension
104 share_ICONS := $(foreach size,16x16 32x32 48x48,\
105 $(foreach contrast,hicolor locolor,\
106 $(foreach app,$(LAUNCHERLIST_APPS),\
107 $(share_SRCDIR)/icons/$(contrast)/$(size)/apps/$(app).png) \
108 $(foreach mime,$(MIMEICONLIST),\
109 $(share_SRCDIR)/icons/$(contrast)/$(size)/mimetypes/$(mime).png)))
111 MIMEKEYS := $(foreach mime,$(MIMELIST),$(share_SRCDIR)/mimetypes/$(mime).keys)
112 MIMEDESKTOPS := $(foreach mime,$(MIMELIST),$(share_SRCDIR)/mimetypes/$(mime).desktop)
113 ULFS := documents.ulf \
114 launcher_comment.ulf \
115 launcher_genericname.ulf \
116 launcher_unityquicklist.ulf
118 $(eval $(call gb_CustomTarget_CustomTarget,sysui/share))
120 $(eval $(call gb_CustomTarget_register_targets,sysui/share,\
121 $(ULFS) \
122 $(foreach product,$(PRODUCTLIST),\
123 $(product)/build.flag \
124 $(product)/openoffice.org.xml \
125 $(product)/openoffice.mime \
126 $(product)/openoffice.applications \
127 $(product)/openoffice.keys \
128 $(product)/openoffice.sh \
129 $(product)/create_tree.sh \
130 $(if $(INTROSPECTION_SCANNER),\
131 $(product)/LOKDocView-0.1.gir \
132 $(product)/LOKDocView-0.1.typelib) \
133 $(product)/launcherlist) \
136 $(share_WORKDIR)/%/openoffice.org.xml: $(share_WORKDIR)/documents.ulf $(MIMEDESKTOPS) $(share_SRCDIR)/share/create_mime_xml.pl
137 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,1)
138 $(PERL) $(share_SRCDIR)/share/create_mime_xml.pl $< > $@
141 $(share_WORKDIR)/%/openoffice.keys: \
142 $(share_SRCDIR)/mimetypes/openoffice.mime $(MIMEKEYS) $(share_SRCDIR)/share/brand.pl \
143 $(share_TRANSLATE) $(share_WORKDIR)/documents.ulf
144 mkdir -p $(dir $@)
145 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,1)
146 $(PERL) $(share_SRCDIR)/share/brand.pl -p $* -u $(UNIXFILENAME.$*) \
147 --iconprefix $(UNIXFILENAME.$*)- $^ $(share_WORKDIR)/$*
148 $(PERL) $(share_TRANSLATE) -p $* -d $(share_WORKDIR)/$* \
149 --ext "keys" --key "description" $(share_WORKDIR)/documents.ulf
150 cat $(MIMEKEYS) > $@
152 $(share_WORKDIR)/%/openoffice.mime: $(share_SRCDIR)/mimetypes/openoffice.mime
153 mkdir -p $(dir $@)
154 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CAT,1)
155 cat $< | tr -d "\015" > $@
157 $(share_WORKDIR)/%/openoffice.sh: $(share_SRCDIR)/share/openoffice.sh
158 mkdir -p $(dir $@)
159 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CAT,1)
160 cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$*)/g" > $@
162 $(share_WORKDIR)/%/create_tree.sh: $(share_SRCDIR)/share/create_tree.sh \
163 $(share_WORKDIR)/%/openoffice.org.xml $(share_WORKDIR)/%/openoffice.applications $(share_WORKDIR)/%/openoffice.mime \
164 $(share_WORKDIR)/%/openoffice.keys $(share_WORKDIR)/%/launcherlist
165 mkdir -p $(dir $@)
166 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CAT,1)
167 echo "#!/bin/sh" > $@
168 echo "PREFIX=$(UNIXFILENAME.$*)" >> $@
169 echo "ICON_PREFIX=$(UNIXFILENAME.$*)" >> $@
170 echo "ICON_SOURCE_DIR=$(SRCDIR)/sysui/desktop/icons" >> $@
171 echo "APPDATA_SOURCE_DIR=$(SRCDIR)/sysui/desktop/appstream-appdata" >> $@
172 echo "PRODUCTVERSION=$(PRODUCTVERSION)" >> $@
173 cat $< >> $@
174 chmod 774 $@
176 # Generate gobject-introspection files
177 # These are *not* packaged in rpms because there's no good place to put them
178 # where the system will actually find them and where it won't conflict with a
179 # distro packaged LO; on Fedora 30 at least there's no /opt path in
180 # $XDG_DATA_DIRS
181 ifneq ($(INTROSPECTION_SCANNER),)
183 $(share_WORKDIR)/%/LOKDocView-0.1.gir: \
184 $(call gb_Library_get_target,libreofficekitgtk)
185 mkdir -p $(dir $@)
186 g-ir-scanner "${SRCDIR}/include/LibreOfficeKit/LibreOfficeKitGtk.h" \
187 "${SRCDIR}/libreofficekit/source/gtk/lokdocview.cxx" \
188 `${PKG_CONFIG} --cflags gobject-introspection-1.0 gtk+-3.0` \
189 -I"${SRCDIR}/include/" \
190 --include=GLib-2.0 --include=GObject-2.0 --include=Gio-2.0 \
191 --library=libreofficekitgtk --library-path="${INSTDIR}/program" \
192 --include=Gdk-3.0 --include=GdkPixbuf-2.0 --include=Gtk-3.0 \
193 --namespace=LOKDocView --nsversion=0.1 --identifier-prefix=LOKDoc --symbol-prefix=lok_doc \
194 --output="$@" --warn-all --no-libtool
196 $(share_WORKDIR)/%/LOKDocView-0.1.typelib: $(share_WORKDIR)/%/LOKDocView-0.1.gir
197 g-ir-compiler "$<" --output="$@"
199 endif
201 $(share_WORKDIR)/%/launcherlist: $(LAUNCHERS)
202 mkdir -p $(dir $@)
203 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1)
204 echo "$(addsuffix .desktop,$(LAUNCHERLIST))" > $@
207 $(share_WORKDIR)/%/openoffice.applications: $(share_SRCDIR)/mimetypes/openoffice.applications
208 mkdir -p $(dir $@)
209 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CAT,1)
210 cat $< | tr -d "\015" | sed -e "s/OFFICENAME/$(UNIXFILENAME.$*)/" -e "s/%PRODUCTNAME/$(PRODUCTNAME.$*) $(PRODUCTVERSION.$*)/" > $@
212 # these .desktop files are written by brand.pl below
213 # need to have a rule for these because they are targets in Package_share
214 define sysui_Desktop_rule
215 $(share_WORKDIR)/%/$(1).desktop : $(share_WORKDIR)/%/build.flag
216 touch $$@
218 endef
220 $(foreach launcher,$(LAUNCHERLIST),$(eval $(call sysui_Desktop_rule,$(launcher))))
222 $(share_WORKDIR)/%/build.flag: $(share_SRCDIR)/share/brand.pl $(LAUNCHERS) \
223 $(share_TRANSLATE) $(addprefix $(share_WORKDIR)/,$(ULFS))
224 mkdir -p $(dir $@)
225 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,1)
226 $(PERL) $(share_SRCDIR)/share/brand.pl -p '$${PRODUCTNAME} $${PRODUCTVERSION}' -u $(UNIXFILENAME.$*) \
227 $(brand_URIPARAM) \
228 --iconprefix '$${UNIXBASISROOTNAME}-' $^ $(share_WORKDIR)/$*
229 $(PERL) $(share_TRANSLATE) -p $(PRODUCTNAME.$*)$(PRODUCTVERSION) -d $(share_WORKDIR)/$* \
230 --ext "desktop" --key "Comment" $(share_WORKDIR)/launcher_comment.ulf
231 $(PERL) $(share_TRANSLATE) -p $(PRODUCTNAME.$*)$(PRODUCTVERSION) -d $(share_WORKDIR)/$* \
232 --ext "desktop" --key "GenericName" $(share_WORKDIR)/launcher_genericname.ulf
233 $(PERL) $(share_TRANSLATE) -p $(PRODUCTNAME.$*)$(PRODUCTVERSION) -d $(share_WORKDIR)/$* \
234 --ext "desktop" --key "UnityQuickList" $(share_WORKDIR)/launcher_unityquicklist.ulf
235 touch $@
237 $(eval $(call gb_CustomTarget_ulfex_rule,\
238 $(share_WORKDIR)/%.ulf,\
239 $(share_SRCDIR)/share/%.ulf,\
240 $(foreach lang,$(gb_TRANS_LANGS),\
241 $(gb_POLOCATION)/$(lang)/sysui/desktop/share.po)))
243 # vim: set noet sw=4 ts=4: