From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B719813832E for ; Mon, 18 Jul 2016 09:14:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4BD521C03A; Mon, 18 Jul 2016 09:14:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69C4021C03A for ; Mon, 18 Jul 2016 09:14:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09E83340817 for ; Mon, 18 Jul 2016 09:14:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E1CF2442 for ; Mon, 18 Jul 2016 09:14:16 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1468833426.475afc3c7069ea06f794b1e99be4740ad4ca6c3e.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/wget/wget-1.18.ebuild X-VCS-Directories: net-misc/wget/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 475afc3c7069ea06f794b1e99be4740ad4ca6c3e X-VCS-Branch: master Date: Mon, 18 Jul 2016 09:14:16 +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: 86c5a7e0-df36-44b5-8b3f-6e3fa2811d87 X-Archives-Hash: 1c98efe7e88bfe136e83ffdf7acd2c80 commit: 475afc3c7069ea06f794b1e99be4740ad4ca6c3e Author: Anthony G. Basile gentoo org> AuthorDate: Mon Jul 18 09:16:41 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Jul 18 09:17:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=475afc3c net-misc/wget: disable libiconv for uclibc, bug #587620 Package-Manager: portage-2.2.28 net-misc/wget/wget-1.18.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-misc/wget/wget-1.18.ebuild b/net-misc/wget/wget-1.18.ebuild index 274ec40..1ccd27c 100644 --- a/net-misc/wget/wget-1.18.ebuild +++ b/net-misc/wget/wget-1.18.ebuild @@ -1,5 +1,6 @@ # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +# $Id$ EAPI="5" @@ -51,7 +52,7 @@ pkg_setup() { src_prepare() { epatch "${FILESDIR}"/${PN}-1.17.1-gnulib-cygwin-sys_select.patch # revert some hack that breaks linking, bug #585924 - if [[ ${CHOST} == *-darwin* ]] || [[ ${CHOST} == *-solaris* ]] ; then + if [[ ${CHOST} == *-darwin* ]] || [[ ${CHOST} == *-solaris* ]] || [[ ${CHOST} == *-uclibc* ]]; then sed -i \ -e 's/^ LIBICONV=$/:/' \ configure || die