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 1QOa7P-0003bg-Fe for garchives@archives.gentoo.org; Mon, 23 May 2011 18:44:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F2451C06D; Mon, 23 May 2011 18:44:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D90F61C05E for ; Mon, 23 May 2011 18:44:15 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 630F61B4032 for ; Mon, 23 May 2011 18:44:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 841898050C for ; Mon, 23 May 2011 18:44:14 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <4f752d4fe2bdd34a10f2ed85a8dbcc3dc6b3ad43.bicatali@gentoo> Subject: [gentoo-commits] dev/bicatali:master commit in: sci-libs/atlas/ X-VCS-Repository: dev/bicatali X-VCS-Files: sci-libs/atlas/ChangeLog sci-libs/atlas/atlas-3.9.41.ebuild X-VCS-Directories: sci-libs/atlas/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 4f752d4fe2bdd34a10f2ed85a8dbcc3dc6b3ad43 Date: Mon, 23 May 2011 18:44:14 +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: X-Archives-Hash: 2b8d0e2afefc25231a8ac075b0b9f263 commit: 4f752d4fe2bdd34a10f2ed85a8dbcc3dc6b3ad43 Author: S=C3=A9bastien Fabbro gentoo org> AuthorDate: Mon May 23 15:54:22 2011 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Mon May 23 15:54:22 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/bicatali.git;a= =3Dcommit;h=3D4f752d4f gcc temporary hack to avoid undefined symbols --- sci-libs/atlas/ChangeLog | 3 +++ sci-libs/atlas/atlas-3.9.41.ebuild | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sci-libs/atlas/ChangeLog b/sci-libs/atlas/ChangeLog index c1735c9..685e0d5 100644 --- a/sci-libs/atlas/ChangeLog +++ b/sci-libs/atlas/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 + 23 May 2011; S=C3=A9bastien Fabbro atlas-3.9.41.= ebuild: + Forces gcc whenever a version of gcc is used, avoiding upstream bug + *atlas-3.9.41 (17 May 2011) =20 17 May 2011; S=C3=A9bastien Fabbro -atlas-3.9.40= -r1.ebuild, diff --git a/sci-libs/atlas/atlas-3.9.41.ebuild b/sci-libs/atlas/atlas-3.= 9.41.ebuild index d74ecb2..78104f3 100644 --- a/sci-libs/atlas/atlas-3.9.41.ebuild +++ b/sci-libs/atlas/atlas-3.9.41.ebuild @@ -24,12 +24,15 @@ DEPEND=3D"${RDEPEND} S=3D"${WORKDIR}/ATLAS" =20 atlas_configure() { + local mycc=3D"$(tc-getCC)" + # http://sourceforge.net/tracker/?func=3Ddetail&aid=3D3301697&group_id=3D= 23725&atid=3D379483 + [[ ${mycc} =3D=3D *gcc* ]] && mycc=3Dgcc local myconf=3D( "--prefix=3D${ED}/usr" "--libdir=3D${ED}/usr/$(get_libdir)" "--incdir=3D${ED}/usr/include" - "--cc=3D$(tc-getCC)" - "-C ac $(tc-getCC)" + "--cc=3D${mycc}" + "-C ac ${mycc}" "-D c -DWALL" "-F ac '${CFLAGS}'" "-Ss pmake '\$(MAKE) ${MAKEOPTS}'"