wok view qemu/receipt @ rev 5894

inkscape: Fix build with gcc45 (http://bugs.gentoo.org/show_bug.cgi?id=305749)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jul 22 23:54:43 2010 +0200 (2010-07-22)
parents 1707e54fb4cf
children 8d94d34eda05
line source
1 # SliTaz package receipt.
3 PACKAGE="qemu"
4 VERSION="0.10.5"
5 CATEGORY="misc"
6 SHORT_DESC="General-purpose full virtualizer for x86 hardware."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.nongnu.org/qemu/"
10 WGET_URL="http://download.savannah.gnu.org/releases/qemu/$TARBALL"
11 BUILD_DEPENDS="alsa-lib-dev gettext libsdl-dev"
12 DEPENDS="alsa-lib gnutls libsdl zlib bluez libtasn1"
13 TAGS="virtualization"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 # From 0.10.0 VirtIO paravirtual device are supported.
21 #[ -f done.virtio.u ] || patch -p1 < ../stuff/virtio.u
22 #touch done.virtio.u
24 #./configure --prefix=/usr --enable-alsa --disable-gfx-check
26 ./configure \
27 --prefix=/usr \
28 --target-list="i386-softmmu,x86_64-softmmu" &&
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $_pkg/usr $fs
37 }