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 F1F451393E9 for ; Thu, 27 Mar 2014 06:30:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A741E0A69; Thu, 27 Mar 2014 06:30:44 +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 086AEE0A69 for ; Thu, 27 Mar 2014 06:30:43 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 096E433FD5F for ; Thu, 27 Mar 2014 06:30:43 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id CA21520051; Thu, 27 Mar 2014 06:30:41 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libiconv: libiconv-1.14-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libiconv-1.14-r1.ebuild ChangeLog X-VCS-Directories: dev-libs/libiconv X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140327063041.CA21520051@flycatcher.gentoo.org> Date: Thu, 27 Mar 2014 06:30:41 +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: d5a232f2-7a2b-46b8-865a-92cf4cda0fd1 X-Archives-Hash: 1c04fbfdad91dbfbbb09863c23c5dc9c vapier 14/03/27 06:30:41 Modified: libiconv-1.14-r1.ebuild ChangeLog Log: Fix build w/newer glibc, and simplify install phase. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision Changes Path 1.5 dev-libs/libiconv/libiconv-1.14-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libiconv/libiconv-1.14-r1.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libiconv/libiconv-1.14-r1.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libiconv/libiconv-1.14-r1.ebuild?r1=1.4&r2=1.5 Index: libiconv-1.14-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libiconv/libiconv-1.14-r1.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- libiconv-1.14-r1.ebuild 24 Dec 2013 12:43:52 -0000 1.4 +++ libiconv-1.14-r1.ebuild 27 Mar 2014 06:30:41 -0000 1.5 @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libiconv/libiconv-1.14-r1.ebuild,v 1.4 2013/12/24 12:43:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libiconv/libiconv-1.14-r1.ebuild,v 1.5 2014/03/27 06:30:41 vapier Exp $ EAPI="4" @@ -20,25 +20,23 @@ RDEPEND="${DEPEND}" src_prepare() { - # Make sure that libtool support is updated to link "the linux way" - # on FreeBSD. + epatch "${FILESDIR}"/${P}-no-gets.patch elibtoolize } multilib_src_configure() { # Disable NLS support because that creates a circular dependency # between libiconv and gettext - ECONF_SOURCE="${S}" econf \ + ECONF_SOURCE="${S}" \ + econf \ --docdir="\$(datarootdir)/doc/${PF}/html" \ --disable-nls \ --enable-shared \ $(use_enable static-libs static) } -multilib_src_install() { - default - +multilib_src_install_all() { # Install in /lib as utils installed in /lib like gnutar # can depend on this - [ "${ABI}" = "${DEFAULT_ABI}" ] && gen_usr_ldscript -a iconv charset + gen_usr_ldscript -a iconv charset } 1.46 dev-libs/libiconv/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libiconv/ChangeLog?rev=1.46&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libiconv/ChangeLog?rev=1.46&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libiconv/ChangeLog?r1=1.45&r2=1.46 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libiconv/ChangeLog,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- ChangeLog 24 Dec 2013 12:43:52 -0000 1.45 +++ ChangeLog 27 Mar 2014 06:30:41 -0000 1.46 @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libiconv -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libiconv/ChangeLog,v 1.45 2013/12/24 12:43:52 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libiconv/ChangeLog,v 1.46 2014/03/27 06:30:41 vapier Exp $ + + 27 Mar 2014; Mike Frysinger + +files/libiconv-1.14-no-gets.patch, libiconv-1.14-r1.ebuild: + Fix build w/newer glibc, and simplify install phase. 24 Dec 2013; Agostino Sarubbo libiconv-1.14-r1.ebuild: Stable for x86, wrt bug #492042