aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/openbox
AgeCommit message (Collapse)Author
2016-04-21openbox: 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>
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-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-02-12recipes: add x11 to required DISTRO_FEATURESMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-08-11openbox: remove unrecognized configure optionMartin Jansa
* fixes following QA warnings: openbox-3.5.0: openbox: configure was passed unrecognised options: --with-plugins [unknown-configure-option] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15recipes: Add missing pkgconfig dependenciesRichard Purdie
These recipes were all missing pkgconfig dependencies. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-17openbox: Add PACKAGECONFIG for imlib2, xrandr, xinerama, xcursor, ↵Martin Jansa
startup-notification Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-11openbox: fix PR format and use new update-alternatives syntaxMartin Jansa
* fixes: NOTE: recipe openbox-3.5.0-1: task do_package: Started WARNING: openbox: Use of ALTERNATIVE_NAME is deprecated, see update-alternatives.bbclass for more info. * bump PE if you care about upgrade path from wrong PR, introduced in commit 3becce8504033dfac7c497fa12675f873a5df9e0 Author: Mario Domenech Goulart <mario@ossystems.com.br> Date: Mon Dec 3 16:03:23 2012 +0000 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-04openbox: separate package for configuration files (openbox-config)Mario Domenech Goulart
Change-Id: I528392100854fb73c2a14973fd1bfa9c94e836a7 Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-28Replace bb.data.* with d.*Paul Eggleton
Used sed expression given here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html Plus an additional expression for .expand. Full expression is: 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' \ -e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Some minor correction in systemd.bbclass was needed for some expressions that didn't quite match the regex in the desired way; additionally a few instances were manually changed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-10-19PACKAGES_DYNAMIC: use regexp not globMartin Jansa
* bitbake uses PACKAGES_DYNAMIC as regexp ^ could make matching faster (and it will be more clear that we're expecting regexp not glob) * made all those last '-' optional, use .* (or nothing) * use += instead of = in most cases to keep ${PN}-locale from bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-19recipes: convert tabs to 4 spaces in populate_packagesMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-03-14openbox: update to 3.5.0Otavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-02-24openbox: add missing dependsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-02-20openbox: add 3.4.11.2Otavio Salvador
This version inclues O.S. Systems' internal tree fixes and a sync against 3.4-working branch. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>