From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CABFB1384B4 for ; Thu, 24 Dec 2015 07:44:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 359A521C067; Thu, 24 Dec 2015 07:44:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE78F21C067 for ; Thu, 24 Dec 2015 07:44:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4C9B340662 for ; Thu, 24 Dec 2015 07:44:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 470EDCEC for ; Thu, 24 Dec 2015 07:44:25 +0000 (UTC) From: "Eray Aslan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eray Aslan" Message-ID: <1450942885.49a9f692b98db2cb7d647a97ec40cac6cace7469.eras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mailutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/mailutils/mailutils-2.99.99.ebuild X-VCS-Directories: net-mail/mailutils/ X-VCS-Committer: eras X-VCS-Committer-Name: Eray Aslan X-VCS-Revision: 49a9f692b98db2cb7d647a97ec40cac6cace7469 X-VCS-Branch: master Date: Thu, 24 Dec 2015 07:44:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 40bf47c2-2bc2-4cc4-ae4c-76e198a2fa9d X-Archives-Hash: a34c156021a43e45ac834e2c9fd18684 commit: 49a9f692b98db2cb7d647a97ec40cac6cace7469 Author: Eray Aslan gentoo org> AuthorDate: Thu Dec 24 07:41:25 2015 +0000 Commit: Eray Aslan gentoo org> CommitDate: Thu Dec 24 07:41:25 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a9f692 Fix build failure due to gettext mismatch (#567976) Package-Manager: portage-2.2.26 net-mail/mailutils/mailutils-2.99.99.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-mail/mailutils/mailutils-2.99.99.ebuild b/net-mail/mailutils/mailutils-2.99.99.ebuild index aac4a57..28d0255 100644 --- a/net-mail/mailutils/mailutils-2.99.99.ebuild +++ b/net-mail/mailutils/mailutils-2.99.99.ebuild @@ -60,11 +60,13 @@ src_prepare() { echo "#!/bin/sh" > build-aux/py-compile epatch "${FILESDIR}/${PN}-2.99.98-readline-6.3.patch" #503954 epatch "${FILESDIR}/${PN}-tcp_wrappers.patch" + # bug 567976 + sed -i -e /AM_GNU_GETTEXT_VERSION/s/0.18/0.19/ configure.ac || die if use mysql; then sed -i -e /^INCLUDES/"s:$:$(mysql_config --include):" \ sql/Makefile.am || die - eautoreconf fi + eautoreconf } src_configure() {