summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFiles
2010-06-16json-c: move and rename to libjson as older version wasMartin Jansa2
* also convert old version to new staging Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-16llvm2.7 2.7: Removed the link patch - its not needed for the CMake-buildRobert Schuster2
2010-06-16json-c: add recipe for json C libraryRui Miguel Silva Seabra1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-16task-sdk-base: replace ipkg-dev with virtual/opkg-devDmitry Eremin-Solenikov1
ipkg is long EOL. However task-sdk-base still tries to pull it in via ipkg-dev dependency. Then it clashes with opkg pulled in via DISTRO_FEED_CONFIGS and so building of meta-toolchain-gpe,-opie, etc. fails. This fix allows me to build those sdks w/o any problems. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-16opkg, opkg-nogpg, opkg-nogpg-nocurl: make ${PN}-dev provide virtual/opkg-devDmitry Eremin-Solenikov3
This will be used in task-sdk-base (instead of ipkg-dev). Also bump all PRs to force rebuild. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-16gdb-cross-sdk: drop more files conflicting with binutils-cross-sdkDmitry Eremin-Solenikov1
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-16lowpan-tools: add 0.2.1 releaseDmitry Eremin-Solenikov3
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15uclibc_git: Bump SRCREVKhem Raj1
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15gnu-config: Add recipe for git version.Khem Raj5
* Rename gnu-config to files folder. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15evas: disable neon for the time being, see ↵Koen Kooi1
http://thread.gmane.org/gmane.comp.window-managers.enlightenment.devel/25194
2010-06-15gitver.bbclass: fix issue with detached headsCliff Brake1
2010-06-15oprofile: busybox shell needs we need a bit more quoting in opcontrolTom Rini2
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-06-15patchelf: New recipeKhem Raj1
* Its used to modify rpaths in ELF files. Replacement for chrpath. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15ltrace_0.5.3.bb: Add binutils to DEPENDSKhem Raj1
* ltrace needs libiberty which is staged by binutils. Earlier it was staged via gcc-cross Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15xorg-app-common: include app-defaults into built packagesDmitry Eremin-Solenikov1
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15gdb-cross-sdk: drop bfd&opcodes messages from the archiveDmitry Eremin-Solenikov1
As a way to restore meta-toolchain generation, drop bfd.mo and opcodes.mo from gdb-cross-sdk archives, as these files clash with ones from binutils-cross-sdk. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15gdb-cross-sdk: unify recipes, move common code to gdb-corss-sdk.incDmitry Eremin-Solenikov5
Unify gdb-cross-sdk recipes. INC_PR is choosen to be r3, as to be not less than 6.6 PR = r3. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15angstrom feed sorter: always call ipkg-make-index from ${ipkg_tools_path}Dmitry Eremin-Solenikov1
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15angstrom feed sorter: add 486sx arch and drop armv7 from the arches listDmitry Eremin-Solenikov1
Add 486sx (vortex86sx machine) and drop armv7 (no such thing exists anymore). Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15icecc: also set environment in do_installDmitry Eremin-Solenikov1
Libtool in some packages (e.g. curl) tries to relink libraries during installation stage. If the Icecc environment isn't set in the do_install such relinking fails. Fix this by adding do_install_prepend to icecc.bbclass with set_icecc_env() call. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15gdb: fix building of sim/ppcDmitry Eremin-Solenikov4
One shouldn't depend on $(LIBS) value, as it contains -lz-like things, not only filenames. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15angstrom feed sorter: tqm8540 is ppce500, not ppc500Dmitry Eremin-Solenikov1
There is no such thing, as ppc500 (it's e500). Moreover no such thing exists as ppc500, so drop it completely. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2010-06-15iproute2_2.6.34: Make configure to honor cross environment.Khem Raj2
* The configure is hand made and it calls gcc directly to poke for stuff which is not correct when build in cross enviroment so change gcc calls to $CC and pass the sysroot as a parameter to search libraries in correct sysroot and not in /usr/lib or /lib Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15binutils-2.20.1: Update libtool files so cross native builds are correct.Khem Raj2
* Currently libtool adds -L/usr/lib to the link command which directs linker to pull from /usr/lib. Many distro's dont have stuff which is conflicting in /usr/lib with the target libraries but some do. Like archlinux has libgcc_s.so.1 in /usr/lib due to the above -L it gets picked over the target libgcc and the link command fails. -L/usr/lib is generated by libtool when it sees -rpath /usr/lib which may be not the right think when doing cross native builds. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15opencv: add bzip2 depKoen Kooi1
2010-06-14gcc-4.5: Bump SRCREVKhem Raj2
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-14libsdl-x11-1.2.14: Update libtool macros and remove legacy stagingKhem Raj2
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-14tiff_3.9.2.bb: Use default do_configure from autotools.Khem Raj1
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-15neon_0.25.5: Disable GSSAPI to remove kerberos dependency.Yuri Bushmelev1
2010-06-14xorg-data: convert to new stagingMartin Jansa1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14navit: move packaging from svn version to .inc file, add qt-painter package, ↵Martin Jansa2
enable qt * for qml you need qt-4.7.0-beta1 or newer Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14navit: remove old versions to simplify .inc fileMartin Jansa3
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14navit-icons: bump SRCREVMartin Jansa1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14elementary: try to fix upgrade path from older -themes and -configs subpackageMartin Jansa1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14omapfbplay: update to latest gitKoen Kooi1
2010-06-14mkfontdir: always include non-native recipe and use xorg-app-common.incMartin Jansa3
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14xterm: use xorg-app-common.incMartin Jansa2
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14mkbold-mkitalic-native: use xorg-app-common.incMartin Jansa1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14mkfontscale: always include non-native recipe and use xorg-app-common.incMartin Jansa4
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14xkbcomp-native: use xorg-app-common.incMartin Jansa3
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14xorg-app: use INC_PRMartin Jansa248
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14xorg-data: use INC_PRMartin Jansa6
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14xorg-driver: use INC_PRMartin Jansa274
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14recipes: bump PR/INC_PR for packages changed in ↵Martin Jansa174
RDEPENDS/RRECOMMENDS/RSUGGESTS/RPROVIDES/RCONFLICTS/RREPLACES cleanup add PR = r1 to recipes not including any .inc file Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-14omapfbplay: bump PRKoen Kooi3
2010-06-14opencv, -samples: bump SRCREVKoen Kooi2
2010-06-14mythtv 0.23: make it atually fetch for the 0.23 branch instead of the 0.22 ↵Koen Kooi3
branch
2010-06-14angstrom: pin mythtv to 0.22Koen Kooi1
2010-06-14mythtv: add back 0.22+fixes which is still in active useKoen Kooi3
* 0.23 is incompatible with 0.22 (as usual with mythtv)
2010-06-14recipes: PR bump after EFL SRCREV change resulting to different .so names.Martin Jansa20
* mostly libelementary-ver-svn-06 -> libelementary-ver-pre-svn-06 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>