aboutsummaryrefslogtreecommitdiffstats
path: root/man/meson.build
blob: 0ae8df70a0004522fcfc82d574a787f05da855ab (plain) (blame)
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
man_pages_out = []
man_pages_in = [
    'color.map.5',
    'dispatch-conf.1',
    'ebuild.1',
    'ebuild.5',
    'egencache.1',
    'emaint.1',
    'emerge.1',
    'emirrordist.1',
    'env-update.1',
    'etc-update.1',
    'fixpackages.1',
    'glsa-check.1',
    'make.conf.5',
    'portage.5',
    'quickpkg.1',
    'xpak.5',
]

foreach man_page : man_pages_in
    man_pages_out += configure_file(
        input : man_page,
        output : man_page,
        configuration : conf_data
    )
endforeach

install_man(man_pages_out)

subdir('ru')