aboutsummaryrefslogtreecommitdiffstats
path: root/meta-gnome
AgeCommit message (Collapse)Author
2012-12-04obexd: move to meta-gnome due to libical dependencyMarcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
2012-12-04midori: move to meta-gnome due to libnotifyMarcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
2012-12-04devilspie2: move to meta-gnome (libwnck is there)Marcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
2012-11-27evolution-data-server: fix build with libxml2-2.9.0Martin Jansa
* newer eds versions depend on external libgdata http://git.gnome.org/browse/evolution-data-server/commit/servers?h=gnome-2-32&id=28897beab5dcd4aab3586322a96280be92585db6 but for this one, we need this patch Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-11-21orbit2: put .a files into ${PN}-staticdev packageMario Domenech Goulart
Change-Id: I1b1d5452fd0252f489061a7c6035a97e837c1d45 Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Acked-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-11-13gnome-desktop: copy omf.make from ${STAGING_DATADIR_NATIVE} instead ↵Andreas Müller
${STAGING_DATADIR} * omf.make is installed by gnome-common * oe-core gnomebase.bbclass adds gnome-common-native to DEPENDS * error message was: | DEBUG: Executing shell function do_configure | cp: cannot stat `/home/andreas/tmp/oe-core-eglibc/sysroots/overo/usr/share/gnome-common/data/omf.make': No such file or directory
2012-11-13gvfs-gdu-volume-monitor: fix build after oe-core's libexecdir transitionAndreas Müller
tests: * buildhistory check with libexecdir = /usr/libexec * run test with libexecdir = /usr/lib/${BPN}
2012-11-13gvfs: fix buildAndreas Müller
error message was for build from scratch and latest heads: | ERROR: This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. | Rerun configure task after fixing this. The path was '/home/Superandy/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/gvfs-1.8.2-r7.0/gvfs-1.8.2' | ERROR: Function failed: do_qa_configure Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2012-10-30gnome-settings-daemon: add missing DEPENDSKoen Kooi
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-24pimlico: remove Poky overridesRoss Burton
There was a poky distro override to enable the "owl" window menu functionality. As these packages are in meta-oe now and only Sato/poky supported owl, remove the override and patches. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
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-10-09pinpoint: add new recipePaul Eggleton
Add new recipe for the latest git version of pinpoint, the hacker-friendly presentation tool. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-09-22gtk+: drop .bbappend with native BBCLASSEXTENDMartin Jansa
* it's in oe-core now Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-09-20gnome-themes: inherit perlnativeKhem Raj
It needs perl module libxml-simple-perl for icon-name-mapping secondly inherit perlnative since it may not be available on build host Fixes errors like below | Can't locate XML/Simple.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/local/lib/site_perl .) at /home/kraj/work/angstrom/build/tmp-angstrom_next-eglibc/sysroots/x86_64-linux/usr/libexec/icon-name-mapping line 12. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-09-20recipes: few more PR bumps to rebuild after libffi5 -> libffi6Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-09-20recipes: bump PR to rebuild after libffi5 -> libffi6Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-09-17gdm: remove obsolete filesAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-08-30meta-gnome: replace virtual/gail dependency with gtk+Ross Burton
GTK+ integrated the gail module back in 2009, so we can safely drop the explicit gail dependency. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-08-20meta-gnome: add Pimlico (contacts, dates, tasks)Ross Burton
This has just been removed from oe-core and some people are still using the applications. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-08-20meta-gnome: add evolution-data-serverRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-08-20meta-gnome: add libicalRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-31gedit: unbreak build by adding pythonnative to inheritAndreas Müller
error message was: ERROR: This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. Rerun configure task after fixing this. The path was '/home/andreas/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/gedit-2.30.4-r0/gedit-2.30.4' ERROR: Function failed: do_qa_configure Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-31gnome-settings-daemon: remove gtk-doc from inherit to unbreak buildAndreas Müller
error message was: gtkdocize: GTK_DOC_CHECK not called in configure.ac Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-31gnome-menus: stop configure detecting host's pythonAndreas Müller
This patch does not cause python bindings builded properly (native headers included) error message was: ERROR: This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. Rerun configure task after fixing this. The path was '/home/andreas/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/gnome-menus-2.30.5-r0/gnome-menus-2.30.5' ERROR: Function failed: do_qa_configure ERROR: Logfile of failure stored in: /home/andreas/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/gnome-menus-2.30.5-r0/temp/log.do_configure.7913 NOTE: package gnome-menus-2.30.5-r0: task do_configure: Failed Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-28libwnck: use gobject-introspection-stub instead of -native which was removed ↵Martin Jansa
in oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-24libbonoboui: cleanup thanks to new gtk-doc.bbclassMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-24orbit2: cleanup thanks to new gtk-doc.bbclassMartin Jansa
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-07-19gtk+3: fix build with automake-1.12.xMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-19dconf: fix unpackaged /usr/lib/gio/modules/.debug/libdconfsettings.soMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-19gnome-panel3: add dconf to DEPENDSMartin Jansa
* fixes: | configure:14455: error: Package requirements (gdk-pixbuf-2.0 >= 2.7.1 pango >= 1.15.4 gtk+-3.0 >= 3.0 cairo-xlib glib-2.0 >= 2.25.12 gio-2.0 >= 2.25.12 gio-unix-2.0 >= 2.25.12 gnome-desktop-3.0 >= 2.91.0 gconf-2.0 >= 2.6.1 libgnome-menu >= 2.27.92 dconf) were not met: | | No package 'dconf' found Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-18gsettings-desktop-schemas: add SRC_URI checksumsMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-18gnome-panel3: move as-needed.patch to gnome-panel dirMartin Jansa
* there is BPN changed to gnome-panel and SRC_URI checksuming code cannot find it, causing this warning: WARNING: Unable to get checksum for gnome-panel3-native SRC_URI entry as-needed.patch: file could not be found Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-16gdm: move systemd support to meta-systemdAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2012-06-25cheese: add 2.30.1Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-25abiword: reorder and simplifyMartin Jansa
* there was overlap from .inc and bb (e.g. do_configure/EXTRA_OECONF twice) * simplify SRC_URI Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-25abiword: merge abiword-2.5.inc to abiword_2.8.6.bbMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-25abiword: fix packaging after PACKAGES reorderMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-05libidl: Update LICENSE to contain actual versionchase maupin
* Updated the LICENSE field to contain the version of the LGPL being used which is LGPLv2+ * Update the PR to reflect this license change Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-05recipes: bump PR to fix -systemd postinsts where SYSTEMD_SERVICE was used ↵Martin Jansa
without PN* suffix Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-01gcalctool: remove older version and drop 'patch=1'Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-06-01gnome-settings-daemon: fix staticdev QA warningsAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-16gnome-system-monitor: make it build by aligning includesAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-16gvfs: fix buildAndreas Müller
Error message was: | In file included from gvfsfusedaemon.c:44:0: | /home/andreas/tmp/oe-core-eglibc/sysroots/overo/usr/include/glib-2.0/glib/gurifuncs.h:24:2: error: #error "Only <glib.h> can be included directly." Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-09gnome-settings-daemon 2.32.1: libsndfile -> libsndfile1Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-08Merge remote-tracking branch 'meta-oe-contrib/jansa/pull2'Koen Kooi
2012-05-08orbit2: cleanup recipe, merge .inc and -nativeMartin Jansa
* fix LICENSE field * this also upgrades -native from 2.14.12 to 2.14.17, because 2.14.12 is failing to configure:13143: checking alignment of CORBA_octet configure:13170: gcc -o conftest -isystem/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/include -O2 -pipe -isystem/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/include -pthread -I/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/include/glib-2.0 -I/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/lib/glib-2.0/include -L/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/lib -L/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/lib -Wl,-rpath-link,/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/lib -Wl,-rpath-link,/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/lib -Wl,-rpath,/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/lib -Wl,-rpath,/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/lib -Wl,-O1 conftest.c -pthread -Wl,--export-dynamic -L/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/lib -lgobject-2.0 -lgthread-2.0 -lgmodule-2.0 -lrt -lglib-2.0 >&5 In file included from ./include/orbit/util/basic_types.h:5:0, from conftest.c:45: /OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/include/glib-2.0/glib/gunicode.h:23:2: error: #error 'Only <glib.h> can be included directly.' * use GNOME_MIRROR and SHRT_VER in SRC_URI Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-05-07gnome-settings-daemon: add dependency on libsndfileKoen Kooi
It's autodetected and leads to sstate based breakage on autobuilders: This ends up in the package: Package: gnome-settings-daemon Version: 2.32.1-r3 Depends: [..] libdbus-1-3 (>= 1.4.16), libx11-6 (>= 1.4.4), libogg0 (>= 1.3.0), libsndfile1 (>= 1.0.25), But libsndfile hasn't been built. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-07gnome-settings-daemon: add dependency on libxtst6Koen Kooi
It's autodetected and leads to sstate based breakage on autobuilders: This ends up in the package: Package: gnome-settings-daemon Version: 2.32.1-r3 Depends: libltdl7 (>= 2.4.2), hicolor-icon-theme, libjson0 (>= 0.9), libxcb1 (>= 1.8.1), libxrender1 (>= 0.9.7), libpixman-1-0 (>= 0.25.2), libxml2 (>= 2.7.8), libxext6 (>= 1.3.1), libz1 (>= 1.2.6), libxtst6 (>= 1.2.1), But libxtst hasn't been built. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>