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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
project('atril', 'c', 'cpp',
version: '1.28.1',
meson_version: '>=0.56.0',
default_options: [
'warning_level=1',
'buildtype=debugoptimized',
]
)
# Import modules
gnome = import('gnome')
i18n = import('i18n')
pkgconfig = import('pkgconfig')
# Get compiler
cc = meson.get_compiler('c')
# Version information
version = meson.project_version()
version_list = version.split('.')
major_version = version_list[0]
minor_version = version_list[1]
micro_version = version_list[2]
api_version = '1.5'
binary_version = '3.0.0'
binary_major_version = binary_version.split('.')[0]
# Configuration data
atril_conf = configuration_data()
atril_conf.set_quoted('VERSION', version)
atril_conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
if get_option('enable_dbus')
atril_conf.set('ENABLE_DBUS', '')
endif
# Directory paths
prefix = get_option('prefix')
bindir = get_option('bindir')
datadir = get_option('datadir')
libdir = get_option('libdir')
includedir = get_option('includedir')
libexecdir = get_option('libexecdir')
desktopdir = join_paths(datadir, 'applications')
schema_dir = join_paths(datadir, 'glib-2.0', 'schemas')
header_dir = join_paths(meson.project_name(), api_version)
po_dir = join_paths(meson.project_source_root(), 'po')
# Dependencies
glib_version = '2.36.0'
gtk_version = '3.14.0'
gtk_api_version = '3.0'
cairo = dependency('cairo', version: '>= 1.14.0')
gail = dependency('gail-3.0')
gio = dependency('gio-2.0', version: '>= 2.36.0')
glib = dependency('glib-2.0', version: '>= ' + glib_version)
gmodule = dependency('gmodule-2.0')
gtk = dependency('gtk+-' + gtk_api_version, version: '>= ' + gtk_version)
ice = dependency('ice')
sm = dependency('sm')
X11 = dependency('x11')
xml = dependency('libxml-2.0', version: '>= 2.5.0')
zlib = dependency('zlib')
libsecret = dependency('libsecret-1', version: '>= 0.5', required: get_option('keyring'))
gtk_unix_print = dependency('gtk+-unix-print-3.0', version: '>= ' + gtk_version, required: get_option('gtk_unix_print'))
mate_desktop = dependency('mate-desktop-2.0')
# Backend configuration
enabled_backend_names = []
backend_subdirs = []
atril_mime_types = ''
# PDF backend
if get_option('pdf')
poppler = dependency('poppler-glib')
backend_subdirs += 'pdf'
atril_mime_types += 'application/pdf;application/x-bzpdf;application/x-gzpdf;application/x-xzpdf;'
endif
# PostScript backend
if get_option('ps')
spectre = dependency('libspectre', version: '>= 0.2.0')
backend_subdirs += 'ps'
atril_mime_types += 'application/postscript;application/x-bzpostscript;application/x-gzpostscript;image/x-eps;image/x-bzeps;image/x-gzeps;application/illustrator;'
endif
# DVI backend
if get_option('dvi')
kpathsea = dependency('kpathsea')
spectre = dependency('libspectre', version: '>= 0.2.0')
if get_option('t1lib')
t1lib = cc.find_library('t1', required: false)
t1_enabled = t1lib.found()
else
t1_enabled = false
endif
backend_subdirs += 'dvi'
atril_mime_types += 'application/x-dvi;application/x-bzdvi;application/x-gzdvi;'
endif
# DJVU backend
if get_option('djvu')
djvu = dependency('ddjvuapi', version: '>= 3.5.17')
backend_subdirs += 'djvu'
atril_mime_types += 'image/vnd.djvu;image/vnd.djvu+multipage;'
endif
# TIFF backend
if get_option('tiff')
tiff = dependency('libtiff-4')
backend_subdirs += 'tiff'
atril_mime_types += 'image/tiff;'
endif
# Pixbuf backend
if get_option('pixbuf')
backend_subdirs += 'pixbuf'
atril_mime_types += 'image/*;'
atril_conf.set10('ENABLE_PIXBUF', true)
endif
# Comics backend
if get_option('comics')
libarchive_req_version = '>= 3.6.0'
libarchive_dep = dependency('libarchive', version: '>= 3.6.0', required: true)
backend_subdirs += 'comics'
comic_mimetypes = ';'.join([
'application/vnd.comicbook-rar',
'application/vnd.comicbook+zip',
'application/x-cb7',
'application/x-cbr',
'application/x-cbt',
'application/x-cbz',
'application/x-ext-cb7',
'application/x-ext-cbr',
'application/x-ext-cbt',
'application/x-ext-cbz',
]) + ';'
atril_mime_types += comic_mimetypes
endif
# XPS backend
if get_option('xps')
xps = dependency('libgxps', version: '>= 0.2.1')
backend_subdirs += 'xps'
atril_mime_types += 'application/oxps;application/vnd.ms-xpsdocument;'
endif
thumbnailer_mime_types = atril_mime_types
# EPUB backend
if get_option('epub')
webkit = dependency('webkit2gtk-4.1', version: '>= 2.4.3', required: false)
backend_subdirs += 'epub'
atril_mime_types += 'application/epub+zip;'
endif
atril_conf.set_quoted('SUPPORTED_MIMETYPES', atril_mime_types)
# Math library
math = cc.find_library('m', required: false)
# MathJax configuration
mathjax_directory = get_option('mathjax-directory')
if mathjax_directory == ''
foreach dir: [
'/usr/share/mathjax',
'/usr/share/javascript/mathjax'
]
if run_command('test', ['-f', join_paths(dir, 'MathJax.js')], check: false).returncode() == 0
mathjax_directory = dir
endif
endforeach
endif
if mathjax_directory != ''
atril_conf.set_quoted('MATHJAX_DIRECTORY', mathjax_directory)
elif get_option('epub')
error('"mathjax-directory" is undefined and could not be autodetected')
endif
mate_submodules_dep = dependency('mate-submodules', version: '1.24.0',
fallback: ['mate-submodules', 'mate_submodules_dep'])
# Generate config.h
config_h_file = configure_file(
output: 'config.h',
configuration: atril_conf
)
config_h = declare_dependency(
sources: config_h_file
)
# Include directories
include_dirs = include_directories('.', 'libdocument', 'libview', 'libmisc', 'cut-n-paste/toolbar-editor', 'properties')
include_root = include_directories('.')
# Headers
atril_document_header = [
'atril-document.h'
]
atril_view_header = [
'atril-view.h'
]
# Compiler flags
c_args = [
'-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()),
'-DDATADIR="@0@"'.format(join_paths(prefix, datadir)),
'-DMATEDATADIR="@0@"'.format(join_paths(prefix, datadir)),
'-DLIBDIR="@0@"'.format(join_paths(prefix, libdir)),
'-DBINDIR="@0@"'.format(join_paths(prefix, bindir)),
'-DEV_BACKENDSDIR="@0@"'.format(join_paths(prefix, libdir, meson.project_name(), binary_major_version, 'backends')),
'-DATRILDATADIR="@0@"'.format(join_paths(prefix, datadir, meson.project_name())),
'-DMATELOCALEDIR="@0@"'.format(join_paths(prefix, datadir, 'locale')),
'-Werror=implicit-function-declaration',
'-DATRIL_COMPILATION',
'-DPACKAGE_URL="https://mate-desktop.org"',
'-include', 'config.h',
]
cpp_args = [
'-DATRIL_LOCALE_DIR="@0@"'.format(join_paths(prefix, datadir, 'locale')),
'-DMATELOCALEDIR="@0@"'.format(join_paths(prefix, datadir, 'locale')),
'-DATRIL_COMPILATION',
'-DHAVE_CONFIG_H',
'-DPACKAGE_URL="https://mate-desktop.org"'
]
# Maintainer mode configuration
if get_option('maintainer_mode')
domains = ['G', 'ATK', 'PANGO', 'GDK', 'GDK_PIXBUF', 'GTK', 'MATE', 'LIBGLADE', 'VTE', 'WNCK', 'LIBSOUP']
disable_deprecated_flags = []
foreach domain : domains
disable_deprecated_flags += '-D@0@_DISABLE_DEPRECATED'.format(domain)
disable_deprecated_flags += '-D@0@_DISABLE_SINGLE_INCLUDES'.format(domain)
endforeach
c_args += disable_deprecated_flags
cpp_args += disable_deprecated_flags
endif
# Additional conditional flags
if get_option('enable_debug')
c_args += '-DEV_ENABLE_DEBUG'
cpp_args += '-DEV_ENABLE_DEBUG'
endif
if get_option('epub')
c_args += '-DENABLE_EPUB'
cpp_args += '-DENABLE_EPUB'
endif
# Add compiler arguments
add_project_arguments(c_args, language: 'c')
add_project_arguments(cpp_args, language: 'cpp')
# Define shell_core_deps before including subdirectories that need it
shell_core_deps = [
glib,
gtk,
gio,
]
subdir('libdocument')
subdir('libview')
subdir('libmisc')
subdir('backend')
subdir('data')
if get_option('thumbnailer')
subdir('thumbnailer')
endif
if get_option('previewer')
subdir('previewer')
endif
subdir('cut-n-paste/toolbar-editor')
subdir('cut-n-paste/zoom-control')
subdir('properties')
subdir('shell')
subdir('po')
subdir('help')
subdir('install-scripts')
# Tests (conditional on Meson version)
if meson.version().version_compare('>=0.46')
subdir('test')
endif
# Install headers
atril_headers = [
'atril-document.h',
'atril-view.h',
]
install_headers(
atril_headers,
subdir: header_dir
)
# Generate pkg-config files
pc_conf = configuration_data()
pc_conf.set('prefix', prefix)
pc_conf.set('exec_prefix', '${prefix}')
pc_conf.set('libdir', join_paths('${prefix}', libdir))
pc_conf.set('includedir', join_paths('${prefix}', includedir))
pc_conf.set('EV_API_VERSION', api_version)
pc_conf.set('EV_BINARY_VERSION', binary_major_version)
pc_conf.set('VERSION', version)
pc_conf.set('GLIB_REQUIRED', glib_version)
pc_conf.set('GTK_API_VERSION', gtk_api_version)
pc_conf.set('GTK_REQUIRED', gtk_version)
configure_file(
input: 'atril-document.pc.in',
output: 'atril-document-@0@.pc'.format(api_version),
configuration: pc_conf,
install_dir: join_paths(libdir, 'pkgconfig')
)
configure_file(
input: 'atril-view.pc.in',
output: 'atril-view-@0@.pc'.format(api_version),
configuration: pc_conf,
install_dir: join_paths(libdir, 'pkgconfig')
)
# Summary output
summary = [
'',
'--- Build Configuration Summary For Atril ---',
'',
'prefix = @0@'.format(prefix),
'bindir = @0@'.format(bindir),
'datadir = @0@'.format(datadir),
'libdir = @0@'.format(libdir),
'includedir = @0@'.format(includedir),
'libexecdir = @0@'.format(libexecdir),
'desktopdir = @0@'.format(desktopdir),
'schema_dir = @0@'.format(schema_dir),
'ENABLE_DBUS = @0@'.format(get_option('enable_dbus')),
'MathJax directory = @0@'.format(mathjax_directory),
'',
'Backends enabled:',
]
foreach backend_name : backend_subdirs
summary += ' @0@'.format(backend_name)
endforeach
message('\n'.join(summary))
|