commit: 7c4e86743a6b6a8ff99d4b54157bf5a6845f5f87
Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 18:29:52 2020 +0000
Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 18:38:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c4e8674
media-plugins/vdr-epgsearch: missing die's added
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org>
media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild | 4 ++--
media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild
b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild
index ba0700f4113..0a8a30e973a 100644
--- a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild
+++ b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild
@@ -76,9 +76,9 @@ src_install() {
nonfatal dodoc conf/*.templ HISTORY*
- gunzip -f man/en/*.gz
+ gunzip -f man/en/*.gz || die
doman man/en/*.[0-9]
- gunzip -f man/de/*.gz
+ gunzip -f man/de/*.gz || die
doman -i18n=de man/de/*.[0-9]
}
diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild
b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild
index ed89ee0acea..f3656d228f5 100644
--- a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild
+++ b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild
@@ -71,9 +71,9 @@ src_install() {
local DOCS=( conf/*.templ HISTORY* )
einstalldocs
- gunzip -f man/en/*.gz
+ gunzip -f man/en/*.gz || die
doman man/en/*.[0-9]
- gunzip -f man/de/*.gz
+ gunzip -f man/de/*.gz || die
doman -i18n=de man/de/*.[0-9]
}