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 1MVuc1-00013n-PD for garchives@archives.gentoo.org; Tue, 28 Jul 2009 21:53:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFCE0E0408; Tue, 28 Jul 2009 21:53:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A0CB3E0408 for ; Tue, 28 Jul 2009 21:53:32 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 3C3FB66889 for ; Tue, 28 Jul 2009 21:53:32 +0000 (UTC) Received: from vostorga by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MVubz-0007ES-Oa for gentoo-commits@lists.gentoo.org; Tue, 28 Jul 2009 21:53:31 +0000 From: "Victor Ostorga (vostorga)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vostorga@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.36-r1.ebuild ChangeLog libtommath-0.41.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: libtommath-0.36-r1.ebuild ChangeLog libtommath-0.41.ebuild X-VCS-Directories: dev-libs/libtommath X-VCS-Committer: vostorga X-VCS-Committer-Name: Victor Ostorga Content-Type: text/plain; charset=utf8 Message-Id: Sender: Victor Ostorga Date: Tue, 28 Jul 2009 21:53:31 +0000 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: 1f65bd32-7e67-479d-85a1-ce07f6b73280 X-Archives-Hash: 42493741042d05fd6b87daf543428b6b vostorga 09/07/28 21:53:31 Modified: libtommath-0.36-r1.ebuild ChangeLog libtommath-0.41.ebuild Log: Respecting CC variable, closes bug #243928 (Portage version: 2.1.6.13/cvs/Linux i686) Revision Changes Path 1.13 dev-libs/libtommath/libtommath-0.36-r1.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/libtommath-0.36-r1.ebuild?rev=3D1.13&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/libtommath-0.36-r1.ebuild?rev=3D1.13&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/libtommath-0.36-r1.ebuild?r1=3D1.12&r2=3D1.13 Index: libtommath-0.36-r1.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.36-r1.= ebuild,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- libtommath-0.36-r1.ebuild 24 Jul 2009 16:41:31 -0000 1.12 +++ libtommath-0.36-r1.ebuild 28 Jul 2009 21:53:31 -0000 1.13 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.36-r= 1.ebuild,v 1.12 2009/07/24 16:41:31 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.36-r= 1.ebuild,v 1.13 2009/07/28 21:53:31 vostorga Exp $ =20 inherit eutils multilib =20 @@ -19,18 +19,19 @@ RESTRICT=3D"test" =20 src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-shared-lib.patch - epatch "${FILESDIR}"/${P}-LDFLAGS.patch + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-shared-lib.patch + epatch "${FILESDIR}"/${P}-LDFLAGS.patch + epatch "${FILESDIR}"/${P}-CC.patch } =20 src_compile() { - emake -f makefile.shared IGNORE_SPEED=3D1 || die + emake CC=3D"$(tc-getCC)" -f makefile.shared IGNORE_SPEED=3D1 || die } =20 src_install() { - make -f makefile.shared install DESTDIR=3D"${D}" LIBPATH=3D"/usr/$(get_= libdir)" || die - dodoc changes.txt *.pdf - docinto demo ; dodoc demo/* + make -f makefile.shared install DESTDIR=3D"${D}" LIBPATH=3D"/usr/$(get= _libdir)" || die + dodoc changes.txt *.pdf + docinto demo ; dodoc demo/* } 1.29 dev-libs/libtommath/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/ChangeLog?rev=3D1.29&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/ChangeLog?rev=3D1.29&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/ChangeLog?r1=3D1.28&r2=3D1.29 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- ChangeLog 24 Jul 2009 16:41:31 -0000 1.28 +++ ChangeLog 28 Jul 2009 21:53:31 -0000 1.29 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libtommath # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.28 = 2009/07/24 16:41:31 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.29 = 2009/07/28 21:53:31 vostorga Exp $ + + 28 Jul 2009; V=C3=ADctor Ostorga + libtommath-0.36-r1.ebuild, +files/libtommath-0.36-CC.patch, + libtommath-0.41.ebuild, +files/libtommath-0.41-CC.patch: + Respecting CC variable, closes bug #243928 =20 24 Jul 2009; Joseph Jezak libtommath-0.36-r1.ebuil= d: Marked ppc64 stable. 1.3 dev-libs/libtommath/libtommath-0.41.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/libtommath-0.41.ebuild?rev=3D1.3&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/libtommath-0.41.ebuild?rev=3D1.3&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtommat= h/libtommath-0.41.ebuild?r1=3D1.2&r2=3D1.3 Index: libtommath-0.41.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.41.ebu= ild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- libtommath-0.41.ebuild 30 Mar 2009 16:28:55 -0000 1.2 +++ libtommath-0.41.ebuild 28 Jul 2009 21:53:31 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.41.e= build,v 1.2 2009/03/30 16:28:55 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.41.e= build,v 1.3 2009/07/28 21:53:31 vostorga Exp $ =20 inherit eutils multilib =20 @@ -20,10 +20,11 @@ unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-LDFLAGS.patch + epatch "${FILESDIR}"/${P}-CC.patch } =20 src_compile() { - emake -f makefile.shared IGNORE_SPEED=3D1 || die "emake failed" + emake CC=3D$(tc-getCC) -f makefile.shared IGNORE_SPEED=3D1 || die "emak= e failed" } =20 src_install() {