summaryrefslogtreecommitdiffstats
path: root/meta-efl/recipes-efl/webkit
Commit message (Collapse)AuthorAgeFilesLines
* webkit-efl: upgrade to new snapshot r164189Martin Jansa2014-04-2010-705/+199
| | | | | | | | | * update webkit-efl_svn to point to the same source and old isn't compatible with new efl http://sourceforge.net/p/enlightenment/mailman/message/32002633/ * restrict for armv7a, because upstream dropped support Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: Add recipe with snapshot from r159807Martin Jansa2014-02-234-0/+119
| | | | | | | * announcement: http://sourceforge.net/mailarchive/message.php?msg_id=31742684 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET2014-02-231-1/+1
| | | | | | | | | | | | | Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: Add dependency on gst-plugins-baseMartin Jansa2013-09-031-1/+1
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: add dependency on gstreamerMartin Jansa2013-08-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * fails without it: | -- checking for module 'gstreamer-0.10' | -- package 'gstreamer-0.10' not found | -- checking for module 'gstreamer-base-0.10' | -- package 'gstreamer-base-0.10' not found | -- checking for module 'gstreamer-app-0.10' | -- package 'gstreamer-app-0.10' not found | -- checking for module 'gstreamer-audio-0.10' | -- package 'gstreamer-audio-0.10' not found | -- checking for module 'gstreamer-fft-0.10' | -- package 'gstreamer-fft-0.10' not found | -- checking for module 'gstreamer-interfaces-0.10' | -- package 'gstreamer-interfaces-0.10' not found | -- checking for module 'gstreamer-pbutils-0.10' | -- package 'gstreamer-pbutils-0.10' not found | -- checking for module 'gstreamer-video-0.10' | -- package 'gstreamer-video-0.10' not found | CMake Error at cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message): | Could NOT find GStreamer (missing: GSTREAMER_INCLUDE_DIRS Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: Update patch to fix undefined hasTagName referenceMartin Jansa2013-06-291-4/+19
| | | | | | | | | | | | * some builds were still failing to link DumpRenderTree and nm revealed that another possible source of this reference is CSSStyleSheet: ./src/lib/libwebcore_efl.so U _ZNK7WebCore4Node10hasTagNameERKNS_13QualifiedNameE ./src/Source/WebCore/CMakeFiles/webcore_efl.dir/css/CSSStyleSheet.cpp.o U _ZNK7WebCore4Node10hasTagNameERKNS_13QualifiedNameE Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: Fix build with gcc-4.8Martin Jansa2013-06-032-1/+45
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: Unify indentationMartin Jansa2013-04-151-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* webkit-efl: add edbus dependencyMartin Jansa2013-01-221-1/+1
| | | | | | | | | | -- checking for module 'edbus>=1.1.0' | -- package 'edbus>=1.1.0' not found | -- checking for module 'eukit>=1.1.0' | -- package 'eukit>=1.1.0' not found Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: fix build with bison-2.6+Martin Jansa2012-12-272-1/+560
| | | | | | * bison was upgraded to 2.7 in oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: upgrade to 1.9.3Martin Jansa2012-07-304-126/+27
| | | | | | | | | | * some revisions are broken for armv4t, see my comment at https://bugs.webkit.org/show_bug.cgi?id=80354 * and newer then this need developement snapshot of glib/glib-networking/libsoup-2.4 https://bugs.webkit.org/show_bug.cgi?id=91626 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: inherit pythonnativeMartin Jansa2012-07-241-2/+2
| | | | | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Conflicts: meta-efl/recipes-efl/webkit/webkit-efl_svn.bb
* various: update ; proto= to ; protocol= in SRC_URIKoen Kooi2012-07-161-3/+3
| | | | | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: fix build with gcc-4.7Martin Jansa2012-05-042-1/+78
| | | | | | | | * that patch is backport of http://trac.webkit.org/changeset/113786/trunk/ to our SRCREV Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: resolve build error with missing eina lib when linked by goldMartin Jansa2012-02-152-0/+30
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: upgrade to 1.7.3Martin Jansa2012-01-232-7/+173
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: upgrade to 1.6.1Martin Jansa2011-10-182-28/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * revert.r78057.patch is not needed, because context menus were removed from eve in r59455 * we still need to force ARM mode, only the segfault is different: | /OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/webkit-efl-1.6.1+svnr97672-r0/src/Source/JavaScriptCore/heap/HandleTypes.h: In static member function 'static T* JSC::HandleTypes<T>::getFromSlot(JSC::HandleSlot) [with T = JSC::Structure, JSC::HandleTypes<T>::ExternalType = JSC::Structure*, JSC::HandleSlot = JSC::JSValue*]': | /OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/webkit-efl-1.6.1+svnr97672-r0/src/Source/JavaScriptCore/heap/Handle.h:126:79: instantiated from 'JSC::Handle<T>::ExternalType JSC::Handle<T>::get() const [with T = JSC::Structure, JSC::Handle<T>::ExternalType = JSC::Structure*]' | /OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/webkit-efl-1.6.1+svnr97672-r0/src/Source/JavaScriptCore/runtime/ScopeChain.h:39:75: instantiated from here | /OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/webkit-efl-1.6.1+svnr97672-r0/src/Source/JavaScriptCore/heap/HandleTypes.h:38:130: warning: cast from 'JSC::JSCell*' to 'JSC::HandleTypes<JSC::Structure>::ExternalType {aka JSC::Structure*}' increases required alignment of target type [-Wcast-align] | {standard input}: Assembler messages: | {standard input}:1116: Error: invalid immediate: 983040 is out of range | {standard input}:1116: Error: value of 983040 too large for field of 2 bytes at 28 | /OE/shr-core/tmp/sysroots/x86_64-linux/usr/libexec/armv4t-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.6.2/as: BFD (GNU Binutils) 2.21.1 assertion fail /OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/binutils-cross-2.21.1a-r0/binutils-2.21.1/bfd/elf.c:2819 | arm-oe-linux-gnueabi-g++: internal compiler error: Segmentation fault (program as) | Please submit a full bug report, | with preprocessed source if appropriate. | See <http://gcc.gnu.org/bugs.html> for instructions. | make[2]: *** [JavaScriptCore/CMakeFiles/javascriptcore_efl.dir/jit/JIT.cpp.o] Error 4 | make[2]: *** Waiting for unfinished jobs.... | {standard input}: Assembler messages: | {standard input}:2059: Error: invalid immediate: 983040 is out of range | {standard input}:2059: Error: value of 983040 too large for field of 2 bytes at 28 | /OE/shr-core/tmp/sysroots/x86_64-linux/usr/libexec/armv4t-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.6.2/as: BFD (GNU Binutils) 2.21.1 assertion fail /OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/binutils-cross-2.21.1a-r0/binutils-2.21.1/bfd/elf.c:2819 | arm-oe-linux-gnueabi-g++: internal compiler error: Segmentation fault (program as) | Please submit a full bug report, | with preprocessed source if appropriate. | See <http://gcc.gnu.org/bugs.html> for instructions. | make[2]: *** [JavaScriptCore/CMakeFiles/javascriptcore_efl.dir/jit/JITOpcodes32_64.cpp.o] Error 4 | make[2]: Leaving directory `/OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/webkit-efl-1.6.1+svnr97672-r0/src/Source' | make[1]: *** [JavaScriptCore/CMakeFiles/javascriptcore_efl.dir/all] Error 2 | make[1]: Leaving directory `/OE/shr-core/tmp/work/armv4t-oe-linux-gnueabi/webkit-efl-1.6.1+svnr97672-r0/src/Source' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* webkit-efl: inherit perlnative and s/ARM/arm/g in ARM_INSTRUCTION_SETMartin Jansa2011-08-081-2/+2
| | | | | | | | * ARM_INSTRUCTION_SET != "thumb" is enough but better to unify with other recipes in case someone does ARM_INSTRUCTION_SET == "arm" later Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* webkit-efl: import from OE rev d4f0211e2078d5033ae0dee74664de5520d8392dMartin Jansa2011-06-082-0/+61
* currently it doesn't build with default pkg-config from oe-core http://lists.linuxtogo.org/pipermail/openembedded-core/2011-June/003798.html if build pkg-config-native before this patch http://cgit.freedesktop.org/pkg-config/commit/?id=69a7eaa6763bb0920e2b539fffbad51348d94deb then webkit-efl builds fine again Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>