-
Notifications
You must be signed in to change notification settings - Fork 21
/
meson.build
422 lines (383 loc) · 13.2 KB
/
meson.build
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
project('gthumb', ['c', 'cpp'],
license : 'GPL2+',
version : '3.12.6',
meson_version : '>=0.48'
)
glib_version = '>=2.54.0'
gtk_version = '>=3.16'
exiv2_version = '>=0.21'
clutter_version = '>=1.12.0'
clutter_gtk_version = '>=1.0.0'
gstreamer_version = '>=1.0.0'
libraw_version = '>=0.14'
libsoup_version = '>=2.42'
libsecret_version = '>=0.11'
libbrasero_version = '>=3.2.0'
libchamplain_version = '>=0.12.0'
librsvg_version = '>=2.34.0'
libwebp_version = '>=0.2.0'
libjxl_version = '>=0.3.0'
libjxl_threads_version = '>=0.3.0'
libheif_version = '>= 1.11'
libjson_glib_version = '>=0.15.0'
webkit2_version = '>=1.10.0'
lcms2_version = '>=2.6'
colord_version = '>=1.3'
version_array = meson.project_version().split('.')
api_version = '.'.join([version_array[0], version_array[1]])
gnome = import('gnome')
i18n = import('i18n')
gettext_package = meson.project_name()
c_comp = meson.get_compiler('c')
cpp_comp = meson.get_compiler('cpp')
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
pkgdatadir = join_paths(datadir, meson.project_name())
pkgincludedir = join_paths(prefix, get_option('includedir'), meson.project_name())
pkglibdir = join_paths(prefix, get_option('libdir'), meson.project_name())
po_dir = join_paths(meson.source_root(), 'po')
extensions_install_dir = join_paths(pkglibdir, 'extensions')
ui_install_dir = join_paths(pkgdatadir, 'ui')
icons_install_dir = join_paths(pkgdatadir, 'icons')
privexecdir = join_paths(prefix, get_option('libexecdir'), meson.project_name())
if get_option('run-in-place')
ui_data_dir = join_paths(meson.source_root(), 'data', 'ui')
icons_data_dir = join_paths(meson.source_root(), 'data', 'icons', 'private')
extensions_ui_data_dir = join_paths(meson.source_root(), 'extensions')
extensions_data_dir = join_paths(meson.build_root(), 'extensions')
contact_sheet_data_dir = join_paths(meson.source_root(), 'extensions', 'contact_sheet', 'data')
webalbum_data_dir = join_paths(meson.source_root(), 'extensions', 'webalbums', 'data')
else
ui_data_dir = ui_install_dir
icons_data_dir = icons_install_dir
extensions_ui_data_dir = ui_data_dir
extensions_data_dir = extensions_install_dir
contact_sheet_data_dir = pkgdatadir
webalbum_data_dir = pkgdatadir
endif
meson.add_install_script('postinstall.py')
# Dependencies
if get_option('exiv2')
exiv2_dep = dependency('exiv2', version : exiv2_version, required : false)
use_exiv2 = exiv2_dep.found()
else
use_exiv2 = false
endif
if get_option('clutter')
clutter_dep = dependency('clutter-1.0', version : clutter_version, required : false)
clutter_gtk_dep = dependency('clutter-gtk-1.0', version : clutter_gtk_version, required : false)
clutter_deps = [ clutter_dep, clutter_gtk_dep ]
use_clutter = clutter_dep.found() and clutter_gtk_dep.found()
else
use_clutter = false
endif
if get_option('gstreamer')
gstreamer_dep = dependency('gstreamer-1.0', version : gstreamer_version, required : false)
gstreamer_plugins_base_dep = dependency('gstreamer-plugins-base-1.0', version : gstreamer_version, required : false)
gstreamer_video_dep = dependency('gstreamer-video-1.0', version : gstreamer_version, required : false)
gstreamer_deps = [ gstreamer_dep, gstreamer_plugins_base_dep, gstreamer_video_dep ]
use_gstreamer = gstreamer_dep.found() and gstreamer_plugins_base_dep.found() and gstreamer_video_dep.found()
else
use_gstreamer = false
endif
if get_option('libchamplain')
libchamplain_dep = dependency('champlain-0.12', version : libchamplain_version, required : false)
libchamplain_gtk_dep = dependency('champlain-gtk-0.12', version : libchamplain_version, required : false)
libchamplain_deps = [ libchamplain_dep, libchamplain_gtk_dep ]
use_libchamplain = libchamplain_dep.found() and libchamplain_gtk_dep.found()
else
use_libchamplain = false
endif
if get_option('lcms2')
lcms2_dep = dependency('lcms2', version : lcms2_version, required : false)
use_lcms2 = lcms2_dep.found()
else
use_lcms2 = false
endif
if get_option('colord')
colord_dep = dependency('colord', version : colord_version, required : false)
use_colord = colord_dep.found()
else
use_colord = false
endif
# timezone
have_tm_gmtoff = c_comp.has_member('struct tm', 'tm_gmtoff', prefix : '#include<time.h>')
if not have_tm_gmtoff
code = '''#include <time.h>
int main() { timezone = 1; }'''
have_timezone = c_comp.compiles(code, name : 'timezone variable is defined')
if have_timezone
code = '''#include <time.h>
int main() { altzone = 1; }'''
have_altzone = c_comp.compiles(code, name : 'altzone variable is defined')
else
error('unable to find a way to determine timezone')
endif
endif
# libjpeg
libz_dep = dependency('zlib')
libm_dep = c_comp.find_library('m')
libjpeg_dep = c_comp.find_library('jpeg')
if libjpeg_dep.found()
jpeg_deps = [ libm_dep, libz_dep, libjpeg_dep ]
endif
code = '''#include <stdio.h>
#include <jpeglib.h>
#if JPEG_LIB_VERSION < 80
#error "wrong version"
#endif
int main(int c, char**v) { return 0; }'''
have_libjpeg_80 = c_comp.compiles(code, name : 'libjpeg version is 8 or greater', dependencies : jpeg_deps)
have_progressive_jpeg = c_comp.has_function('jpeg_simple_progression', prefix : '#include <stdio.h>\n#include<jpeglib.h>', dependencies : jpeg_deps)
# tiff
if get_option('libtiff')
libtiff_dep = c_comp.find_library('tiff', required : false)
use_libtiff = libtiff_dep.found()
tiff_deps = [ libm_dep, libz_dep, libtiff_dep ]
else
use_libtiff = false
endif
if get_option('libwebp')
libwebp_dep = [
dependency('libwebp', version : libwebp_version, required : false),
dependency('libwebpdemux', version : libwebp_version, required : false)
]
use_libwebp = libwebp_dep[0].found()
else
use_libwebp = false
endif
if get_option('libjxl')
libjxl_deps = [
dependency('libjxl', version : libjxl_version, required : false),
dependency('libjxl_threads', version : libjxl_version, required : false)
]
use_libjxl = libjxl_deps[0].found()
else
use_libjxl = false
endif
if get_option('libheif')
libheif_dep = dependency('libheif', version : libheif_version, required : false)
use_libheif = libheif_dep.found()
else
use_libheif = false
endif
if get_option('libraw')
libraw_dep = dependency('libraw', version : libraw_version, required : false)
use_libraw = libraw_dep.found()
else
use_libraw = false
endif
if get_option('librsvg')
librsvg_dep = dependency('librsvg-2.0', version : librsvg_version, required : false)
use_librsvg = librsvg_dep.found()
else
use_librsvg = false
endif
use_libsecret = false
if get_option('webservices')
libsoup_dep = dependency('libsoup-2.4', version : libsoup_version, required : false)
libjson_glib_dep = dependency('json-glib-1.0', version : libjson_glib_version, required : false)
webkit2_dep = dependency('webkit2gtk-4.0', version : webkit2_version, required : false)
if not webkit2_dep.found()
webkit2_dep = dependency('webkit2gtk-3.0', version : webkit2_version, required : false)
endif
with_webservices = libsoup_dep.found() and libjson_glib_dep.found() and webkit2_dep.found()
if with_webservices and get_option('libsecret')
libsecret_dep = dependency('libsecret-1', version : libsecret_version, required : false)
use_libsecret = libsecret_dep.found()
endif
else
with_webservices = false
endif
if get_option('libbrasero')
libbrasero_dep = dependency('libbrasero-burn3', version : libbrasero_version, required : false)
use_libbrasero = libbrasero_dep.found()
else
use_libbrasero = false
endif
# web albums
bison = find_program('bison', required : false)
flex = find_program('flex', 'lex', required : false)
with_webalbums = bison.found() and flex.found()
vector_ops = (c_comp.get_id() == 'gcc') and (c_comp.version().version_compare('>=4.0.7'))
common_deps = [
libm_dep,
dependency('threads'),
dependency('glib-2.0', version : glib_version),
dependency('gthread-2.0'),
dependency('gmodule-2.0'),
dependency('gio-unix-2.0'),
dependency('gtk+-3.0', version : gtk_version),
dependency('x11'),
dependency('libpng'),
dependency('zlib'),
dependency('gsettings-desktop-schemas')
]
# config.h
config_data = configuration_data()
config_data.set('GLIB_VERSION_MIN_REQUIRED', 'GLIB_VERSION_2_54')
config_data.set('GLIB_VERSION_MAX_ALLOWED', 'GLIB_VERSION_2_54')
config_data.set_quoted('GETTEXT_PACKAGE', gettext_package)
config_data.set_quoted('PACKAGE_NAME', meson.project_name())
config_data.set_quoted('PACKAGE_VERSION', meson.project_version())
config_data.set_quoted('GTHUMB_API_VERSION', api_version)
config_data.set_quoted('GTHUMB_LOCALEDIR', join_paths(prefix, get_option('localedir')))
config_data.set_quoted('GTHUMB_UI_DIR', ui_data_dir)
config_data.set_quoted('GTHUMB_ICON_DIR', icons_data_dir)
config_data.set_quoted('GTHUMB_EXTENSIONS_UI_DIR', extensions_ui_data_dir)
config_data.set_quoted('GTHUMB_EXTENSIONS_DIR', extensions_data_dir)
config_data.set_quoted('CONTACT_SHEET_DATADIR', contact_sheet_data_dir)
config_data.set_quoted('WEBALBUM_DATADIR', webalbum_data_dir)
if get_option('buildtype').contains('debug')
config_data.set('DEBUG', 1)
endif
if get_option('run-in-place')
config_data.set('RUN_IN_PLACE', 1)
config_data.set_quoted('PRIVEXECDIR', join_paths(meson.build_root()))
else
config_data.set_quoted('PRIVEXECDIR', privexecdir)
endif
if use_exiv2
config_data.set('HAVE_EXIV2', 1)
endif
if use_clutter
config_data.set('HAVE_CLUTTER', 1)
endif
if use_gstreamer
config_data.set('HAVE_GSTREAMER', 1)
endif
if use_libchamplain
config_data.set('HAVE_LIBCHAMPLAIN', 1)
endif
if use_lcms2
config_data.set('HAVE_LCMS2', 1)
endif
if use_colord
config_data.set('HAVE_COLORD', 1)
endif
if have_tm_gmtoff
config_data.set('HAVE_TM_GMTOFF', 1)
else
if have_timezone
config_data.set('HAVE_TIMEZONE', 1)
if have_altzone
config_data.set('HAVE_ALTZONE', 1)
endif
endif
endif
config_data.set('HAVE_LIBJPEG', 1)
if have_libjpeg_80
config_data.set('HAVE_LIBJPEG_80', 1)
endif
if have_progressive_jpeg
config_data.set('HAVE_PROGRESSIVE_JPEG', 1)
endif
if use_libtiff
config_data.set('HAVE_LIBTIFF', 1)
endif
if use_libwebp
config_data.set('HAVE_LIBWEBP', 1)
config_data.set('WEBP_IS_UNKNOWN_TO_GLIB', 1) # Define to 1 if webp images are not recognized by the glib functions
endif
if use_libjxl
config_data.set('HAVE_LIBJXL', 1)
config_data.set('JXL_IS_UNKNOWN_TO_GLIB', 1) # Define to 1 if jxl images are not recognized by the glib functions
endif
if use_libheif
config_data.set('HAVE_LIBHEIF', 1)
endif
if use_libraw
config_data.set('HAVE_LIBRAW', 1)
endif
if use_librsvg
config_data.set('HAVE_LIBRSVG', 1)
endif
if use_libsecret
config_data.set('HAVE_LIBSECRET', 1)
endif
if with_webservices
config_data.set('WITH_WEB_SERVICES', 1)
endif
if use_libbrasero
config_data.set('HAVE_LIBBRASERO', 1)
endif
config_file = configure_file(output : 'config.h', configuration : config_data)
config_inc = include_directories('.')
# C/C++ args
c_args = []
cpp_args = []
if get_option('buildtype').contains('debug') or get_option('buildtype').contains('debugoptimized')
warn_deprecated = get_option('warn-deprecated')
test_c_args = [
'-Wall',
'-Wcast-align',
'-Wtype-limits',
'-Wclobbered',
'-Wempty-body',
'-Wignored-qualifiers',
'-Wmissing-prototypes',
'-Wnested-externs',
'-Wpointer-arith',
'-Wno-sign-compare',
'-Wformat-security'
]
test_cpp_args = [
'-Wall',
'-Wcast-align',
'-Wtype-limits',
'-Wclobbered',
'-Wempty-body',
'-Wignored-qualifiers',
'-Wpointer-arith',
'-Wno-sign-compare',
'-Wformat-security'
]
else
warn_deprecated = false
test_c_args = [ '-Wall' ]
test_cpp_args = [ '-Wall' ]
endif
if not(warn_deprecated)
test_c_args += [ '-Wno-deprecated-declarations' ]
test_cpp_args += [ '-Wno-deprecated-declarations' ]
endif
c_args += c_comp.get_supported_arguments(test_c_args)
cpp_args += cpp_comp.get_supported_arguments(test_cpp_args)
# Subdirectories
subdir('gthumb')
subdir('extensions')
subdir('data')
subdir('help')
subdir('po')
subdir('m4')
# Summary
summary = [
'configuration summary:',
'',
' project: @0@ @1@'.format(meson.project_name(), meson.project_version()),
' api: @0@'.format(api_version),
' prefix: @0@'.format(prefix),
' run in place: @0@'.format(get_option('run-in-place')),
' warn deprecated: @0@'.format(warn_deprecated),
' exiv2: @0@'.format(use_exiv2),
' clutter: @0@'.format(use_clutter),
' gstreamer: @0@'.format(use_gstreamer),
' libchamplain: @0@'.format(use_libchamplain),
' lcms2: @0@'.format(use_lcms2),
' colord: @0@'.format(use_colord),
' libjpeg >=8: @0@'.format(have_libjpeg_80),
' progressive jpeg: @0@'.format(have_progressive_jpeg),
' tiff: @0@'.format(use_libtiff),
' webp: @0@'.format(use_libwebp),
' jxl: @0@'.format(use_libjxl),
' raw: @0@'.format(use_libraw),
' svg: @0@'.format(use_librsvg),
' heif/avif: @0@'.format(use_libheif),
' web services: @0@'.format(with_webservices),
' libsecret: @0@'.format(use_libsecret),
' libbrasero: @0@'.format(use_libbrasero),
' web albums: @0@'.format(with_webalbums),
' vector ops: @0@'.format(vector_ops),
''
]
message('\n'.join(summary))