aboutsummaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-xfce
AgeCommit message (Collapse)Author
2014-01-04Update after toplevel LICENSE file checksum changeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-12-21xfconf: use sysroot and target perlulf@emagii.com
xfconf-4.10.0 does not use OE sysroot as is. --with-sysroot=yes will make configure run CC --print-sysroot and use that. When searching the PATH for perl, no target perl is found, since PATH does not contain any reference. Instead native perl is found, and if certain perl packages are installed on the host machine, the xfconf perl support is enabled which may cause the build to fail on 64 bit hosts. If the perl packages are not installed on the host, then perl support in xfconf is disabled, and the xfconf build will succeed, even on 64 bit hosts. If native perl is found, and the perl packages are available on the host, the perl support is enabled. Since native perl is used, the native linker is used to link the resulting *target* code. The perl support requires some libraries, which are built for the target. If the host is 64 bit (x86_64) and the target is 32 bit (ARM?), there is a mismatch which is detected by the linker, and the libraries found are rejected. If the host does not have the correct libraries, then the xfconf build fails. If the host has the correct libraries, then the linker will try to link host libraries with the target application. The patch will define PERL as the target perl. This means that configure will look for the required perl packages in the target sysroot, instead of in the native filesystem. The patch has been tested in Angstrom master, which does not build the required perl packages, and thus perl support in xfconf is disabled, and the build succeeds. A simpler way to do this, proposed by Charles Ash <ashcharles@gmail.com> is to simply disable the perl-support in xfconf. This patch will be better, if ever the support for the needed perl packages is added to the OpenEmbedded/Angstrom build. Signed-off-by: Ulf Samuelsson <ulf@emagii.com> Tested-by: Ash Charles <ashcharles@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-21xfconf: fix compileAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-14xfwm4: add exo-native to DEPENDSAndreas Müller
fixes (detected in Martin's world build): | make[2]: Entering directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfwm4/4.10.1+gitAUTOINC+bce3062d08-r0/git/settings-dialogs' | gdk-pixbuf-csource --raw --build-list \ | monitor_icon_data ./monitor-icon.png > monitor-icon.h | exo-csource --static --strip-comments --strip-content --name=xfwm4_dialog_ui xfwm4-dialog.glade >xfwm4-dialog_ui.h | exo-csource --static --strip-comments --strip-content --name=tweaks_dialog_ui xfwm4-tweaks-dialog.glade >xfwm4-tweaks-dialog_ui.h | exo-csource --static --strip-comments --strip-content --name=workspace_dialog_ui xfwm4-workspace-dialog.glade >xfwm4-workspace-dialog_ui.h | /bin/bash: exo-csource: command not found | /bin/bash: exo-csource: command not found | /bin/bash: exo-csource: command not found | make[2]: *** [xfwm4-dialog_ui.h] Error 127 | make[2]: *** Waiting for unfinished jobs.... | make[2]: *** [xfwm4-tweaks-dialog_ui.h] Error 127 | make[2]: *** [xfwm4-workspace-dialog_ui.h] Error 127 | make[2]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfwm4/4.10.1+gitAUTOINC+bce3062d08-r0/git/settings-dialogs' | make[1]: *** [all-recursive] Error 1 | make[1]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfwm4/4.10.1+gitAUTOINC+bce3062d08-r0/git' | make: *** [all] Error 2 | ERROR: oe_runmake failed | WARNING: exit code 1 from a shell command. | ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfwm4 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-14xfce4-settings: add exo-native to DEPENDSAndreas Müller
fixes (found in Martin's world build) | /bin/bash: exo-csource: command not found | make[3]: *** [appearance-dialog_ui.h] Error 127 | make[3]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings/4.10.0+gitAUTOINC+b7a0e1fd77-r0/git/dialogs/appearance-settings' | make[2]: *** [all-recursive] Error 1 | make[2]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings/4.10.0+gitAUTOINC+b7a0e1fd77-r0/git/dialogs' | make[1]: *** [all-recursive] Error 1 | make[1]: Leaving directory `/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings/4.10.0+gitAUTOINC+b7a0e1fd77-r0/git' | make: *** [all] Error 2 | ERROR: oe_runmake failed | WARNING: exit code 1 from a shell command. | ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xfce4-settings Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-14xfce4-settings: set correct versionAndreas Müller
fix commit 23f020f742aea622e5dd7aef81eb59c99f8ef000 which introduced wrong version Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-05thunar-volman: Add PACKAGECONFIG for notifyMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-05thunar: Add PACKAGECONFIG for pcreMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-05packagegroup-xfce-extended: add xfce4-taskmanager and xfce4-notes-pluginAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-05xfce4-settings: add PACKAGECONFIG for sound-settingsAndreas Müller
defaults based upon DISTRO_FEATURES for alsa and pulseaudio Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-05libxfce4ui: avoid dragging in gtk3Andreas Müller
gtk3 support was introduced in b3a2a01b40affbedc2b0951f7180c1212d24d532 when we moved to latest git Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-19xfce4-settings: move to schnitzeltony's git repo to get new datetime setterAndreas Müller
I implemented a datetime setting dialog based on gnome-control-center and submitted a pull-request in [1,2]. As long as it is not submitted - or as long as I find no way to patch binary files (e.g. icons - I asked for that in [3] - no response yet) we use the git repo and a copied branch of the pull-request (just in case some feedback from xfce-devels requires modifcations). Some patches had to be modified/removed to apply against mainline HEAD still. Furthermore in 0002-mouse-settings-dialog-add-touchscreen-pointer-option.patch label 'alignment8' was introduced mainline and we do not need mouse-dialog_ui.h when building from git in maintainer-mode - this file is created during build process. [1] http://mail.xfce.org/pipermail/xfce4-dev/2013-September/030442.html [2] https://bugzilla.xfce.org/show_bug.cgi?id=10354 [3] http://lists.openembedded.org/pipermail/openembedded-core/2013-September/083804.html Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-19packagegroup-xfce-extended: add xfce4-equake-pluginAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-19xfwm4: move to git repoAndreas Müller
follow libxfce4ui API change [1] [1] http://git.xfce.org/xfce/xfwm4/commit/settings-dialogs/xfwm4-settings.c?id=21ebbe4722b01763822157f9242fc865a9687c68 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-19libxfce4ui: update to git headAndreas Müller
* in commit f30f9742e64ea5ec3b23d977b904f24799d773d6 the signature for xfce_shortcut_conflict_dialog was changed. This change is required for xfce4-setings HEAD. In the next patch of this series the development of a datetime setter for xfce4-settings will be introduced and this is put on top of xfce4-setings HEAD. * there has been no release since 04.2012 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-17xfdesktop: Add PACKAGECONFIG for notifyMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-17xfce4-settings: Add PACKAGECONFIG for notifyMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-14tumbler: add dependency on xfce4-dev-tools-nativeMartin Jansa
* tumbler configure needs XDT_I18N macro provided by xfce4-dev-tools | tumbler-0.1.29/configure: line 13752: syntax error near unexpected token `$linguas' | tumbler-0.1.29/configure: line 13752: `XDT_I18N($linguas)' | Configure failed. The contents of all config.log files follows to aid debugging Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-06-20xfwm4: don't turn into unusablity after setting system time backwardsAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-06-20xfce4-power-manager: rework polkit/consolekit selection and implement ↵Andreas Müller
polkit/systemd shutdown Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-06-20tumbler: update to 0.1.29Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-06-20tumbler: add curl to dependencies to make build deterministicAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19xfce4-appfinder: update to 4.10.1Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19xfce4-session: update to 4.10.1Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19libxfce4util: update to 4.10.0Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19garcon: do not display settings in menu which are in settings-managerAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19garcon: update to 0.2.1Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19xfce4-panel: update to 4.10.1Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19xfwm4: update to 4.10.1Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19packagegroup-xfce-extended: add thunar pluginsAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-19thunar: update to 1.6.3Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-05-03xfce4-session: remove unconditional consolekit RDEPENDS and use PACKAGECONFIGAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-19xfce4-session: Add x-session-manager alternativeOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15recipes: Unify indentationMartin Jansa
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
2013-04-15xfce4-session: move systemd support from meta-systemd back to meta-xfceMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-09xfdesktop: update to 4.10.2Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-09exo: remove gnome-mount wrapperAndreas Müller
exo-mount was removed long time ago [1] [1] http://git.xfce.org/xfce/exo/commit/?id=5d698bf98b190d7c76a6b406bd5f542b915d0bd1 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-09exo: create a package for exo-csource - it is not required on targetAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-04packagegroup-xfce-extended: add xfce4-closebutton-pluginAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-04exo: add native buildAndreas Müller
The native build creates exo-csource only. exo-csource converts glade-files into c-header files. When building xfce projects from git repo, exo-csource is required (tarballs have the glade-headers included). Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-04exo: inherit perlnative and add liburi-perl-native to DEPENDSAndreas Müller
* this fixes build on perl-less machines * perlnative.bbclass adds perl-native to DEPENDS so remove it Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-05patches: update Upstream-Status to use capital 'S'Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-05packagegroup-xfce-extended: add xfce4-brightness-pluginAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-05packagegroup-xfce-extended: add xfce4-mount-pluginAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-27thunar: add RRECOMMENDS and RDEPENDS to ensure full functionalityAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-27tumbler: update to 0.1.27Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-03xfce4-session: fix build on X11-less hostsAndreas Müller
error message was: | checking for iceauth... no | configure: error: iceauth missing, please check your X11 installation Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-03packagegroup-xfce-base: xfce-terminal -> xfce4-terminalAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-03thunar: update to 1.6.2Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-03tumbler: update to 0.1.26Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>