diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-05-28 09:13:03 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-05-28 15:31:54 +0100 |
commit | 32a85c157002874af88a1cd324e1e466bb1df9b6 (patch) | |
tree | 9b146de299cd8a4e262becdaeca88b071bc64b44 /meta/packages/qemu/qemu.inc | |
parent | 3d6e7e7d0c6aed10a859034486191e0b3b69d786 (diff) | |
download | poky-32a85c157002874af88a1cd324e1e466bb1df9b6.tar.gz |
qemu: reduce duplication, use an inc file and share common patches
There's no need to carry around two copies of the same patches for qemu-git and
qemu-0.12 so drop the qemu-git directory and update the git recipe to use the
qemu-0.12 directory for patches.
Move common code from the two recipes to an inc file.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
fweh
Diffstat (limited to 'meta/packages/qemu/qemu.inc')
-rw-r--r-- | meta/packages/qemu/qemu.inc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/packages/qemu/qemu.inc b/meta/packages/qemu/qemu.inc new file mode 100644 index 0000000000..eb630670cf --- /dev/null +++ b/meta/packages/qemu/qemu.inc | |||
@@ -0,0 +1,38 @@ | |||
1 | DESCRIPTION = "open source processor emulator" | ||
2 | HOMEPAGE = "http://qemu.org" | ||
3 | LICENSE = "GPL" | ||
4 | DEPENDS = "zlib" | ||
5 | |||
6 | EXTRA_OECONF = "--target-list=arm-linux-user,arm-softmmu,i386-softmmu,x86_64-softmmu,mips-linux-user,mips-softmmu --disable-werror --disable-vnc-tls" | ||
7 | #EXTRA_OECONF += "--disable-sdl" | ||
8 | |||
9 | inherit autotools | ||
10 | |||
11 | # For our gl powered QEMU you need libGL and SDL headers | ||
12 | do_configure_prepend_virtclass-native() { | ||
13 | libgl='no' | ||
14 | libsdl='no' | ||
15 | |||
16 | test -e /usr/lib/libGL.so -a -e /usr/lib/libGLU.so && libgl='yes' | ||
17 | test -e /usr/lib64/libGL.so -a -e /usr/lib64/libGLU.so && libgl='yes' | ||
18 | |||
19 | test -e /usr/lib/pkgconfig/sdl.pc -o -e /usr/lib64/pkgconfig/sdl.pc && libsdl='yes' | ||
20 | |||
21 | if [ "$libsdl" != 'yes' -o "$libgl" != 'yes' ]; then | ||
22 | echo "You need libGL.so and libGLU.so to exist in your library path and the development headers for SDL installed to build qemu-native. | ||
23 | Ubuntu package names are: libgl1-mesa-dev, libglu1-mesa-dev and libsdl1.2-dev" | ||
24 | exit 1; | ||
25 | fi | ||
26 | } | ||
27 | |||
28 | do_configure() { | ||
29 | ${S}/configure --prefix=${prefix} ${EXTRA_OECONF} | ||
30 | chmod a+x ${S}/target-i386/beginend_funcs.sh | ||
31 | } | ||
32 | |||
33 | SRC_URI_append_virtclass-nativesdk = " file://glflags.patch;patch=1" | ||
34 | DEPENDS_virtclass-nativesdk = "zlib-nativesdk libsdl-nativesdk qemugl-nativesdk" | ||
35 | RDEPENDS_virtclass-nativesdk = "libsdl-nativesdk" | ||
36 | EXTRA_OECONF_virtclass-nativesdk = "--target-list=arm-linux-user,arm-softmmu,i386-softmmu,x86_64-softmmu,mips-linux-user,mips-softmmu --disable-vnc-tls --cc=${HOST_PREFIX}gcc" | ||
37 | |||
38 | BBCLASSEXTEND = "native nativesdk" \ No newline at end of file | ||