commit: 8c0612f34306ce87915986def93614aae5802870 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Oct 20 04:02:55 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Oct 20 04:03:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c0612f3
app-arch/pixz: partially restore man page workaround for 9999 Bug: https://github.com/vasi/pixz/issues/94 Bug: https://bugs.gentoo.org/822732 Signed-off-by: Sam James <sam <AT> gentoo.org> app-arch/pixz/pixz-1.0.7-r1.ebuild | 3 ++- app-arch/pixz/pixz-9999.ebuild | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app-arch/pixz/pixz-1.0.7-r1.ebuild b/app-arch/pixz/pixz-1.0.7-r1.ebuild index 4cee8e634c94..7e591aaa8701 100644 --- a/app-arch/pixz/pixz-1.0.7-r1.ebuild +++ b/app-arch/pixz/pixz-1.0.7-r1.ebuild @@ -52,5 +52,6 @@ src_configure() { src_install() { default - [[ ${PV} == "9999" ]] || doman src/pixz.1 + # https://github.com/vasi/pixz/issues/94 + [[ ${PV} == "9999" ]] || doman src/pixz.1 } diff --git a/app-arch/pixz/pixz-9999.ebuild b/app-arch/pixz/pixz-9999.ebuild index 78fd9a6c159b..2fbeeaf35fe3 100644 --- a/app-arch/pixz/pixz-9999.ebuild +++ b/app-arch/pixz/pixz-9999.ebuild @@ -45,3 +45,10 @@ src_configure() { econf } + +src_install() { + default + + # https://github.com/vasi/pixz/issues/94 + [[ ${PV} == "9999" ]] || doman src/pixz.1 +}
