Gentoo Archives: gentoo-commits

From: Joshua Kinard <kumba@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/parted/
Date: Sat, 02 Jan 2016 04:08:54
Message-Id: 1451707703.6f1c67b6da6e2ba6a87510383f2ac00253832bda.kumba@gentoo
1 commit: 6f1c67b6da6e2ba6a87510383f2ac00253832bda
2 Author: Joshua Kinard <kumba <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 04:08:23 2016 +0000
4 Commit: Joshua Kinard <kumba <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 04:08:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1c67b6
7
8 For uClibc userlands, add dep to dev-libs/libiconv and append -liconv to LIBS. Fixes/recloses #542296.
9
10 Package-Manager: portage-2.2.26
11
12 sys-block/parted/parted-3.2-r1.ebuild | 6 ++++--
13 1 file changed, 4 insertions(+), 2 deletions(-)
14
15 diff --git a/sys-block/parted/parted-3.2-r1.ebuild b/sys-block/parted/parted-3.2-r1.ebuild
16 index e48c620..c9c6999 100644
17 --- a/sys-block/parted/parted-3.2-r1.ebuild
18 +++ b/sys-block/parted/parted-3.2-r1.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 EAPI=5
26 -inherit autotools eutils
27 +inherit autotools eutils flag-o-matic
28
29 DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
30 HOMEPAGE="https://www.gnu.org/software/parted"
31 @@ -23,6 +23,7 @@ RDEPEND="
32 device-mapper? ( >=sys-fs/lvm2-2.02.45 )
33 readline? ( >=sys-libs/readline-5.2:0= )
34 selinux? ( sys-libs/libselinux )
35 + elibc_uclibc? ( dev-libs/libiconv )
36 "
37 DEPEND="
38 ${RDEPEND}
39 @@ -40,6 +41,7 @@ src_prepare() {
40 }
41
42 src_configure() {
43 + use elibc_uclibc && append-libs -liconv
44 econf \
45 $(use_enable debug) \
46 $(use_enable device-mapper) \