diff options
author | Marek Szuba <marecki@gentoo.org> | 2020-11-09 18:31:56 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-11-09 18:41:56 +0100 |
commit | 0202348e1e89c3ee6459dc8f6dafca5a2cedaa29 (patch) | |
tree | 32bb1416e0a6bcb773ab2c9f40329cb23e830f89 /sys-apps/flashrom | |
parent | app-admin/mcelog: use upstream's systemd unit (diff) | |
download | gentoo-0202348e1e89c3ee6459dc8f6dafca5a2cedaa29.tar.gz gentoo-0202348e1e89c3ee6459dc8f6dafca5a2cedaa29.tar.bz2 gentoo-0202348e1e89c3ee6459dc8f6dafca5a2cedaa29.zip |
sys-apps/flashrom-1.2-r3: install the man page
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sys-apps/flashrom')
-rw-r--r-- | sys-apps/flashrom/files/flashrom-1.2_meson-install-manpage.patch | 43 | ||||
-rw-r--r-- | sys-apps/flashrom/flashrom-1.2-r3.ebuild | 1 |
2 files changed, 44 insertions, 0 deletions
diff --git a/sys-apps/flashrom/files/flashrom-1.2_meson-install-manpage.patch b/sys-apps/flashrom/files/flashrom-1.2_meson-install-manpage.patch new file mode 100644 index 000000000000..8783cfeefa7e --- /dev/null +++ b/sys-apps/flashrom/files/flashrom-1.2_meson-install-manpage.patch @@ -0,0 +1,43 @@ +This is essentially the upstream commit 7aea04f7099ad4dde7b1f5900b54ef603eadf25e, +modified so that MAN_DATE is set to simply '-' - the commit generates +the date using the script util/getrevision.sh, which is not included in +release tarballs. + +--- a/flashrom.8.tmpl ++++ b/flashrom.8.tmpl +@@ -40,7 +40,7 @@ + . \} + . \} + .. +-.TH FLASHROM 8 "" "" ++.TH FLASHROM 8 "@MAN_DATE@" "@VERSION@" "@MAN_DATE@" + .SH NAME + flashrom \- detect, read, write, verify and erase flash chips + .SH SYNOPSIS +--- a/meson.build ++++ b/meson.build +@@ -321,6 +321,7 @@ endif + prefix = get_option('prefix') + sbindir = join_paths(prefix, get_option('sbindir')) + libdir = join_paths(prefix, get_option('libdir')) ++mandir = join_paths(prefix, get_option('mandir')) + + install_headers([ + 'libflashrom.h', +@@ -394,6 +395,16 @@ pkgg.generate( + description : 'library to interact with flashrom', + ) + ++conf.set('VERSION', version) ++conf.set('MAN_DATE', '-') ++configure_file( ++ input : 'flashrom.8.tmpl', ++ output : 'flashrom.8', ++ configuration : conf, ++ install: true, ++ install_dir: join_paths(mandir, 'man8'), ++) ++ + flashrom_dep = declare_dependency( + link_with : flashrom, + include_directories : include_directories('.'), diff --git a/sys-apps/flashrom/flashrom-1.2-r3.ebuild b/sys-apps/flashrom/flashrom-1.2-r3.ebuild index 7d87b5147714..732c1ed8d282 100644 --- a/sys-apps/flashrom/flashrom-1.2-r3.ebuild +++ b/sys-apps/flashrom/flashrom-1.2-r3.ebuild @@ -96,6 +96,7 @@ DOCS=( README Documentation/ ) PATCHES=( "${FILESDIR}"/${PN}-1.2_meson-fixes.patch + "${FILESDIR}"/${PN}-1.2_meson-install-manpage.patch ) src_configure() { |