Gentoo Archives: gentoo-commits

From: Eray Aslan <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mailutils/
Date: Thu, 24 Dec 2015 07:44:29
Message-Id: 1450942885.49a9f692b98db2cb7d647a97ec40cac6cace7469.eras@gentoo
1 commit: 49a9f692b98db2cb7d647a97ec40cac6cace7469
2 Author: Eray Aslan <eras <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 24 07:41:25 2015 +0000
4 Commit: Eray Aslan <eras <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 24 07:41:25 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a9f692
7
8 Fix build failure due to gettext mismatch (#567976)
9
10 Package-Manager: portage-2.2.26
11
12 net-mail/mailutils/mailutils-2.99.99.ebuild | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/net-mail/mailutils/mailutils-2.99.99.ebuild b/net-mail/mailutils/mailutils-2.99.99.ebuild
16 index aac4a57..28d0255 100644
17 --- a/net-mail/mailutils/mailutils-2.99.99.ebuild
18 +++ b/net-mail/mailutils/mailutils-2.99.99.ebuild
19 @@ -60,11 +60,13 @@ src_prepare() {
20 echo "#!/bin/sh" > build-aux/py-compile
21 epatch "${FILESDIR}/${PN}-2.99.98-readline-6.3.patch" #503954
22 epatch "${FILESDIR}/${PN}-tcp_wrappers.patch"
23 + # bug 567976
24 + sed -i -e /AM_GNU_GETTEXT_VERSION/s/0.18/0.19/ configure.ac || die
25 if use mysql; then
26 sed -i -e /^INCLUDES/"s:$:$(mysql_config --include):" \
27 sql/Makefile.am || die
28 - eautoreconf
29 fi
30 + eautoreconf
31 }
32
33 src_configure() {