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 1P1SGh-0000h0-R7 for garchives@archives.gentoo.org; Thu, 30 Sep 2010 23:10:28 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33858E0AE3; Thu, 30 Sep 2010 23:10:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 17915E0AE3 for ; Thu, 30 Sep 2010 23:10:23 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95A2B1B40BA for ; Thu, 30 Sep 2010 23:10:22 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2166) id 2E06420051; Thu, 30 Sep 2010 23:10:21 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-18.1.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: hwinfo-18.1.ebuild X-VCS-Directories: sys-apps/hwinfo X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: <20100930231021.2E06420051@flycatcher.gentoo.org> Date: Thu, 30 Sep 2010 23:10:21 +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: e532cc70-58eb-48d9-a8da-399bb9a99eb7 X-Archives-Hash: 2ce4e86ae1849c8659bda3e1d9b3fb36 ssuominen 10/09/30 23:10:21 Modified: hwinfo-18.1.ebuild Log: Respect AR too =20 (Portage version: 2.2_rc88/cvs/Linux x86_64) Revision Changes Path 1.3 sys-apps/hwinfo/hwinfo-18.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/hw= info-18.1.ebuild?rev=3D1.3&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/hw= info-18.1.ebuild?rev=3D1.3&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/hw= info-18.1.ebuild?r1=3D1.2&r2=3D1.3 Index: hwinfo-18.1.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/sys-apps/hwinfo/hwinfo-18.1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- hwinfo-18.1.ebuild 30 Sep 2010 22:58:06 -0000 1.2 +++ hwinfo-18.1.ebuild 30 Sep 2010 23:10:21 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-18.1.ebuild,v = 1.2 2010/09/30 22:58:06 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-18.1.ebuild,v = 1.3 2010/09/30 23:10:21 ssuominen Exp $ =20 EAPI=3D2 inherit multilib rpm toolchain-funcs @@ -21,6 +21,11 @@ MAKEOPTS=3D"${MAKEOPTS} -j1" =20 src_prepare() { + # Respect AR variable. + sed -i \ + -e 's:ar r:$(AR) r:' \ + src/{,isdn,ids,smp,hd}/Makefile || die + # Avoid -I directories for dbus because HAL is obsolete. sed -i -e '/CFLAGS/d' src/hd/Makefile || die # Respect LDFLAGS. @@ -36,6 +41,7 @@ } =20 src_compile() { + tc-export AR emake CC=3D"$(tc-getCC)" RPM_OPT_FLAGS=3D"${CFLAGS}" || die } =20