diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-02-23 02:05:41 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-02-23 02:05:41 +0000 |
commit | cef98309bd3c7243c97c028210d1e39b7f621616 (patch) | |
tree | fdfcd6623b7d7b0100927c82bbdfdeb3c8888358 /sys-boot | |
parent | Version bump. (diff) | |
download | gentoo-2-cef98309bd3c7243c97c028210d1e39b7f621616.tar.gz gentoo-2-cef98309bd3c7243c97c028210d1e39b7f621616.tar.bz2 gentoo-2-cef98309bd3c7243c97c028210d1e39b7f621616.zip |
This builds on amd64 too! Add ~amd64.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/gnu-efi/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/gnu-efi/gnu-efi-3.0e.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sys-boot/gnu-efi/ChangeLog b/sys-boot/gnu-efi/ChangeLog index 46fd054af057..64aac3afa670 100644 --- a/sys-boot/gnu-efi/ChangeLog +++ b/sys-boot/gnu-efi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/gnu-efi # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.13 2008/02/10 00:10:01 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.14 2008/02/23 02:05:41 robbat2 Exp $ + + 23 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> gnu-efi-3.0e.ebuild: + This builds on amd64 too! Add ~amd64. *gnu-efi-3.0e (08 Feb 2008) diff --git a/sys-boot/gnu-efi/gnu-efi-3.0e.ebuild b/sys-boot/gnu-efi/gnu-efi-3.0e.ebuild index 4fe9d3bdec19..c9f6c5a5b2de 100644 --- a/sys-boot/gnu-efi/gnu-efi-3.0e.ebuild +++ b/sys-boot/gnu-efi/gnu-efi-3.0e.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0e.ebuild,v 1.1 2008/02/08 17:36:43 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0e.ebuild,v 1.2 2008/02/23 02:05:41 robbat2 Exp $ inherit eutils toolchain-funcs @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/gnu-efi/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~ia64 ~x86" +KEYWORDS="~ia64 ~x86 ~amd64" IUSE="" DEPEND="sys-apps/pciutils" @@ -20,8 +20,9 @@ S="${WORKDIR}"/${PN}-3.0 src_compile() { local iarch case $ARCH in - ia64) iarch=ia64 ;; - x86) iarch=ia32 ;; + ia64) iarch=ia64 ;; + x86) iarch=ia32 ;; + amd64) iarch=x86_64 ;; *) die "unknown architecture: $ARCH" ;; esac emake CC="$(tc-getCC)" ARCH=${iarch} -j1 || die "emake failed" |