diff options
author | 2006-08-01 19:09:16 +0000 | |
---|---|---|
committer | 2006-08-01 19:09:16 +0000 | |
commit | 8e63825a64c251af592b495a592abc220b2f4766 (patch) | |
tree | 3667785fc4198ab622bb388bc143c46721984ab8 /app-emulation | |
parent | Assigned to VDR-Project. (diff) | |
download | gentoo-2-8e63825a64c251af592b495a592abc220b2f4766.tar.gz gentoo-2-8e63825a64c251af592b495a592abc220b2f4766.tar.bz2 gentoo-2-8e63825a64c251af592b495a592abc220b2f4766.zip |
checking for gcc-3
(Portage version: 2.1.1_pre4-r1)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/qemu-softmmu/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/app-emulation/qemu-softmmu/ChangeLog b/app-emulation/qemu-softmmu/ChangeLog index e6abe643dcf4..77f48251160f 100644 --- a/app-emulation/qemu-softmmu/ChangeLog +++ b/app-emulation/qemu-softmmu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/qemu-softmmu # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-softmmu/ChangeLog,v 1.22 2006/08/01 09:46:33 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-softmmu/ChangeLog,v 1.23 2006/08/01 19:09:16 lu_zero Exp $ + + 01 Aug 2006; Luca Barbato <lu_zero@gentoo.org> qemu-softmmu-0.8.2.ebuild: + False hope, gcc-3 is still required. *qemu-softmmu-0.8.2 (01 Aug 2006) diff --git a/app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild b/app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild index 606d877d1420..e6e07cc74ab2 100644 --- a/app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild +++ b/app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild,v 1.1 2006/08/01 09:46:33 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-softmmu/qemu-softmmu-0.8.2.ebuild,v 1.2 2006/08/01 19:09:16 lu_zero Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -29,6 +29,14 @@ set_target_list() { export TARGET_LIST } +pkg_setup() { + if [ "$(gcc-major-version)" == "4" ]; then + eerror "qemu requires gcc-3 in order to build and work correctly" + eerror "please compile it with gcc-3" + die "gcc 4 cannot build qemu" + fi +} + #RUNTIME_PATH="/emul/gnemul/" src_unpack() { unpack ${A} |