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 101C11384B4 for ; Sat, 2 Jan 2016 04:08:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 928EC21C002; Sat, 2 Jan 2016 04:08:53 +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 2231921C002 for ; Sat, 2 Jan 2016 04:08:53 +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 3ADE333D3CD for ; Sat, 2 Jan 2016 04:08:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03D8DB5D for ; Sat, 2 Jan 2016 04:08:50 +0000 (UTC) From: "Joshua Kinard" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joshua Kinard" Message-ID: <1451707703.6f1c67b6da6e2ba6a87510383f2ac00253832bda.kumba@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/parted/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/parted/parted-3.2-r1.ebuild X-VCS-Directories: sys-block/parted/ X-VCS-Committer: kumba X-VCS-Committer-Name: Joshua Kinard X-VCS-Revision: 6f1c67b6da6e2ba6a87510383f2ac00253832bda X-VCS-Branch: master Date: Sat, 2 Jan 2016 04:08:50 +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: 76aa3915-11c4-4689-bd75-ef48319b646f X-Archives-Hash: 464d3aded4ca4c8bb85254955dce1e95 commit: 6f1c67b6da6e2ba6a87510383f2ac00253832bda Author: Joshua Kinard gentoo org> AuthorDate: Sat Jan 2 04:08:23 2016 +0000 Commit: Joshua Kinard gentoo org> CommitDate: Sat Jan 2 04:08:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1c67b6 For uClibc userlands, add dep to dev-libs/libiconv and append -liconv to LIBS. Fixes/recloses #542296. Package-Manager: portage-2.2.26 sys-block/parted/parted-3.2-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-block/parted/parted-3.2-r1.ebuild b/sys-block/parted/parted-3.2-r1.ebuild index e48c620..c9c6999 100644 --- a/sys-block/parted/parted-3.2-r1.ebuild +++ b/sys-block/parted/parted-3.2-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -inherit autotools eutils +inherit autotools eutils flag-o-matic DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems" HOMEPAGE="https://www.gnu.org/software/parted" @@ -23,6 +23,7 @@ RDEPEND=" device-mapper? ( >=sys-fs/lvm2-2.02.45 ) readline? ( >=sys-libs/readline-5.2:0= ) selinux? ( sys-libs/libselinux ) + elibc_uclibc? ( dev-libs/libiconv ) " DEPEND=" ${RDEPEND} @@ -40,6 +41,7 @@ src_prepare() { } src_configure() { + use elibc_uclibc && append-libs -liconv econf \ $(use_enable debug) \ $(use_enable device-mapper) \