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
|
subdir('proxy')
# [[service name suffix, install monitor test data]]
monitors = []
if enable_afc
monitors += [['Afc', true]]
endif
if enable_goa
monitors += [['Goa', false]]
endif
if enable_gphoto2
monitors += [['GPhoto2', true]]
endif
if enable_mtp
monitors += [['MTP', false]]
endif
if enable_udisks2
monitors += [['UDisks2', true]]
endif
monitors_test_data = []
foreach monitor: monitors
monitor_name = monitor[0].to_lower()
dbus_service = '@0@.@1@VolumeMonitor'.format(gvfs_namespace, monitor[0])
dbus_exec = 'gvfs-@0@-volume-monitor'.format(monitor_name)
dbus_systemd_service = ''
if install_systemd_systemduserunitdir
service = dbus_exec + '.service'
configure_file(
input: monitor_name / service + '.in',
output: '@BASENAME@',
configuration: service_conf,
install: true,
install_dir: systemd_systemduserunitdir,
)
dbus_systemd_service = 'SystemdService=' + service
endif
monitor_data = files(monitor_name / monitor_name + '.monitor')
install_data(
monitor_data,
install_dir: gvfs_remote_volume_monitors_dir,
)
dbus_service_conf = configuration_data()
dbus_service_conf.set('service', dbus_service)
dbus_service_conf.set('exec', gvfs_libexecdir / dbus_exec)
dbus_service_conf.set('systemd_service', dbus_systemd_service)
monitor_service = configure_file(
input: dbus_service_in,
output: dbus_service + '.service',
configuration: dbus_service_conf,
install: true,
install_dir: dbus_session_bus_services_dir,
)
if monitor[1]
monitors_test_data += [monitor_data, monitor_service]
endif
subdir(monitor_name)
endforeach
|