# HG changeset patch # User Christophe Lincoln # Date 1306755870 -7200 # Node ID b580186756a807e606627763b1ca08ed66366e28 # Parent d2779aeec6a5a0451accf080bd0a1fe032c0b463 qemu-light: we needs some blobs diff -r d2779aeec6a5 -r b580186756a8 qemu-light/receipt --- a/qemu-light/receipt Mon May 30 12:34:37 2011 +0200 +++ b/qemu-light/receipt Mon May 30 13:44:30 2011 +0200 @@ -10,6 +10,7 @@ WEB_SITE="http://www.qemu.org/" WGET_URL="http://download.savannah.gnu.org/releases/qemu/$TARBALL" TAGS="virtualization" +CONFLICT="qemu" DEPENDS="alsa-lib libsdl util-linux-ng-uuid" BUILD_DEPENDS="perl alsa-lib-dev libsdl-dev util-linux-ng-uuid-dev" @@ -28,7 +29,6 @@ --disable-bluez \ --disable-curses \ --disable-vde \ - --disable-blobs \ --enable-io-thread \ --audio-drv-list=alsa \ --target-list="$TARGET" \ @@ -39,9 +39,11 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/qemu $fs/usr/share - rm -f $fs/usr/share/qemu/*ppc* - rm -f $fs/usr/share/qemu/*sparc* + mkdir -p $fs/usr/share/qemu + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/qemu/keymaps $fs/usr/share/qemu + for bin in bios.bin vgabios-cirrus.bin pxe-e1000.bin + do + cp -a $install/usr/share/qemu/$bin $fs/usr/share/qemu + done }