Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
home ~ # emerge -pv qemu-softmmu These are the packages that I would merge, in order: Calculating dependencies ...done! [ebuild R ] app-emulation/qemu-softmmu-0.8.0 +kqemu +sdl 0 kB Total size of downloads: 0 kB home ~ # emerge -1 qemu-softmmu Calculating dependencies ...done! >>> emerge (1 of 1) app-emulation/qemu-softmmu-0.8.0 to / >>> md5 files ;-) qemu-softmmu-0.8.0.ebuild >>> md5 files ;-) qemu-softmmu-0.7.1-r1.ebuild >>> md5 files ;-) qemu-softmmu-0.7.1.ebuild >>> md5 files ;-) qemu-softmmu-0.7.0-r1.ebuild >>> md5 files ;-) qemu-softmmu-0.7.2.ebuild >>> md5 files ;-) files/digest-qemu-softmmu-0.7.1 >>> md5 files ;-) files/digest-qemu-softmmu-0.7.2 >>> md5 files ;-) files/digest-qemu-softmmu-0.8.0 >>> md5 files ;-) files/qemu-softmmu-0.7.0-errno.patch >>> md5 files ;-) files/kqemu-0.7.1-sysfs.patch >>> md5 files ;-) files/digest-qemu-softmmu-0.7.0-r1 >>> md5 files ;-) files/digest-qemu-softmmu-0.7.1-r1 >>> md5 files ;-) files/kqemu-sysfs.patch >>> md5 src_uri ;-) qemu-0.8.0.tar.gz >>> md5 src_uri ;-) kqemu-0.7.2.tar.gz >>> Unpacking source... >>> Unpacking qemu-0.8.0.tar.gz to /var/tmp/portage/qemu-softmmu-0.8.0/work >>> Unpacking kqemu-0.7.2.tar.gz to /var/tmp/portage/qemu-softmmu-0.8.0/work >>> Source unpacked. * test_flag: deprecated, please use test-flags()! Install prefix /usr BIOS directory /usr/share/qemu binary directory /usr/bin Manual directory /usr/share/man ELF interp prefix /usr/gnemul/qemu-%M Source path /var/tmp/portage/qemu-softmmu-0.8.0/work/qemu-0.8.0 C compiler gcc Host C compiler gcc make make host CPU i386 host big endian no target list i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu gprof enabled no static build no SDL support yes SDL static link yes mingw32 support no Adlib support no CoreAudio support no ALSA support no <----------------------------- DSound support no FMOD support no kqemu support yes KQEMU Linux module configuration: kernel sources /lib/modules/2.6.14-gentoo-r5/build kbuild type 2.6 gcc -fno-pie -Wall -O2 -g -fno-strict-aliasing -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -o dyngen dyngen.c .... Qemu-softmmu seems to have alsa support, but currently there is no way to enable it. It would be real nice to have an alsa useflag for that purpose given how common alsa systems are these days.
The following patch adds ( hopefuly correctly ) the useflag. Please commit. --- ./qemu-softmmu-0.8.0.ebuild.orig 2006-01-08 12:56:44.000000000 +0200 +++ ./qemu-softmmu-0.8.0.ebuild 2006-01-08 12:32:20.000000000 +0200 @@ -12,7 +12,7 @@ LICENSE="GPL-2 LGPL-2.1 KQEMU" SLOT="0" KEYWORDS="-alpha amd64 ~ppc -sparc ~x86" -IUSE="sdl kqemu" #qvm86 debug nptl qemu-fast nptlonly" +IUSE="sdl kqemu alsa" #qvm86 debug nptl qemu-fast nptlonly" RESTRICT="nostrip" DEPEND="virtual/libc @@ -80,6 +80,7 @@ $(use_enable kqemu) \ ${myconf} \ $(use_enable sdl)\ + $(use_enable alsa)\ || die "could not configure" emake || die "make failed"
*** Bug 136036 has been marked as a duplicate of this bug. ***
If you're at it: Adlib support no CoreAudio support no Adlib support will enable qemu to emulate an opl2 chip which might be uesful for people trying to run old games. And coreaudio would be an option for people using Mac OS X (like in media-sound/jack-audio-connectio-kit) So: $(use_enable sdl)\ + $(use_enable alsa)\ + $(use_enable adlib)\ + $(use_enable coreaudio)\ || die "could not configure" and adding those to IUSE would be nice, as I said on the bug which was marked a duplicate.
done in 0.8.2-r1, sorry for the delay