aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics
AgeCommit message (Collapse)Author
2016-08-16x11vnc: remove redundant RPATH to fix QA issueHongxu Jia
The useless rpath caused oe QA issue: ... |ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/ x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths] ... In oe build, it is unnecessary and redundant to pass "-R/usr/lib" to the linker. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit d209e32ffbcbbf419c3b5677777ac2e244bcebc1) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-08-16fontforge: add back gnulib to DEPENDSAndreas Müller
commit 00ec8bc10df539ecedc3beb2dde28a8e4665cad8 Author: Paul Gortmaker <paul.gortmaker@windriver.com> Date: Sun May 8 15:08:12 2016 -0400 autotools-bootstrap: make bootstrap package specific. removed this dependency causing: ERROR: fontforge-20150824-r0 do_configure: Function failed: do_configure (log file is located at /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/fontforge/20150824-r0/temp/log.do_configure.26234) ERROR: Logfile of failure stored in: /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/fontforge/20150824-r0/temp/log.do_configure.26234 Log data follows: | DEBUG: Executing python function sysroot_cleansstate | DEBUG: Python function sysroot_cleansstate finished | DEBUG: SITE files ['endian-little', 'bit-32', 'arm-common', 'arm-32', 'common-linux', 'common-glibc', 'arm-linux', 'arm-linux-gnueabi', 'common'] | DEBUG: Executing shell function autotools_preconfigure | DEBUG: Shell function autotools_preconfigure finished | DEBUG: Executing python function autotools_copy_aclocals | DEBUG: SITE files ['endian-little', 'bit-32', 'arm-common', 'arm-32', 'common-linux', 'common-glibc', 'arm-linux', 'arm-linux-gnueabi', 'common'] | DEBUG: Python function autotools_copy_aclocals finished | DEBUG: Executing shell function do_configure | cp: cannot stat '/home/superandy/tmp/oe-core-glibc/sysroots/raspberrypi2/usr/share/gnulib': No such file or directory | WARNING: /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/fontforge/20150824-r0/temp/run.do_configure.26234:1 exit 1 from 'cp -rf /home/superandy/tmp/oe-core-glibc/sysroots/raspberrypi2/usr/share/gnulib /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/fontforge/20150824-r0/git' | ERROR: Function failed: do_configure (log file is located at /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/fontforge/20150824-r0/temp/log.do_configure.26234) Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 5ec8663e2078ef1239f4ba8bdab657d63b44cdab) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-08-16x11vnc: remove old libtool macros from acinclude.m4Christopher Larson
These can cause build problems. We only want macros in acinclude.m4 which aren't available for aclocal to get elsewhere. Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit f6db87726d84976275cfe6b74a9e270f6bf6792e) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-08-16libxkbui: Fix license WARNINGArmin Kuster
WARNING: libxkbui-1_1.0.2-r10 do_populate_lic: libxkbui: No generic license file exists for: GPL in any provider sources have: Copyright (c) 1996 by Silicon Graphics Computer Systems, Inc. so picked "SGI-1" Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 901b9a2ec805b3be0dfdd9a399c5969c2b580029) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-05-25Revert "leptonica: add PACAKGECONFIG for openjpeg"Armin Kuster
This reverts commit 1726e7172b66769c1597719cf7aba852159317a0. This patch added a build warning. WARNING: leptonica-1.70-r0 do_configure: QA Issue: leptonica: configure was passed unrecognised options: --without-libopenjpeg [unknown-configure-option] Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-13autotools-bootstrap: make bootstrap package specific.Paul Gortmaker
The theory behind this bbclass was reasonable, with the primary goal being to avoid multiple downloads of gnulib, but it neglected the fact that packages would be shipping a specific version of the ./bootstrap which will support some flags but maybe not all the latest ones from the latest gnulib/build-aux/bootstrap file. I attempted to simply update the two pkgs to use the latest copy of bootstrap from gnulib but this of course triggers the descent into autoconf hell that we all know and love. Rather than futzing with the packages configure.ac and deviating from what the pkg maintainers intended and tested, we can just let the packages have independent calls to ./bootstrap with whatever flags are needed. The goal of this commit is to move the prepend out to the packages and then delete the class without any real functional change ; i.e. a purely mechanical change. Then we can adjust each package to ensure it will still build with a modern host, in an independent fashion, while keeping the main advantage of not fetching gnulib two extra times for netcf and fontforge. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-05-13leptonica: add PACAKGECONFIG for openjpegDerek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-05-09fbida: use separate builddirChristopher Larson
Separate builddir from the sourcedir. Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Sujith H <sujith.h@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-05-02wayland-fits: update, get out of PNBLACKLISTManuel Bachmann
Update to latest version, which has fixes for building with Weston >= 1.8.91, and thus builds with branches >= Jethro. Signed-off-by: Manuel Bachmann <mbc@iot.bzh> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-05-02meta-oe: use bb.utils.contains() instead of base_contains()Ross Burton
base_contains() is a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-05-02openbox: add run time dependency on openbox-theme-clearlooksNicolas Dechesne
Without this default theme install , openbox is unable to start, and shows the following message: dragonboard-410c:/home/linaro# openbox ObRender-Message: Unable to load the theme 'Clearlooks' ObRender-Message: Falling back to the default theme 'Clearlooks' ObRender-Message: Unable to load the theme 'Clearlooks' Openbox-Message: Unable to load a theme. As discussed in [1] , the solution is to make sure that openbox-theme-clearlooks is always included. [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg47153.html Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-03-25ttf-pt-sans: add recipeIoan-Adrian Ratiu
PT Sans is an open source licensed font released in 2010 by ParaType. The ParaTypeFFL-1.3 license file has been submitted to OE-core. Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14gimp: accept newer versins of babl and geglAlexander Kanavin
Add a patch that makes gimp accept new versions of babl and gegl, taken from Debian. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
2016-03-14gegl: update to 0.3.4Alexander Kanavin
This fixes gobject introspection support. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
2016-03-14babl: update to 0.1.16Alexander Kanavin
This fixes gobject introspection support. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
2016-02-25wayland-fits: BlacklistMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-25tesseract: BlacklistMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-25source-han-sans-tw-fonts: initial add 1.004Andreas Müller
Based on [1-2]. [1] https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/adobe-source-han-sans-fonts [2] http://pkgs.fedoraproject.org/cgit/rpms/adobe-source-han-sans-tw-fonts.git/tree/adobe-source-han-sans-tw-fonts.spec Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-25source-han-sans-kr-fonts: initial add 1.004Andreas Müller
Based on [1]. [1] https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/adobe-source-han-sans-fonts Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-25source-han-sans-jp-fonts: initial add 1.004Andreas Müller
Based on [1]. [1] https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/adobe-source-han-sans-fonts Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-25source-han-sans-cn-fonts: initial add 1.004Andreas Müller
Based on [1-2]. [1] https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/adobe-source-han-sans-fonts [2] http://pkgs.fedoraproject.org/cgit/rpms/adobe-source-han-sans-cn-fonts.git/tree/adobe-source-han-sans-cn-fonts.spec Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-25lxdm: update to 0.5.3Andreas Müller
* we go back to released sources * parts of patch 0002.. were applied - have tried to discuss with project's maintainer without success Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-15xterm: make xft PACKAGECONFIG depend on freetype-nativeIoan-Adrian Ratiu
meta-cloud-services enables this dependency unconditionally. Add it here in the PACKAGECONFIG and we can remove it from there entirely. Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-01-27terminus-font: update perl-native-runtime dependencyMartin Jansa
* it was renamed in oe-core with: commit f4dade8e765a8c7bfd131728b9e0a34631e24950 Author: Ed Bartosh <ed.bartosh@linux.intel.com> Date: Thu Jan 7 13:39:39 2016 +0200 meta: rename perl-native-runtime The code in native.bbclass adds -native suffix to the package names that don't have it. perl-native-runtime becomes perl-native-runtime-native because of this. Renamed perl-native-runtime -> hostperl-runtime-native to avoid mangling it and to conform with the naming convetion for native packages. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-01-14xterm: 308 -> 320Li xin
Upgrade xterm from 308 to 320. 1) Modify LIC_FILES_CHKSUM,since the date in it has been changed, But the LICENSE has not been changed. 2) Fix WARNING: QA Issue: xterm rdepends on libxinerama, but it isn't a build dependency? [build-deps] Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-01-06xf86-video-ati: update to 7.6.1Koen Kooi
Glamor support needs work in the xorg recipe as well as testing, it produced weird artefacts in the picture on my HD6450 when I enabled it a few months ago. Anyway, glamor wasn't enabled in 7.2.0 so no actual change. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-01-06xf86-video-nouveau: update to 1.0.12Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-01-04libvncserver: fix PN -> BPN for multilibYi Zhao
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-12-18sessreg: add a patch to avoid build errors.Li xin
Do not build man dir since it is always build failed. This is not a good way,but can remove sessreg form PNBLACKLIST. Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-12-18x11vnc: use external libvncserverIoan-Adrian Ratiu
By default x11vnc compiles its dependency libvncserver from sources included in its own source tree. We override this behaviour to use the externally provided libvncserver from a separate recipe. Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-12-18x11vnc: move recipe from oe-coreIoan-Adrian Ratiu
x11vnc will be configured to use the external libvncserver which is added to meta-oe. Since oe-core recipes should not depend on meta-oe recipes, we move x11vnc to meta-oe. Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-12-18meta-oe: recipes-graphics: add libvncserver recipeIoan-Adrian Ratiu
Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-11-16xserver-common, xserver-nodm-init: drop allarch, depends on couple ↵Martin Jansa
TUNE_PKGARCH recipes * xmodmap xrandr xdpyinfo fbset xinput-calibrator xinit * see: http://lists.openembedded.org/pipermail/openembedded-devel/2015-September/103271.html * fixes: ERROR: xserver-common different signature for task do_package_write_ipk.sigdata between qemux86copy and qemuarm runtaskdeps changed from ['fbsetfbset_2.1.bb.do_packagedata', 'opkg-utilsopkg-utils_git.bb.do_populate_sysroot:virtual:native', 'pseudopseudo_1.7.4.bb.do_populate_sysroot:virtual:native', 'xinput-calibratorxinput-calibrator_git.bb.do_packagedata', 'xorg-appxdpyinfo_1.3.2.bb.do_packagedata', 'xorg-appxmodmap_1.0.9.bb.do_packagedata', 'xorg-appxrandr_1.4.3.bb.do_packagedata', 'xserver-commonxserver-common_1.34.bb.do_package', 'xserver-commonxserver-common_1.34.bb.do_packagedata'] to ['fbsetfbset_2.1.bb.do_packagedata', 'opkg-utilsopkg-utils_git.bb.do_populate_sysroot:virtual:native', 'pseudopseudo_1.7.4.bb.do_populate_sysroot:virtual:native', 'xinput-calibratorxinput-calibrator_git.bb.do_packagedata', 'xorg-appxdpyinfo_1.3.2.bb.do_packagedata', 'xorg-appxmodmap_1.0.9.bb.do_packagedata', 'xorg-appxrandr_1.4.3.bb.do_packagedata', 'xserver-commonxserver-common_1.34.bb.do_package', 'xserver-commonxserver-common_1.34.bb.do_packagedata'] meta-openembedded/meta-oe/recipes-support/fbset/fbset_2.1.bb.do_packagedata with hash ce7c4dca0cda8d720fd74d2bd1d66fbb changed to meta-openembedded/meta-oe/recipes-support/fbset/fbset_2.1.bb.do_packagedata with hash a232e1b9ce0275f2a989d74cc7053a84 openembedded-core/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb.do_packagedata with hash d688277915e6c9d7e41a00d941dfc590 changed to openembedded-core/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb.do_packagedata with hash 9d440e251880adaaa743aecabc86ae36 openembedded-core/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.2.bb.do_packagedata with hash 8122f0ff1b1e47cca2ddb162075e7f44 changed to openembedded-core/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.2.bb.do_packagedata with hash 4d9acf7ce5cfa462d66b04b2bf14b851 openembedded-core/meta/recipes-graphics/xorg-app/xmodmap_1.0.9.bb.do_packagedata with hash 9d3e895ec99bf9e9204aa619238e4cc8 changed to openembedded-core/meta/recipes-graphics/xorg-app/xmodmap_1.0.9.bb.do_packagedata with hash f4a63b5a780ad1eee027ec5c41d1698b openembedded-core/meta/recipes-graphics/xorg-app/xrandr_1.4.3.bb.do_packagedata with hash ee29483d3bbb3d83e14898c2316c81ab changed to openembedded-core/meta/recipes-graphics/xorg-app/xrandr_1.4.3.bb.do_packagedata with hash 0c39e999928942dfd8a7f4b8e67446d7 meta-openembedded/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb.do_package with hash 1657fdd755ae7b98394b34c5e29e0f6c changed to meta-openembedded/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb.do_package with hash df6f3388166d833898c5f24024d71703 meta-openembedded/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb.do_packagedata with hash 2794fb1e9e3f8dd7ce2437d5396f6d49 changed to meta-openembedded/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb.do_packagedata with hash 007535177f70ddf4efae8d117226490e Hash for dependent task xorg-appxrandr_1.4.3.bb.do_packagedata changed from ee29483d3bbb3d83e14898c2316c81ab to 0c39e999928942dfd8a7f4b8e67446d7 Hash for dependent task xinput-calibratorxinput-calibrator_git.bb.do_packagedata changed from d688277915e6c9d7e41a00d941dfc590 to 9d440e251880adaaa743aecabc86ae36 Hash for dependent task fbsetfbset_2.1.bb.do_packagedata changed from ce7c4dca0cda8d720fd74d2bd1d66fbb to a232e1b9ce0275f2a989d74cc7053a84 Hash for dependent task xserver-commonxserver-common_1.34.bb.do_package changed from 1657fdd755ae7b98394b34c5e29e0f6c to df6f3388166d833898c5f24024d71703 Hash for dependent task xorg-appxmodmap_1.0.9.bb.do_packagedata changed from 9d3e895ec99bf9e9204aa619238e4cc8 to f4a63b5a780ad1eee027ec5c41d1698b Hash for dependent task xserver-commonxserver-common_1.34.bb.do_packagedata changed from 2794fb1e9e3f8dd7ce2437d5396f6d49 to 007535177f70ddf4efae8d117226490e Hash for dependent task xorg-appxdpyinfo_1.3.2.bb.do_packagedata changed from 8122f0ff1b1e47cca2ddb162075e7f44 to 4d9acf7ce5cfa462d66b04b2bf14b851 ERROR: xserver-nodm-init different signature for task do_package_write_ipk.sigdata between qemux86copy and qemuarm runtaskdeps changed from ['opkg-utilsopkg-utils_git.bb.do_populate_sysroot:virtual:native', 'pseudopseudo_1.7.4.bb.do_populate_sysroot:virtual:native', 'xorg-appxinit_1.3.4.bb.do_packagedata', 'xserver-commonxserver-common_1.34.bb.do_packagedata', 'xserver-nodm-initxserver-nodm-init_2.0.bb.do_package', 'xserver-nodm-initxserver-nodm-init_2.0.bb.do_packagedata'] to ['opkg-utilsopkg-utils_git.bb.do_populate_sysroot:virtual:native', 'pseudopseudo_1.7.4.bb.do_populate_sysroot:virtual:native', 'xorg-appxinit_1.3.4.bb.do_packagedata', 'xserver-commonxserver-common_1.34.bb.do_packagedata', 'xserver-nodm-initxserver-nodm-init_2.0.bb.do_package', 'xserver-nodm-initxserver-nodm-init_2.0.bb.do_packagedata'] openembedded-core/meta/recipes-graphics/xorg-app/xinit_1.3.4.bb.do_packagedata with hash 6963e42ac1053b62ce4a6570a74e27bf changed to openembedded-core/meta/recipes-graphics/xorg-app/xinit_1.3.4.bb.do_packagedata with hash eb81dc4aa06e4a2f1fb3e76bac3d4d88 meta-openembedded/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb.do_packagedata with hash 2794fb1e9e3f8dd7ce2437d5396f6d49 changed to meta-openembedded/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb.do_packagedata with hash 007535177f70ddf4efae8d117226490e Hash for dependent task xorg-appxinit_1.3.4.bb.do_packagedata changed from 6963e42ac1053b62ce4a6570a74e27bf to eb81dc4aa06e4a2f1fb3e76bac3d4d88 Hash for dependent task xserver-commonxserver-common_1.34.bb.do_packagedata changed from 2794fb1e9e3f8dd7ce2437d5396f6d49 to 007535177f70ddf4efae8d117226490e Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-11-16fbida: add PACKAGECONFIG for lircMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-11-06fontforge: avoid cloning uthash during do_compileAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2015-11-06fontforge: use autotools-bootstrap.bbclassAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2015-10-13openbox: fix sporadic race on compileAndreas Müller
| make: creating data/xsession/openbox-gnome-session | make: creating data/xsession/openbox-session | make: creating data/xsession/openbox-kde-session | make: creating data/autostart/openbox-autostart | make: creating doc/openbox.1 | make: creating data/autostart/autostart | make: creating doc/openbox-session.1 | make: creating doc/openbox-gnome-session.1 | make: creating doc/openbox-kde-session.1 | make: creating doc/obxprop.1 | mkdir: cannot create directory './data/autostart': File exists | Makefile:4329: recipe for target 'data/autostart/autostart' failed Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-10-13xf86-video-geode: blacklist, fails to buildMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-10-13Revert "gnome-terminal, system-tools-backends, slim, benchfft, syslog-ng: ↵Martin Jansa
move to nonworking directories" * use PNBLACKLIST instead This reverts commit 92ea562bafda6b201fae91c2bc13a404da4d581c. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-10-13sessreg: Blacklist, fails to build man pagesMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-10-13wayland-fits: Add recipeManuel Bachmann
wayland-fits is a functional integration test suite for Wayland and Weston. MJ: removed elementary from default PACKAGECONFIG because meta-oe doesn't depend on meta-efl It optionally supports EFL and GTK+ tests. Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23gimp: add libgudev to DEPENDSAndreas Müller
WARNING: QA Issue: gimp rdepends on libgudev, but it isn't a build dependency? [build-deps] Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23gimp: fix compile in latest environmentAndreas Müller
fixes: ld: error: file_ico-ico-load.o: requires unsupported dynamic reloc R_ARM_THM_MOVW_ABS_NC; recompile with -fPIC ld: error: file_ico-ico-save.o: requires unsupported dynamic reloc R_ARM_THM_MOVW_ABS_NC; recompile with -fPIC Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23gimp: disable webkit dependency in the recipeAlexander Kanavin
gimp (optionally) depends on a very old version of webkit-gtk (1.6.x) for browsing help, and oe-core no longer provides that version. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23openbox: add libcroco, librsvg and gdk-pixbuf to DEPENDSAndreas Müller
fixes: WARNING: QA Issue: openbox-core rdepends on libcroco, but it isn't a build dependency? [build-deps] WARNING: QA Issue: openbox-core rdepends on librsvg, but it isn't a build dependency? [build-deps] WARNING: QA Issue: openbox-core rdepends on gdk-pixbuf, but it isn't a build dependency? [build-deps] why no PACKAGECONFIG? * libcroco and gdk-pixbuf are not configurable * librsvg is required to display svg icons which is a basic requirement Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23openbox: update to 3.6.1Andreas Müller
run tested with lxqt on raspi2 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-08fontforge: update to 20150824Andreas Müller
* LICENSE was rewrittem stating out more clearly that huge parts were initially licensed under BSD clause 3 - so add that licence. * Follow suggestion not to use github release tarballs [1] and use git as source. [1] http://lists.openembedded.org/pipermail/openembedded-devel/2015-August/102843.html Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24takao-fonts: upgrade 003.02.01 -> 003.03.01Li xin
The SRC_URI has been changed. Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24pangomm: update to 2.36.0Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24cairomm: update to 1.11.2Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>