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 EF265138A1F for ; Sun, 26 Jan 2014 20:57:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83E08E0A82; Sun, 26 Jan 2014 20:57:58 +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 18202E0A82 for ; Sun, 26 Jan 2014 20:57:58 +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 E598733F637 for ; Sun, 26 Jan 2014 20:57:56 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id 143312004C; Sun, 26 Jan 2014 20:57:55 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libwebp: libwebp-0.4.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libwebp-0.4.0.ebuild ChangeLog X-VCS-Directories: media-libs/libwebp X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140126205755.143312004C@flycatcher.gentoo.org> Date: Sun, 26 Jan 2014 20:57:55 +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: c4272469-7e89-42e2-a7e7-540c04cd4d55 X-Archives-Hash: 64611d7df99aec2675cabffe6eaa5d2e floppym 14/01/26 20:57:54 Modified: libwebp-0.4.0.ebuild ChangeLog Log: Call elibtoolize to fix relinking when cross-compiling, bug 499270 by James Le Cuirot. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.5 media-libs/libwebp/libwebp-0.4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libwebp/libwebp-0.4.0.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libwebp/libwebp-0.4.0.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libwebp/libwebp-0.4.0.ebuild?r1=1.4&r2=1.5 Index: libwebp-0.4.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libwebp/libwebp-0.4.0.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- libwebp-0.4.0.ebuild 16 Jan 2014 16:00:38 -0000 1.4 +++ libwebp-0.4.0.ebuild 26 Jan 2014 20:57:54 -0000 1.5 @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/libwebp-0.4.0.ebuild,v 1.4 2014/01/16 16:00:38 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/libwebp-0.4.0.ebuild,v 1.5 2014/01/26 20:57:54 floppym Exp $ EAPI=5 -inherit eutils multilib-minimal +inherit eutils libtool multilib-minimal DESCRIPTION="A lossy image compression format" HOMEPAGE="http://code.google.com/p/webp/" @@ -31,6 +31,9 @@ # This is conflicting with `usex` later on, upstream is using ac_cv_ wrong # If modifying configure.ac, eautoreconf is required because of "Maintainer mode" sed -i -e '/unset ac_cv_header_GL_glut_h/d' configure || die + + # Fix libtool relinking, bug 499270. + elibtoolize } multilib_src_configure() { 1.69 media-libs/libwebp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libwebp/ChangeLog?rev=1.69&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libwebp/ChangeLog?rev=1.69&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libwebp/ChangeLog?r1=1.68&r2=1.69 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libwebp/ChangeLog,v retrieving revision 1.68 retrieving revision 1.69 diff -u -r1.68 -r1.69 --- ChangeLog 16 Jan 2014 16:00:38 -0000 1.68 +++ ChangeLog 26 Jan 2014 20:57:54 -0000 1.69 @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libwebp # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/ChangeLog,v 1.68 2014/01/16 16:00:38 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/ChangeLog,v 1.69 2014/01/26 20:57:54 floppym Exp $ + + 26 Jan 2014; Mike Gilbert libwebp-0.4.0.ebuild: + Call elibtoolize to fix relinking when cross-compiling, bug 499270 by James Le + Cuirot. 16 Jan 2014; Anthony G. Basile libwebp-0.2.1.ebuild, libwebp-0.3.0.ebuild, libwebp-0.3.1.ebuild, libwebp-0.4.0.ebuild: