aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
AgeCommit message (Collapse)Author
2010-10-17system-tools-backends: update to 2.10.1 and make it work with libtool 2.4Koen Kooi
2010-10-17ti-dmai: pass c6accel location to makefileKoen Kooi
Signed-off-by: Koen Kooi <k-kooi@ti.com>
2010-10-17angstrom-led-config: add pandaboard supportKoen Kooi
2010-10-17x-load-rsalveti: add x-load 1.41 built from Salveti's treeKoen Kooi
2010-10-17omap4-sgx-modules: add L24.9Koen Kooi
2010-10-17linux-omap4: add 2.5.35.3 from ubuntu gitKoen Kooi
2010-10-16libgee.inc: Use libtool macros from installed libtoolKhem Raj
* Do not use libtool macros that come with libgee * Default to autoconf provided do_configure Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-17php: version 5.2.13 removed --without-iconvFrans Meulenbroeks
5.2.13 had an inconsistency: there was a DEPENDS on virtual/iconv yet there was a configure argument --without-iconv as my project needed iconv, I removed the --without-iconv (works like a charm :-) ) Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-10-16cdfs-2.6.27: initial recipeAndreas Oberritter
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-10-16cdtextinfo: initial recipeAndreas Oberritter
* cdtextinfo queries information about an Audio-CD from CD-Text or CDDB. It outputs queried data as XML. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-10-16python-twisted: removed 2.5.0 versionFrans Meulenbroeks
we already have 8.2.0 for 1.5 year no one pins this some recipes depend on python-twisted-native but this version does not have a native counterpart Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-10-16gnutls_2.10.1: remove the libtool-m4-macrosFrans Meulenbroeks
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Henning Heinold <heinold@inf.fu-berlin.de> Acked-by: Holger Hans Peter Freyther <holger@moiji-mobile.com>
2010-10-16task-shr-feed: add dns2tcpMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16dns2tcp: add recipe for dns2tcp-{client, server}Justus Winter
* dns2tcp is a network tool designed to relay TCP connections through DNS traffic Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16linux(-kexecboot)_git: bump SRCREV for 2.6.36-rc8Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16uhd: Add recipe for Ettus Research Universal Hardware Driver.Philip Balister
2010-10-16ffalarms: bump SRCREV, remove patch applied upstreamŁukasz Pankowski
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16xserver-xorg: move from 1.9.0.901 to 1.9.0.902Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16font-util: add version 1.2.0Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16font-util_1.1.1: replace -native recipe with BBCLASSEXTENDMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16xorg-font-common: use BPN instead of XORG_PNMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-16obexd_0.34.bb: DEPEND on libicalThomas Zimmermann
* This dependencie was added with 0.24 Signed-off-by: Thomas Zimmermann <ml@vdm-design.de>
2010-10-16libsdl-ttf: fix version 2.0.10 by removing the libtool-m4-macrosHenning Heinold
* bump PR Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-15curl: Fix build for native BBLASSEXTENDKhem Raj
Delete unused recipes. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-15libtool-2.4: Append lt_sysroot to libdirKhem Raj
Remove cross.patch which is not needed now. Fix PR setting. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-15gcc-package-cross.inc: Edit the libdir enties in libstdc++.la and libsupc++.laKhem Raj
We manually move libstdc++ to staging sysroot from default install location where gcc-cross installed it. During this process we have to make sure that .la files are edited to contain proper libdir entry pointing relative to sysroot. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-15gcc-cross-intermediate.inc: Move libgcc from cross dir to target sysrootKhem Raj
shared version of libgcc is also installed by gcc-cross-intermediate which we did not move to staging as a result cross gcc found this libgcc and used it compailing about missing libc.so stuff. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-15cups14: Drop legacy bits, correct libusb depTom Rini
We don't need do_stage for target stuff, drop. We don't need name=foo on SRC_URIs in this case, drop. We want virtual/libusb0 for a dep here. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-10-15Reverse the order of OVERRIDESChris Larson
Given the current implementation of OVERRIDES in bitbake, the variable is expected to contain elements in the order least specific to most specific, however, our current usage of it does not match that. As one example, "local" is supposed to always be the most specific override, yet currently it's the least specific. As another example, currently the target architecture is seen as more specific than the machine, which is also clearly wrong. Big thanks to Chase Maupin for investigating and identifying this long standing issue. It becomes clear that a reversal of the current value will bring us to a more sane behavior, and avoids the need for the dual overrides hack mentioned in the comments, so this implements this reversal, and drops the unnecessary and confusing comments. This also introduces a MACHINE_OVERRIDES variable as a generic mechanism to inject overrides elements which are more specific than the distro but less specific than the machine, which is where things like MACHINE_CLASS or SOC_FAMILY or the like would go. This variable is *space* separated, to make it easier and more convenient to assemble the variable incrementally. Reported-by: Chase Maupin <chase.maupin@ti.com> Signed-off-by: Chris Larson <chris_larson@mentor.com> Acked-by: Chase Maupin <chase.maupin@ti.com> Acked-by: Khem Raj <raj.khem@gmail.com>
2010-10-15openswan: Update to 2.6.29Tom Rini
openswan 2.4.7 has a large number of security defects and was not pinned by any users, so remove. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-10-15matrix-tui: use INC_PR in versioned recipeChase Maupin
* Added an INC_PR to the matrix-tui.inc file to be used by the individual version recipes. * Modified the version recipe to use INC_PR in its PR setting. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Acked-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Koen Kooi <koen@openembedded.org>
2010-10-15matrix-gui: use INC_PR in versioned recipesChase Maupin
* Added an INC_PR to the matrix-gui.inc file to be used by the individual version recipes. * Modified the version recipes to use INC_PR in their PR setting. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Acked-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Koen Kooi <koen@openembedded.org>
2010-10-15matrix-gui-e: use INC_PR in versioned recipesChase Maupin
* Added an INC_PR to the matrix-gui-e.inc file to be used by the individual version recipes. * Modified the version recipes to use INC_PR in their PR setting. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Acked-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Koen Kooi <koen@openembedded.org>
2010-10-15matrix-gui-common: use INC_PR in versioned recipesChase Maupin
* Added an INC_PR to the matrix-gui-common.inc file to be used by the individual version recipes. * Modified the version recipes to use INC_PR in their PR setting. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Acked-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Koen Kooi <koen@openembedded.org>
2010-10-15angstrom-version: make lsb_release work with GNOMEKoen Kooi
2010-10-15mokosuite2: bump SRCREV, many bugs fixed and a test version of mokomessagesDaniele Ricci
Signed-off-by: Daniele Ricci <daniele.athome@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-15directfb_1.4.6: update mkdfiff.patch to fix building with newer eglibcMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-10-15python-pygobject: forcefully disable introspectionKoen Kooi
It will pick up the .pc from the native sysroot and then fail to build since we don't have target introspection libs to link against
2010-10-15xst: bump PR for pkgconfig changes in bitbake.confKoen Kooi
2010-10-15libsdl-ttf_2.0.10: add DEFAULT_PREFERENCE -1 as it doesn't build with ↵Martin Jansa
default libtool-2.2.6b * there is patch only for libtool-2.4 * it expects libtool-2.2.6
2010-10-14gdb (all): Add bison-native to DEPENDStested_2010-10-14Tom Rini
While in here, noticed that I didn't do the second half of 8b2cac31bec0b97c8bc66ff3e6d2c9903f2ae8dc as I intended and actually delete the DEPENDS line here. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-10-14disko: update to version 1.7.0Henning Heinold
2010-10-14c-ares: Fix configure.acSean Cross
Get configure to work with our version of autoconf by fixing the syntax of configure.ac Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-14libgee: remove unnecessary dependency on gobject-introspectionSimon Busch
Signed-off-by: Simon Busch <morphis@gravedo.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-14libgee: define common INC_PR and use it in all specific version recipesSimon Busch
Until now there is now way to indicate that the libgee.inc common part of libgee has changed - the PR is only defined in the specific version recipes. This adds the INC_PR var to to the common libgee.inc and use it in the specific version recipes. INC_PR is initial set to the highest value of both version 0.5.2 and 0.6.0. Signed-off-by: Simon Busch <morphis@gravedo.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-10-14freetype: Drop old recipesTom Rini
All of these versions have various security issues to them and are not pinned. Remove. While in here, rename files to freetype. Acks apply to the removal portion. Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Acked-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-10-14directfb: update to version 1.4.6Henning Heinold
* ts-lib patch is applied upstream * remove older minor versions
2010-10-14openjdk: update to version 1.8.2, because of security issuesHenning Heinold
* bump PR
2010-10-14icedtea6-native: update to version 1.7.5Henning Heinold
* remove 1.7.3 version because of security bugs * explicit disable build of the new browser plugin
2010-10-14epiphany: fix EXTRA_OECONFKoen Kooi