summaryrefslogtreecommitdiffstats
path: root/meta-oe
Commit message (Collapse)AuthorAgeFilesLines
...
* qt4-x11-free: drop bbappend for 4.8.1Martin Jansa2012-11-221-6/+0
| | | | | | | * 4.8.1 was removed from oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* omgps: add patch to fix build with latest glib from oe-coreMartin Jansa2012-11-162-0/+124
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* python-numpy: Move static libraries to -staticdevStefan Herbrechtsmeier2012-11-161-1/+3
| | | | | Signed-off-by: Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* kernel.bbclass: remove explicit version.h targetBruce Ashfield2012-11-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The compilation routine for the kernel has an explicit call to build version.h, which works fine for most kernels, but the location of it has recently changes. commit d183e6f5 [UAPI: Move linux/version.h] commit 10b63956 [UAPI: Plumb the UAPI Kbuilds into the user header installation and checking] moves the file to include/generated/linux/version.h and then to include/generated/uapi/linux/version.h. As a result kernel builds of 3.7 or bisection builds of intermediate kernel commits will fail with: make[2]: *** No rule to make target `include/linux/version.h'. Stop. Making the explicit version.h build conditional on the version, or via a file test would fix the problem, but it introduces some complexity to the build. Even without an explicit call to build version.h, it is always produced by the kernel build, so it can simply be removed. This extra make line was originally so that the kernel version could be determined, so that then different instructions could be executed depending on whether it was a 2.4 or 2.6 kernel. Since we no longer support 2.4, this code is no longer needed. [YOCTO: #3293] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mercurial-native: fix installEric BENARD2012-11-131-1/+5
| | | | | | | | | | else host python is used leading to the following error if the host doesn't have the python headers installed : | Python headers are required to build Mercurial | make: *** [build] Error 1 Signed-off-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* freerdp: Bump SRCREV to 1.0.2 snapshot of 2012-10-30Otavio Salvador2012-11-021-1/+1
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* gitver: fix gitver to work with yocto 1.3Radek Dostal2012-10-301-13/+8
| | | | | | | | | | replace oe_run and oe.process with bb.process gitver got broken by following oe-core commits: 15ad62ab1be060d8a7cdc2d28167ea3af4cfd5d5 d56062cbf92ef206bf06c767befacb66927a9a36 Signed-off-by: Radek Dostal <rd@radekdostal.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* freerdp: Update to lastest stable (upcoming 1.0.2)Otavio Salvador2012-10-302-12/+15
| | | | | | | | This changes the build system from autotools for cmake so we change the options to allow it to proper build. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ccid: Update to 1.4.8Otavio Salvador2012-10-301-4/+3
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* pcsc-lite: Update to 1.8.6Otavio Salvador2012-10-301-6/+4
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* iotop: add from OE-Classic, update and tidy upPaul Eggleton2012-10-301-0/+24
| | | | | | | | | | * Update to 0.4.4, adjusting python module dependencies as appropriate * Add SUMMARY and DESCRIPTION * Add LIC_FILES_CHKSUM * Make LICENSE more accurate * Fix unpackaged directory warning Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* ddrescue: add from OE-Classic, update and tidy upPaul Eggleton2012-10-301-0/+18
| | | | | | | | | | * Update to 1.16 * Add LIC_FILES_CHKSUM * Add SUMMARY and extend DESCRIPTION * Drop PRIORITY * Drop AUTHOR (generally we don't include this) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* Replace bb.data.* with d.*Paul Eggleton2012-10-2827-48/+48
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* mysql5-native: remove PSTAGING_DISABLEDPaul Eggleton2012-10-281-2/+0
| | | | | | This variable is no longer used with OE-Core. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* Remove NATIVE_INSTALL_WORKSPaul Eggleton2012-10-287-10/+0
| | | | | | This variable is no longer used with OE-Core. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* Remove PRIORITYPaul Eggleton2012-10-283-3/+0
| | | | | | We don't set this field in recipes anymore. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* samba: update documentation2.patch to applyMartin Jansa2012-10-262-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fails here because of non-ASCII characters: ERROR: Command Error: exit status: 1 Output: Applying patch documentation2.patch patching file docs-xml/manpages-3/nmbd.8.xml patching file docs-xml/manpages-3/samba.7.xml patching file docs-xml/manpages-3/smb.conf.5.xml patching file docs-xml/manpages-3/smbd.8.xml patching file docs-xml/using_samba/appd.xml patching file docs-xml/using_samba/ch01.xml patching file docs-xml/using_samba/ch07.xml patching file docs/htmldocs/manpages/nmbd.8.html patching file docs/htmldocs/manpages/samba.7.html patching file docs/htmldocs/manpages/smb.conf.5.html patching file docs/htmldocs/manpages/smbd.8.html patching file docs/manpages/nmbd.8 patching file docs/manpages/samba.7 patching file docs/manpages/smb.conf.5 patching file docs/manpages/smbd.8 patching file examples/tridge/smb.conf patching file swat/lang/tr/help/welcome.html Hunk #1 FAILED at 40. Hunk #2 succeeded at 66 with fuzz 2. 1 out of 2 hunks FAILED -- rejects in file swat/lang/tr/help/welcome.html Patch documentation2.patch does not apply (enforce with -f) ERROR: Function failed: patch_do_patch ERROR: Logfile of failure stored in: /OE/jansa-test/shr-core/tmp-eglibc/work/armv4t-oe-linux-gnueabi/samba-3.6.8-r0/temp/log.do_patch.2937 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-pyqt: don't bypass sstate with sip filesMartin Jansa2012-10-261-10/+4
| | | | | | * discovered with http://patchwork.openembedded.org/patch/38521/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* check: drop from meta-oe, there is libcheck in oe-coreMartin Jansa2012-10-262-41/+0
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* loudmouth: depend on libcheck instead of checkMartin Jansa2012-10-261-2/+2
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* vala-terminal: inherit valaMartin Jansa2012-10-261-2/+3
| | | | | | * we need to export XDG_DATA_DIRS Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* midori: inherit valaMartin Jansa2012-10-261-3/+3
| | | | | | * we need to export XDG_DATA_DIRS Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tangogps: inherit gconfMartin Jansa2012-10-261-3/+3
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* foxtrotgps: inherit gconfMartin Jansa2012-10-261-3/+3
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* hddtemp: add from OE-Classic and updatePaul Eggleton2012-10-267-0/+3199
| | | | | | | | | | | | | | hddtemp is unmaintained upstream so we have to do a bit of patching. All patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch which came from OE-Classic. Other improvements: * Add initscript from Debian * Make LICENSE more accurate * Add LIC_FILES_CHKSUM * inherit gettext to avoid error during configure Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* ntp: Move from meta-oe to meta-networkingMorgan Little2012-10-259-298/+0
| | | | Signed-off-by: Morgan Little <morgan.little@windriver.com>
* hplip: Introduce version 3.12.6Marc Reilly2012-10-243-0/+115
| | | | | | | | | | | | | | | This introduces a recipe to build hplip 3.12.6 in a simple configuration aimed at USB printers. It is based on a 3.11.3a recipe for oe classic by Steve Sakoman. The hp-setup program is patched to add a small delay after restarting cups, as on slower embedded systems the cups daemon would sometimes not restart quickly enough and adding a new printer would sporadically fail. Tested on an armv6 system (with cups 1.4.6, ghostscript 9.05, foomatic). Signed-off-by: Marc Reilly <marc@cpdesign.com.au> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* f2fs-tools: add 1.1.0Koen Kooi2012-10-241-0/+19
| | | | | | These are the tools needed for creating and managing f2fs partitions. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* Revert "maliit-framework: Clean up recipe and use gtk-immodules-cache.bbclass"Koen Kooi2012-10-241-7/+25
| | | | | | The class hasn't hit oe-core yet This reverts commit eb66e508e33ccbec8299041265eef183913a3a8c.
* samba: update to version 3.6.8Otavio Salvador2012-10-2429-47/+21995
| | | | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* mysql: always replace paths in mysql_config scriptPaul Eggleton2012-10-241-3/+7
| | | | | | | | | | | Path replacement was not happening on some machines if the MySQL build scripts set a different path in the produced mysql_config script, resulting in host paths being left in. Original patch by Joe Slater <jslater@windriver.com>. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* libgphoto2: fix buildAndreas Müller2012-10-242-1/+51
| | | | | | | | | | | | autoconf.bbclass forces building po dirs by copying po/Makefile.in.in. We have to care for libgphoto2_port/po/Makefile.in.in too and have to remove AM_PO_SUBDIRS() from configure.ac since that causes | autoreconf: running: aclocal --system-acdir=/home/Superandy/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/libgphoto2-2.4.11-r2/libgphoto2-2.4.11/aclocal-copy/ --automake-acdir=/home/Superandy/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/share/aclocal-1.12 -I /home/Superandy/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/libgphoto2-2.4.11-r2/libgphoto2-2.4.11/auto-m4/ -I /home/Superandy/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/libgphoto2-2.4.11-r2/libgphoto2-2.4.11/m4m/ -I /home/Superandy/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/libgphoto2-2.4.11-r2/libgphoto2-2.4.11/auto-m4/ -I /home/Superandy/tmp/oe-core-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/libgphoto2-2.4.11-r2/libgphoto2-2.4.11/m4m/ --force -I auto-m4 -I m4m | configure.ac:230: error: `po-directories' is already registered with AC_CONFIG_COMMANDS. Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* lmsensors: Initial commitMarc Ferland2012-10-247-0/+267
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The lmsensors project provides hardware health monitoring tools in the form of kernel drivers, a user-space library and some helper programs. This recipe provides all the different user-space tools offered by lmsensors in separete packages. Startup scripts and default configuration files are also made available through this commit. The packages consist of (description text from lmsensors documentation): * lmsensors-libsensors: The user-space sensors support library code. * lmsensors-sensors: A console tool to report sensor readings and set new sensor limits. * lmsensors-sensord: A daemon to watch sensor values and log problems. It includes RRD support. * lmsensors-fancontrol: Controls fanspeeds responding to changes on temperature sensors. Configuration through pwmconfig. * lmsensors-sensorsdetect: This program tries to detect the available SMBus adapters and the chips connected to them, as well as Super-I/O and misc chips. * lmsensors-sensorsconfconvert: Convert configuration files from lmsensorsv2 to lmsensorsv3. * lmsensors-pwmconfig: tests the pwm (pulse width modulation) outputs of sensors for their effect on the fans and helps to setup the configfile for fancontrol. * lmsensors-isatools: This program sets/gets the registers of ISA or Super-I/O chips. Signed-off-by: Marc Ferland <ferlandm@sonatest.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* devilspie2: initial add 0.24Andreas Müller2012-10-243-0/+81
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* maliit-framework: Clean up recipe and use gtk-immodules-cache.bbclassSamuel Stirtzel2012-10-241-25/+7
| | | | | | | To be merged after gtk-immodules-cache.bbclass hits oe-core Signed-off-by: Samuel Stirtzel <s.stirtzel@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* smbnetfs: add recipe for smbnetfs, a fuse filesystem for windows networksSander van Grieken2012-10-241-0/+16
| | | | | Signed-off-by: Sander van Grieken <sander@outrightsolutions.nl> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* Jansson: new recipe, library for creating and manipulating JSON strings in CJack Mitchell2012-10-241-0/+12
| | | | | Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* libjpeg-turbo: Add RPROVIDES to fix errors when rdepending on jpegSamuel Stirtzel2012-10-231-1/+4
| | | | | | | | This fixes "ERROR: Multiple .bb files are due to be built which each provide jpeg" Signed-off-by: Samuel Stirtzel <s.stirtzel@googlemail.com> Acked-by: Chase Maupin <chase.maupin@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* sshfs-fuse : Import recipe from Openembedded Classic.Philip Balister2012-10-191-0/+19
| | | | | Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* fuse : Update to version 2.9.2.Philip Balister2012-10-192-2/+2
| | | | | | | Bug fix release. Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* mysql: start at runlevel 5 not SMarcin Juszkiewicz2012-10-191-2/+2
| | | | | | | | | | Without that change target system had to be restarted to get MySQL running or it had to be run by hand. Reason was simple: mysql init script was starting before S99configure when package was not yet configured. Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* mcnavi: move from meta-oe to meta-eflMartin Jansa2012-10-191-15/+0
| | | | | | | * mcnavi depends on ecore, but meta-oe does not depend on meta-efl * thanks to kergoth for reporting this! Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* libxaw: drop libxp and printproto from DEPENDSMartin Jansa2012-10-191-2/+2
| | | | | | | | | | | | | | | * it was removed from oe-core http://git.openembedded.org/openembedded-core/commit/?id=5b3748d463a6666c0d8e2624092619da8d8e6328 * there should be --disable-xprint/--without-xprint too, but it looks like all support for xprint was removed from libxaw already commit 012e73faab8dc8617c6da4679715dae14f6cddd4 Author: Daniel Stone <daniel@fooishbar.org> Date: Fri Aug 15 18:25:53 2008 +0300 Remove last remaining vestiges of Xprint support Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* mcnavi: remove myslq_config include path work aroundMartin Jansa2012-10-191-6/+1
| | | | | | * it was fixed in mysql5 3f95bb907381ac5fd789452e1330c12f9a8904f9 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* PACKAGES_DYNAMIC: use regexp not globMartin Jansa2012-10-197-7/+7
| | | | | | | | | | * 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>
* Maliit: Add initial recipesSamuel Stirtzel2012-10-174-0/+188
| | | | | | | | | Maliit is a Qt based virtual keyboard under liberal license (LGPLv2.1 / BSD) The inputmethod framework from Qt is used and it supports gtk-immodules. It can also be used without dependencies to GTK+ (separate package for GTK+) Signed-off-by: Samuel Stirtzel <s.stirtzel@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* iso-codes: set SUMMARYPaul Eggleton2012-10-171-1/+2
| | | | Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* libnice: tidy up meta variablesPaul Eggleton2012-10-171-3/+4
| | | | | | | | * Add SUMMARY * Fix typo in DESCRIPTION * Set LICENSE to a parsable form Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* rrdtool: add pango to DEPENDSPaul Eggleton2012-10-171-1/+3
| | | | | | | The configure script fails without pangocairo which is provided by pango. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* libc-client: correct LICENSEPaul Eggleton2012-10-171-1/+3
| | | | | | The license is Apache 2.0 according to the included LICENSE.txt file. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>