diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2013-09-14 10:49:40 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2013-09-14 10:49:40 +0000 |
commit | 4e5b5fd5675e2174cc9b5d05cda4705347eabd7a (patch) | |
tree | d9d9530e69054af85381be670b43d9be7117eb01 /sys-devel | |
parent | Fix my last commit to use tc-export instead (diff) | |
download | gentoo-2-4e5b5fd5675e2174cc9b5d05cda4705347eabd7a.tar.gz gentoo-2-4e5b5fd5675e2174cc9b5d05cda4705347eabd7a.tar.bz2 gentoo-2-4e5b5fd5675e2174cc9b5d05cda4705347eabd7a.zip |
Respect AR. Bug #484860
(Portage version: 2.2.4/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/bc/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/bc/bc-1.06.95-r1.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/sys-devel/bc/ChangeLog b/sys-devel/bc/ChangeLog index 1c280068b6c5..38ac1e39a63d 100644 --- a/sys-devel/bc/ChangeLog +++ b/sys-devel/bc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/bc -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.41 2012/04/26 13:55:58 aballier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.42 2013/09/14 10:49:40 hwoarang Exp $ + + 14 Sep 2013; Markos Chandras <hwoarang@gentoo.org> bc-1.06.95-r1.ebuild: + Respect AR. Bug #484860 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> bc-1.06.95-r1.ebuild: keyword ~amd64-fbsd diff --git a/sys-devel/bc/bc-1.06.95-r1.ebuild b/sys-devel/bc/bc-1.06.95-r1.ebuild index 277c89d3ffdc..b9b8e37029e3 100644 --- a/sys-devel/bc/bc-1.06.95-r1.ebuild +++ b/sys-devel/bc/bc-1.06.95-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v 1.4 2012/04/26 13:55:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v 1.5 2013/09/14 10:49:40 hwoarang Exp $ EAPI="2" -inherit eutils flag-o-matic +inherit eutils flag-o-matic toolchain-funcs DESCRIPTION="Handy console-based calculator utility" HOMEPAGE="http://www.gnu.org/software/bc/bc.html" @@ -38,6 +38,10 @@ src_configure() { econf ${myconf} } +src_compile() { + emake AR="$(tc-getAR)" || die +} + src_install() { emake install DESTDIR="${D}" || die dodoc AUTHORS FAQ NEWS README ChangeLog |