From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RQ3cO-0003Fj-Ck for garchives@archives.gentoo.org; Mon, 14 Nov 2011 20:59:04 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90AA221C04C; Mon, 14 Nov 2011 20:58:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6277121C04C for ; Mon, 14 Nov 2011 20:58:56 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF4D21B4033 for ; Mon, 14 Nov 2011 20:58:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1C15780042 for ; Mon, 14 Nov 2011 20:58:55 +0000 (UTC) From: "Thomas Sachau" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Sachau" Message-ID: <12cc1427abc4fc14f5a3087e447fa641f34b1a55.tommy@gentoo> Subject: [gentoo-commits] proj/portage:multilib commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/phase-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: tommy X-VCS-Committer-Name: Thomas Sachau X-VCS-Revision: 12cc1427abc4fc14f5a3087e447fa641f34b1a55 Date: Mon, 14 Nov 2011 20:58: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 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a68f430c-d601-4ddb-a861-dd50ac7bb1d5 X-Archives-Hash: 9063d2319c1f636cd11c7f807e25276c commit: 12cc1427abc4fc14f5a3087e447fa641f34b1a55 Author: Thomas Sachau gentoo org> AuthorDate: Mon Nov 14 20:58:38 2011 +0000 Commit: Thomas Sachau gentoo org> CommitDate: Mon Nov 14 20:58:38 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D12cc1427 Add exception for media-libs/gst-plugins-* --- bin/phase-functions.sh | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh index 122faeb..b6e450b 100644 --- a/bin/phase-functions.sh +++ b/bin/phase-functions.sh @@ -639,6 +639,9 @@ dyn_install() { if [[ "${CATEGORY}/${PN}" =3D=3D "sys-devel/libtool" ]] ; then ewarn "Preserving libltdl.la because of extensive usage" ewarn "even in m4 macros of libtool" + elif [[ "${CATEGORY}/${PN}" =3D=3D "media-libs/gst-plugins-"* ]] + ewarn "Preserving .la files for gst plugins + ewarn "because of broken Gentoo package" else find "${D}" -name '*.la' ! -exec grep -q shouldnotlink=3Dyes {} \; -e= xec rm {} \; fi