Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt/
Date: Sat, 10 Feb 2018 15:26:33
Message-Id: 1518276382.9f702f98e2f275757dcce36d14387f3754405709.grobian@gentoo
1 commit: 9f702f98e2f275757dcce36d14387f3754405709
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 10 15:26:07 2018 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 10 15:26:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f702f98
7
8 mail-client/mutt: add some || die()s, thanks jer, bug #647182
9
10 Bug: https://bugs.gentoo.org/647182
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 mail-client/mutt/mutt-1.9.3.ebuild | 7 +++----
14 1 file changed, 3 insertions(+), 4 deletions(-)
15
16 diff --git a/mail-client/mutt/mutt-1.9.3.ebuild b/mail-client/mutt/mutt-1.9.3.ebuild
17 index ec439e84326..8e0ba27771f 100644
18 --- a/mail-client/mutt/mutt-1.9.3.ebuild
19 +++ b/mail-client/mutt/mutt-1.9.3.ebuild
20 @@ -114,8 +114,7 @@ src_prepare() {
21
22 # the configure script contains some "cleverness" whether or not to setgid
23 # the dotlock program, resulting in bugs like #278332
24 - sed -i -e 's/@DOTLOCK_GROUP@//' \
25 - Makefile.in || die "sed failed"
26 + sed -i -e 's/@DOTLOCK_GROUP@//' Makefile.in || die "sed failed"
27 }
28
29 src_configure() {
30 @@ -229,8 +228,8 @@ src_install() {
31 -e 's#in @docdir@,#at http://www.mutt.org/,#' \
32 -e "s#@sysconfdir@#${EPREFIX}/etc/${PN}#" \
33 -e "s#@bindir@#${EPREFIX}/usr/bin#" \
34 - doc/mutt.man > mutt.1
35 - cp doc/muttrc.man muttrc.5
36 + doc/mutt.man > mutt.1 || die
37 + cp doc/muttrc.man muttrc.5 || die
38 doman mutt.1 muttrc.5
39 else
40 # nuke manpages that should be provided by an MTA, bug #177605