From 78c8fbe8a35cd2926f37f21235c5d8b587efae46 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 8 Oct 2023 21:57:02 -0700 Subject: Migrate to PEP517 meson-python build Bug: https://bugs.gentoo.org/909888 Signed-off-by: Zac Medico Closes: https://github.com/gentoo/gentoolkit/pull/36 Signed-off-by: Sam James --- man/meson.build | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 man/meson.build (limited to 'man') diff --git a/man/meson.build b/man/meson.build new file mode 100644 index 0000000..aa888f7 --- /dev/null +++ b/man/meson.build @@ -0,0 +1,23 @@ +man_pages_out = [] +man_pages_in = [ + 'ebump.1', + 'eclean.1', + 'enalyze.1', + 'epkginfo.1', + 'equery.1', + 'eread.1', + 'eshowkw.1', + 'euse.1', + 'imlate.1', + 'revdep-rebuild.1', +] + +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) -- cgit v1.2.3-65-gdbad