diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-24 12:30:53 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-24 12:50:44 +0100 |
| commit | fa471acc0030c77152c9b72e8f31f6c49f706f01 (patch) | |
| tree | ccb5ac9be21e5b865ac292e44029294de26971dc /meta/recipes-graphics/mesa/qemugl_git.bb | |
| parent | 952b879de5ffdb04a706fc4e2824696b25c4bf11 (diff) | |
| download | poky-fa471acc0030c77152c9b72e8f31f6c49f706f01.tar.gz | |
qemugl: Remove since support for it was removed from qemu
(From OE-Core rev: 0195a08f77fe0e01b2d7548ccffeaf89d2d780e1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/qemugl_git.bb')
| -rw-r--r-- | meta/recipes-graphics/mesa/qemugl_git.bb | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/meta/recipes-graphics/mesa/qemugl_git.bb b/meta/recipes-graphics/mesa/qemugl_git.bb deleted file mode 100644 index 9cf04364ac..0000000000 --- a/meta/recipes-graphics/mesa/qemugl_git.bb +++ /dev/null | |||
| @@ -1,50 +0,0 @@ | |||
| 1 | DESCRIPTION = "QEMU i386 OpenGL passtrough" | ||
| 2 | HOMEPAGE = "http://savannah.nongnu.org/projects/qemugl" | ||
| 3 | SECTION = "x11/drivers" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://opengl_client.c;beginline=4;endline=23;md5=a7dbe915be5fb5df8fd496f348ed9a05 \ | ||
| 6 | file://parse_mesa_get_c.c;befinline=4;endline=23;md5=a55f258f32720c9565a425a3956bcb5e" | ||
| 7 | |||
| 8 | DEPENDS = "virtual/libx11 xproto glproto libxfixes" | ||
| 9 | |||
| 10 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)' | ||
| 11 | |||
| 12 | SRC_URI = "git://git.yoctoproject.org/qemugl;protocol=git \ | ||
| 13 | file://versionfix.patch \ | ||
| 14 | file://remove-x11r6-lib-dir.patch \ | ||
| 15 | file://call_opengl_fix.patch \ | ||
| 16 | file://extensions_emulation.patch" | ||
| 17 | S = "${WORKDIR}/git" | ||
| 18 | |||
| 19 | SRCREV = "d888bbc723c00d197d34a39b5b7448660ec1b1c0" | ||
| 20 | |||
| 21 | PV = "0.0+git${SRCPV}" | ||
| 22 | PR = "r11" | ||
| 23 | |||
| 24 | DEFAULT_PREFERENCE = "-1" | ||
| 25 | |||
| 26 | do_install () { | ||
| 27 | install -d ${D}${libdir}/ | ||
| 28 | if [ "${PN}" != "nativesdk-qemugl" ]; then | ||
| 29 | install -m 0755 ${S}/libGL.so.1.2 ${D}${libdir}/libGL-qemu.so.1.2 | ||
| 30 | else | ||
| 31 | install -m 0755 ${S}/libGL.so.1.2 ${D}${libdir}/libGL.so.1.2 | ||
| 32 | ln -s libGL.so.1.2 ${D}${libdir}/libGL.so.1 | ||
| 33 | ln -s libGL.so.1 ${D}${libdir}/libGL.so | ||
| 34 | fi | ||
| 35 | } | ||
| 36 | |||
| 37 | # This cannot be converted to run at pacakge install time, because | ||
| 38 | # it depends on being run after the libgl1 package is installed, | ||
| 39 | # and RPM cannot guarantee the order of pacakge insallation. | ||
| 40 | pkg_postinst_${PN} () { | ||
| 41 | #!/bin/sh -e | ||
| 42 | if [ x"$D" = "x" ]; then | ||
| 43 | rm -f ${libdir}/libGL.so.1.2 | ||
| 44 | ln -s libGL-qemu.so.1.2 ${libdir}/libGL.so.1.2 | ||
| 45 | else | ||
| 46 | exit 1 | ||
| 47 | fi | ||
| 48 | } | ||
| 49 | |||
| 50 | BBCLASSEXTEND = "nativesdk" | ||
