summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2004-10-28 07:11:14 +0000
committerLuca Barbato <lu_zero@gentoo.org>2004-10-28 07:11:14 +0000
commit2fdf35905f42229c87c674ecbc81e0672ea70484 (patch)
tree3cf25fdfb52eaea15451f74db4c02fd3d32be194 /app-emulation
parentMarked x86 and ppc (Manifest recommit) (diff)
downloadgentoo-2-2fdf35905f42229c87c674ecbc81e0672ea70484.tar.gz
gentoo-2-2fdf35905f42229c87c674ecbc81e0672ea70484.tar.bz2
gentoo-2-2fdf35905f42229c87c674ecbc81e0672ea70484.zip
Marked ppc
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/qemu/ChangeLog5
-rw-r--r--app-emulation/qemu/qemu-0.6.0.ebuild14
2 files changed, 14 insertions, 5 deletions
diff --git a/app-emulation/qemu/ChangeLog b/app-emulation/qemu/ChangeLog
index 02f69c32d3b3..9de4e6d600e8 100644
--- a/app-emulation/qemu/ChangeLog
+++ b/app-emulation/qemu/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/qemu
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.16 2004/09/25 11:29:30 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.17 2004/10/28 07:11:14 lu_zero Exp $
+
+ 28 Oct 2004; Luca Barbato <lu_zero@gentoo.org> qemu-0.6.0.ebuild:
+ Marked ppc, added some ewarn in the postinst as requested in bug #69206
25 Sep 2004; Hanno Boeck <hanno@gentoo.org> +files/qemu_gcc34.patch.gz,
qemu-0.6.0.ebuild:
diff --git a/app-emulation/qemu/qemu-0.6.0.ebuild b/app-emulation/qemu/qemu-0.6.0.ebuild
index f77e1585189c..c8a3a7f21a90 100644
--- a/app-emulation/qemu/qemu-0.6.0.ebuild
+++ b/app-emulation/qemu/qemu-0.6.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.6.0.ebuild,v 1.3 2004/09/25 11:29:30 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.6.0.ebuild,v 1.4 2004/10/28 07:11:14 lu_zero Exp $
inherit eutils
@@ -10,7 +10,7 @@ SRC_URI="http://fabrice.bellard.free.fr/qemu/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
-KEYWORDS="~x86 ~ppc -alpha -sparc"
+KEYWORDS="~x86 ppc -alpha -sparc"
IUSE="softmmu qemu-fast sdl"
RESTRICT="nostrip"
@@ -56,6 +56,12 @@ src_install() {
}
pkg_postinst() {
- echo ">> You will need the Universal TUN/TAP driver compiled into"
- echo ">> kernel or as a module to use the virtual network device."
+ einfo "You will need the Universal TUN/TAP driver compiled into"
+ einfo "kernel or as a module to use the virtual network device."
+ use softmmu || \
+ (
+ ewarn "You have the softmmu useflag disabled."
+ ewarn "In order to have the full system emulator (qemu) you have"
+ ewarn "to emerge qemu again with the softmmu useflag enabled"
+ )
}