aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
AgeCommit message (Collapse)Author
2011-11-29mesa: package gl/egl/osmesa to separate packagesMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-29xserver-xorg: only use --disable-dga in xserver-xorg-liteOtavio Salvador
Xorg VESA driver calls DGAInit enforcing this symbol to be available to the driver to work so we revert back to only disable DGA for lite flavor of Xorg. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2011-11-29libx11-trim: update to 1.4.4Xiaofeng Yan
Some description : 1 Remove --with-xcb because xcb is necessary item in the new version. 2 keysymdef_include.patch uses in keeping native directory of X11 as the default configuration. \ or else host directory "/usr/include/X11" is selected when running ./configure. 3 makekeys_crosscompile.patch avoid host contamination. 4 x11_disable_makekeys.patch uses in compiling makekey.c needed by makekeys-makekeys.o Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-26getVar/setVar cleanupsRichard Purdie
Complete the bb.data.getVar/setVar replacements with accesses directly to the data store object. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-24tslib: Set open mode for ts_calibate.cXiaofeng Yan
Get patch from: http://permalink.gmane.org/gmane.comp.lib.uclibc.buildroot/27614 There is a potentially "unsafe" use of open(). Ubuntu 8.10+, for instance, by default enables the compiler flag -D_FORTIFY_SOURCE=2 \ which throws an error of ts_calibrate.c. To fix this, \ set a mode in the open() call, patch patched ts_calibrate.c \ to set 0644 (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) and it compiles fine Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-23directfb: change check sumXiaofeng Yan
Change check sum of directfb. The previous checksum was incorrect when it was added due to a corrupted download on the submitter's system. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-22matchbox-wm: Fix variable type in _NET_WORKAREA settingZhai Edwin
According to XChangeProperty doc, array of "long" should be used when format is 32. Wrong _NET_WORKAREA parameter caused blank screen in matchbox-desktop on 64 bit platform. [YOCTO #1689] got fixed. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-18mesa: fix calling host's commandsKang Kai
mesa use its script file bin/mklib to generate libraries, and call the host's commands "ar/ranlib/gcc/g++". Fix it to call the cross-compile tools properly. Signed-off-by: Kang Kai <kai.kang@windriver.com>
2011-11-16directfb: update to 1.4.15Xiaofeng Yan
The newest version for directfb is 1.5.3 but it's instruction set base on armv6. The current qemuarm don't have some instructions for armv6 because some codes of \ the new version of directfb more than 1.5 are realized with assemble language,for example the lock. \ I update this recipe to 1.4.15 for directfb running more platform. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-16libx11-diet: update to 1.4.4Xiaofeng Yan
I remove patch "nodolt.patch" because it is no use in the new version \ and change patch "include_fix.patch" to "keysymdef_include.patch" from libx11-1.4.4. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-11xinit: rdepends on util-linux-mcookie to avoid brining whole util-linuxOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2011-11-10xinit: Fix `startx` looking for `mcookie` in sysrootPaul Menzel
`startx` run on a system based on the demo systemd image [1] and `opkg`-installed packages fails with the following error. /usr/bin/startx: line 139: /OE/tentacle/build/tmp-angstrom_2010_x/sysroots/x68_64-linux/usr/bin/mcookie: No such file or directory Applying commit 443bcc07 [1] from OE-classic Author: Tom Rini <tom_rini@mentor.com> Date: Thu Apr 7 10:36:43 2011 -0700 xinit: Fix mcookie / util-linux-ng dependency xinit just needs to know the runtime path of mcookie so we need to RDEPEND on util-linux-ng and pass the runtime path in via EXTRA_OECONF Signed-off-by: Tom Rini <tom_rini@mentor.com> fixes this issue. Commit 7f6cec6f [2] Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Date: Sun Feb 21 18:11:30 2010 +0100 xinit: add dependency on util-linux-ng […] tried to address the same problem but apparently did not help, because Tom still had problems. [1] http://www.angstrom-distribution.org/demo/beagleboard/Angstrom-systemd-image-eglibc-ipk-v2011.11-core-beagleboard.rootfs.tar.bz2 [2] http://git.openembedded.org/openembedded/commit/443bcc0785bc004e471b3750a34d12d2fd2e5dad [3] http://git.openembedded.org/openembedded/commit/7f6cec6f0adb6203a6dbaf8a43c67c2c4f8bf84e Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
2011-11-10Convert to use direct access to the data store (instead of bb.data.*Var*())Richard Purdie
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-08clutter-gst: fix patch filenameJoshua Lock
Munged the patch filename somehow. Apologies for the noise. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-08mx: add mx toolkit 1.3.2Joshua Lock
A widget toolkit built on Clutter Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-08clutter-gtk-1.8: add clutter-gtk 0.11.4Joshua Lock
Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-08clutter-gst-1.8: add 1.4.2 for use with clutter 1.8Joshua Lock
Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-08clutter-1.8: add 1.8.0Joshua Lock
Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-08cogl: add cogl 1.8.0 recipeJoshua Lock
Cogl has been split into a separate recipe as of the clutter-1.8 series Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-07qemugl: switch to new git repoPaul Eggleton
The qemugl git repository is now on yoctoproject.org. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2011-11-07tslib: fix the bug with loading libts-1.0.soDmitry Cherukhin
Touchpad did not work in the qtdemoE if the library libts-1.0.so was not loaded manually using the LD_PRELOAD variable. This problem was fixed in the tslib mainline https://github.com/kergoth/tslib after the 1.0 release. We just import the patch. Signed-off-by: Dmitry Cherukhin <dima_ch@emcraft.com>
2011-11-07cogl: COPYING file Updated FSF AddressSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-02xserver-nodm-init: Use useradd to add the xuser for rootless XSaul Wold
This also address an issue with dbus and connman, since connmand needs to start as the xuser in the rootless X situation. Fixes: [YOCTO #1699] Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-01util-macros: Drop unneeded dependenciesRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-31recipes: bump PR after python upgradeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-31clutter-gtk: add LIC_FILES_CHKSUM to include fileJoshua Lock
Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-10-24xserver-xorg: Add mesa-dri to depends instead of virtual/libglKhem Raj
Fixes the compile problems e.g. | checking for GL... yes | checking for DRIPROTO... yes | checking for DRI... no | configure: error: Package requirements (glproto >= 1.4.14 dri >= 7.8.0) were not met: | | No package 'dri' found | | Consider adjusting the PKG_CONFIG_PATH environment variable if you | installed software in a non-standard prefix. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2011-10-20libsdl: update to 1.2.14Kang Kai
Update libsdl to 1.2.14 * update configure_tweak.patch * update bb file, including add configure option --disable-video-ps3, drop acinclude.m4 and kernel-asm-page.patch and remove old libtool macros Signed-off-by: Kang Kai <kai.kang@windriver.com>
2011-10-18fontconfig: fix fix-pkgconfig.patchMartin Jansa
* missing $ is causing problems ie when building webkit-efl * see http://lists.linuxtogo.org/pipermail/openembedded-core/2011-June/003798.html for details Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-17mesa-dri: use DRIDRIVERS_append_arch to promote right usage for BSP layer ↵Martin Jansa
maintainers Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-17xserver-xorg: remove glx-use-tls againMartin Jansa
* khem confirmed that uclibc does support it now Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-15mesa-dri: Enable swrast only by default and intel drivers only on IA platformRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-14mesa-git: fix LIC_FILES_CHKSUMMartin Jansa
* only wording was changed a bit and GLUT is not named explicitly $ diff docs/license.html 7.11/Mesa-7.11/docs/license.html 41,44c41,44 < and licenses apply to different components. For example, some demo programs < are copyrighted by SGI, some of the Mesa device drivers are copyrighted by < their authors. See below for a list of Mesa's main components and the license < for each. --- > and licenses apply to different components. For example, GLUT is copyrighted > by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa > device drivers are copyrighted by their authors. See below for a list of > Mesa's main components and the license for each. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-git: upgrade from 7.7+git to 7.11+gitMartin Jansa
* progs package is also gone like in 7.11 (moved to separate recipe) * uclibc.patch was updated a bit to apply again Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-git: lower D_P a bit more then all mesa-driMartin Jansa
* it needs to be done in .bb because mesa-dri.inc is included after mesa-git.inc * lower it for mesa-xlib to same value Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-git: move shared parts from mesa-dri_git to mesa-git.inc and add ↵Martin Jansa
mesa-xlib_git Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-dri: LEAD_SONAME shouldn't be needed now, when we're packaging each lib ↵Martin Jansa
in separate package Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-dri: move shared options to mesa-dri.incMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-xlib: move shared options to .incMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa: move shared PROTO_DEPS, LIB_DEPS and DEPENDS to common .incMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-7.11: move shared DEPENDS, SRC_URI, checksums and do_configure_prepend ↵Martin Jansa
to shared .inc file Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-common: MesaDemos is now separate recipes, bump PE, introduce INC_PRMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-common: add common LIC_FILES_CHKSUM for newer mesa versionsMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa: move common patches which could be used in both mesa-dri and mesa-xlib ↵Martin Jansa
from mesa-dri to mesa Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14mesa-dri-glsl-native: fix LICENSEMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14xorg-driver-common: bump PE for upgrade path for meta-oe usersMartin Jansa
* mostly because of xf86-video-omapfb Not downgrading package xf86-video-omapfb on root from 1:0.1.1+r16+gitr28c006c94e57ea71df11ec4fff79d7ffcfc4860f-r16 to 1:0.1.1+gitr1+28c006c94e57ea71df11ec4fff79d7ffcfc4860f-r17.5. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14xserver-xorg: move PE to xserver-xorg-common and bump itMartin Jansa
* to provide upgrade path for meta-oe users, where it had PE = 2 already Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14xserver-xorg: drop xorg-minimal-fonts from RDEPENDSMartin Jansa
* as discussed here http://lists.linuxtogo.org/pipermail/openembedded-core/2011-October/010899.html Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-14cogl: Add git recipe (required by clutter)Richard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-14clutter-1.6: update to 1.6.18Richard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>