summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorYixun Lan <dlan@gentoo.org>2015-03-06 14:08:07 +0000
committerYixun Lan <dlan@gentoo.org>2015-03-06 14:08:07 +0000
commit901b100b4f09f87e4b34e8e790c6ba1c7eeceaba (patch)
tree9e2c5beb5e96ac40e62a98008620d23ffae305e3 /eclass
parentx86 stable wrt bug #541548 (diff)
downloadgentoo-2-901b100b4f09f87e4b34e8e790c6ba1c7eeceaba.tar.gz
gentoo-2-901b100b4f09f87e4b34e8e790c6ba1c7eeceaba.tar.bz2
gentoo-2-901b100b4f09f87e4b34e8e790c6ba1c7eeceaba.zip
very first step to support arm64, only part of qt4 ebuilds built without paches, others require extra patches
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog7
-rw-r--r--eclass/qt4-build-multilib.eclass4
-rw-r--r--eclass/qt4-build.eclass4
3 files changed, 10 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 957f71ea582e..0be109a31322 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for eclass directory
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1558 2015/03/06 01:32:36 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1559 2015/03/06 14:08:07 dlan Exp $
+
+ 06 Mar 2015; Yixun Lan <dlan@gentoo.org> qt4-build.eclass,
+ qt4-build-multilib.eclass:
+ very first step to support arm64, only part of qt4 ebuilds built without
+ paches, others require extra patches
06 Mar 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
xorg-2.eclass:
diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index dfb6abe9f172..b303615b4c70 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.4 2015/01/18 01:49:43 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.5 2015/03/06 14:08:07 dlan Exp $
# @ECLASS: qt4-build-multilib.eclass
# @MAINTAINER:
@@ -290,7 +290,7 @@ qt4_multilib_src_configure() {
sparc*) arch=sparc ;;
x86-macos) arch=x86 ;;
x86*) arch=i386 ;;
- alpha|arm|ia64|mips|s390) arch=$(tc-arch) ;;
+ alpha|arm|arm64|ia64|mips|s390) arch=$(tc-arch) ;;
hppa|sh) arch=generic ;;
*) die "qt4-build-multilib.eclass: unsupported tc-arch '$(tc-arch)'" ;;
esac
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass
index a36b911439d7..66683e010db6 100644
--- a/eclass/qt4-build.eclass
+++ b/eclass/qt4-build.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.158 2015/01/18 01:49:43 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.159 2015/03/06 14:08:07 dlan Exp $
# @ECLASS: qt4-build.eclass
# @MAINTAINER:
@@ -325,7 +325,7 @@ qt4-build_src_configure() {
sparc|sparc-*|sparc64-*) conf+=" -arch sparc" ;;
x86-macos) conf+=" -arch x86" ;;
x86|x86-*) conf+=" -arch i386" ;;
- alpha|arm|ia64|mips|s390) conf+=" -arch $(tc-arch)" ;;
+ alpha|arm|arm64|ia64|mips|s390) conf+=" -arch $(tc-arch)" ;;
hppa|sh) conf+=" -arch generic" ;;
*) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;;
esac