diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2005-05-07 09:23:26 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2005-05-07 09:23:26 +0000 |
commit | 7a907cadb0d28b2fe9c27dadcf01147a863d5b42 (patch) | |
tree | 35c5d20502df64f347876ebf12d7107ce001517f /app-emulation/qemu | |
parent | Stable on hppa. (diff) | |
download | gentoo-2-7a907cadb0d28b2fe9c27dadcf01147a863d5b42.tar.gz gentoo-2-7a907cadb0d28b2fe9c27dadcf01147a863d5b42.tar.bz2 gentoo-2-7a907cadb0d28b2fe9c27dadcf01147a863d5b42.zip |
Minor changes
(Portage version: 2.0.51.21)
Diffstat (limited to 'app-emulation/qemu')
-rw-r--r-- | app-emulation/qemu/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/qemu/qemu-0.7.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-emulation/qemu/ChangeLog b/app-emulation/qemu/ChangeLog index f840127a1465..3fb3d137622a 100644 --- a/app-emulation/qemu/ChangeLog +++ b/app-emulation/qemu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/qemu # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.31 2005/04/29 22:27:37 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.32 2005/05/07 09:23:26 lu_zero Exp $ + + 07 May 2005; Luca Barbato <lu_zero@gentoo.org> qemu-0.7.0.ebuild: + Some fixes here and there, thanks to Sok Ann Yap <sokann@gmail.com> 29 Apr 2005; Luca Barbato <lu_zero@gentoo.org> qemu-0.7.0.ebuild: Retouches and corrections, thanks to genstef as usual diff --git a/app-emulation/qemu/qemu-0.7.0.ebuild b/app-emulation/qemu/qemu-0.7.0.ebuild index 6faac7dd4a50..44f7f5f5ad60 100644 --- a/app-emulation/qemu/qemu-0.7.0.ebuild +++ b/app-emulation/qemu/qemu-0.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.7.0.ebuild,v 1.4 2005/04/29 22:27:37 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.7.0.ebuild,v 1.5 2005/05/07 09:23:26 lu_zero Exp $ inherit eutils flag-o-matic linux-mod @@ -83,7 +83,7 @@ src_compile() { --kernel-path=${KV_DIR} \ $(use_enable kqemu) \ ${myconf} \ - `use_enable sdl`\ + $(use_enable sdl)\ || die "could not configure" emake || die "make failed" @@ -118,7 +118,7 @@ src_install() { pkg_postinst() { einfo "You will need the Universal TUN/TAP driver compiled into" einfo "kernel or as a module to use the virtual network device." - if use ! softmmu ; then + if ! use softmmu ; then ewarn "" ewarn "You have the softmmu useflag disabled." ewarn "In order to have the full system emulator (qemu) you have" |