summaryrefslogtreecommitdiffstats
path: root/package/qt5
Commit message (Collapse)AuthorAgeFilesLines
...
* qt5webkit: disable for MIPS64Vicente Olivert Riera2013-12-181-0/+2
| | | | | | | | | | | | | | | qt5webkit is not currently supported on MIPS64 platforms, so disable the possibility of selecting this package in that platform. In the future the following changes would be needed to fix this problem: A new Source/JavaScriptCore/assembler/MacroAssemblerMIPS64.h file needs to be created in order to add support for MIPS64 and MacroAssembler.h needs to be modified to include that file in case of CPU(MIPS64). Also Source/WTF/wtf/Platform.h and Source/WTF/wtf/dtoa/utils.h need to be modified to add MIPS64 support. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Merge branch 'next'Peter Korsgaard2013-12-014-50/+151
|\ | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * qt5base: use ccache if enabledFatih Aşıcı2013-11-291-1/+1
| | | | | | | | | | | | | | | | For now, it doesn't use ccache when compiling host tools (e.g. qmake). It seems the fix is not trivial. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * qt5base: use -device-option to set mkspec variablesFatih Aşıcı2013-11-284-50/+151
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify our custom qmake.conf: - Include linux_device_{pre,post}.conf to inherit common device configuration. - Do not add $(STAGING_DIR)/usr/include to include path. It is redundant. In additon to the simplification of code, this change is a preparation to solve problems occurring when QMAKE_CXX is prepended with ccache path. Upstream patch is needed by configure to parse device options correctly. Another upstream patch is needed to remove ARM specific parts from linux_device_post.conf. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | qt5: Disable on MIPS64 BigEndian n64 platformsVicente Olivert Riera2013-11-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | qt5base fails to compile on MIPS64 BigEndian n64 platforms because there are multiple calls to some functions that are disabled. Since every Qt5 package depends on qt5base we can disable Qt5 entirely. This is a quick fix for the next release. In the meantime, a proposed patch to fix this problem has already been sent to Qt: https://bugreports.qt-project.org/browse/QTBUG-35228 Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Acked-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | qt5base: add Fedora patch to fix powerpc buildFatih Aşıcı2013-11-201-0/+29
| | | | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/e57/e57dea01c3c1a4e3269580972890192c37d41697/ Patch submitted upstream: https://codereview.qt-project.org/#change,71763 Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | qt5base: fix posix_fallocate patchSamuel Martin2013-11-131-2/+1
|/ | | | | | | | Fixes: http://autobuild.buildroot.net/results/a07/a07c1825a5295a8343cd89f0901d9a74a764d804/build-end.log Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: add missing hunk in posix_fallocate patchFatih Aşıcı2013-11-121-2/+15
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: detect posix_fallocate() at configure timeFatih Aşıcı2013-11-121-0/+154
| | | | | | | Fixes http://autobuild.buildroot.net/results/555278227680e90737e6dbe0a6dcc035507150aa/ Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* icu: Doesn't work on ARC yetMischa Jonker2013-11-111-0/+1
| | | | | | | | | icu depends on __sync_sub_and_fetch and other atomic primitives that don't exist in the ARC toolchain yet. [Peter: adjust beecrypt/php comment dependency, don't mention atomic builtins] Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Config.in files: add missing dependencies to toolchain option commentsThomas De Schampheleire2013-11-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a package A depends on config option B and toolchain option C, then the comment that is given when C is not fulfilled should also depend on B. For example: config BR2_PACKAGE_A depends on BR2_B depends on BR2_LARGEFILE depends on BR2_WCHAR comment "A needs a toolchain w/ largefile, wchar" depends on !BR2_LARGEFILE || !BR2_WCHAR This comment should actually be: comment "A needs a toolchain w/ largefile, wchar" depends on BR2_B depends on !BR2_LARGEFILE || !BR2_WCHAR or if possible (typically when B is a package config option declared in that same Config.in file): if BR2_B comment "A needs a toolchain w/ largefile, wchar" depends on !BR2_LARGEFILE || !BR2_WCHAR [other config options depending on B] endif Otherwise, the comment would be visible even though the other dependencies are not met. This patch adds such missing dependencies, and changes existing such dependencies from depends on BR2_BASE_DEP && !BR2_TOOLCHAIN_USES_GLIBC to depends on BR2_BASE_DEP depends on !BR2_TOOLCHAIN_USES_GLIBC so that (positive) base dependencies are separate from the (negative) toolchain dependencies. This strategy makes it easier to write such comments (because one can simply copy the base dependency from the actual package config option), but also avoids complex and long boolean expressions. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> (untested) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5webkit: fix build with bison-3.0Samuel Martin2013-11-102-1/+39
| | | | | | | | | | | | - Add host-bison dependency - Fetch patch from upstream fixing build with bison-3.0 (already included in the next 5.2 release) Fixes: http://autobuild.buildroot.net/results/283/2831c0d859b035f7d2786f51885833a711b46b80/build-end.log Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: fix rpi/egl support (vc_dispmanx_element_change_attributes proto ↵Samuel Martin2013-11-101-0/+44
| | | | | | | | | | | | mismatch) Patch from upstream already included in the next 5.2 release Fixes: http://autobuild.buildroot.net/results/347/347577bf1dee0fec3302a45f278eb253118a5b6f/build-end.log Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: add tslib pluginEzequiel García2013-10-282-0/+13
| | | | | | | | Add support for Tslib plugin. [Peter: propagate !static dependency / add comment] Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: fix QtGUI build without PNG supportPeter Korsgaard2013-10-261-0/+22
| | | | | | | Patch from upstream bug report: https://bugreports.qt-project.org/browse/QTBUG-33496 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5x11extras: new packageFatih Aşıcı2013-10-263-0/+52
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5serialport: new packageFatih Aşıcı2013-10-263-0/+51
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5sensors: new packageFatih Aşıcı2013-10-263-0/+67
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5quickcontrols: new packageFatih Aşıcı2013-10-263-0/+58
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: bump to 5.1.1Fatih Aşıcı2013-10-269-74/+48
| | | | | | | | | | | | | Following patches are removed since they are upstreamed: - qt5base/qt5base-0001-eglconvenience-add-egl-to-CONFIG-to-get-correct-incl.patch - qt5jsbackend/qt5jsbackend-0002-fix-uclibc.patch Remove "-nomake demos" from configure options since "demos" directory is merged into examples. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Tested-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Config.in files: unify comments of toolchain option dependenciesThomas De Schampheleire2013-10-141-1/+1
| | | | | | | | This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: remove configure options from module packagesFatih Aşıcı2013-10-0910-10/+0
| | | | | | | | These packages do not have configure scripts. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: fix build when egl headers need a definitionFatih Aşıcı2013-10-021-0/+28
| | | | | | | | The build with gpu-viv-bin-mx6q libraries was broken since it wasn't using "-DEGL_API_FB=1" flag which is found in egl.pc. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: give numbers to patch filesFatih Aşıcı2013-10-026-0/+0
| | | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Acked-by: "Samuel Martin" <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: set eglfs platform hook for imx6Fatih Aşıcı2013-09-191-0/+4
| | | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5webkit: install qml's only if declarative module is selectedFatih Aşıcı2013-09-181-1/+11
| | | | | | | Fixes http://autobuild.buildroot.net/results/a9bbba68f22076ea2c86ee09ebe8a0a5e86b3b54/ Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5webkit: select libXrender if xcb is enabledFatih Aşıcı2013-09-182-0/+6
| | | | | | [Peter: also add libXext] Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix build reproducibility in Make 3.82Jérôme Pouiller2013-09-061-1/+1
| | | | | | | | | | | | Make 3.82 no longer sort the result of wildcards (see http://comments.gmane.org/gmane.comp.gnu.make.bugs/4260). This may break build reproducibility. This patch sort results of wildcards to ensure reproducibility. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5webkit: needs gui support in qtPeter Korsgaard2013-08-281-0/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/439ce2c3c33a92966808071d4fc7231d50453c79/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5: change upstream URLThomas Petazzoni2013-08-181-1/+1
| | | | | | | The Qt5 upstream URL has changed, which leads to build failures in the autobuilders. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5jsbackend: needs ARM v5+Gustavo Zacarias2013-07-311-0/+2
| | | | | | | | | | Just like nodejs and other v8-based javascript engines for ARM interwork it needs the BLX instruction which is only available on V5+ cores. Fixes: http://autobuild.buildroot.net/results/853/853cd29bf427902b2cb82a101964a4e45714cb86/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: add _LICENSE_FILES where applicablePeter Korsgaard2013-06-286-17/+6
| | | | | | | Some (but not all) of the qt5 module tarballs contain license files, so let's reference them. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5quick1: ensure optional qt5webkit support is enabled if presentPeter Korsgaard2013-06-281-1/+2
| | | | | | | qt5quick1 has optional qt5webkit support, so ensure it is built after qt5webkit if enabled. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5/qt5quick1: Drop qmlviewer from install since its no longer provided.Naumann Andreas2013-06-281-1/+0
| | | | | Signed-off-by: Andreas Naumann <anaumann@ultratronik.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5quick1: doesn't require qt5webkitPeter Korsgaard2013-06-282-2/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5quick1: needs widgets support in qt5basePeter Korsgaard2013-06-281-0/+2
| | | | | | Which in turn needs gui support. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5declarative: eglfs depends on gui support, so select that as wellPeter Korsgaard2013-06-271-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-0611-22/+22
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'next'Peter Korsgaard2013-06-022-0/+52
|\
| * qt5: mysql and sqlite pluginsWojciech Slenska2013-05-302-0/+51
| | | | | | | | | | | | | | | | Added support for mysql and sqlite plugins. Configuration is based on qt package. [Peter: strip trailing spaces] Signed-off-by: Wojciech Slenska <wojciech.slenska@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qt5: add libQt5OpenGL.so library installationWojciech Slenska2013-05-301-0/+1
| | | | | | | | | | | | | | | | When qt5 is built with EGLFS support, libQt5OpenGL library should be copied to target. Signed-off-by: Wojciech Slenska <wojciech.slenska@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qt5jsbackend: only available on ARM, x86, x86-64 and mipselThomas Petazzoni2013-05-295-4/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The v8 Javascript virtual machine that is the core of qt5jsbackend is only available on certain architectures. At the moment, only ARM, x86, x86-64 and mipsel are supported. Fixes: http://autobuild.buildroot.org/results/a2e/a2e62e2deaa28ec9d4d957523a00ee0b7a634950/build-end.log [Peter: also add dependency for qt5graphicaleffects] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qt5imageformats: needs gui support in qt5basePeter Korsgaard2013-05-111-0/+1
|/ | | | | | Fixes http://autobuild.buildroot.net/results/8843619e91958766c66c0955f363bbfc733b31e6/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5: bump to 5.0.2Thomas Petazzoni2013-04-151-2/+2
| | | | | | | | | | | A new version of Qt5 has been released, 5.0.2, so let's use it, see http://blog.qt.digia.com/blog/2013/04/10/qt-5-0-2-released/: "Qt 5.0.2 brings over 600 improvements compared to Qt 5.0.1, most of these in order to address the issues Qt users have noted when bringing their applications to Qt 5.". Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5: factor <pkg>_SITE variableThomas Petazzoni2013-04-1512-11/+12
| | | | | | | | | | | Each qt5 package was defining its own QT5<something>_SITE variable. Unfortunately, the download location has slightly changed for Qt 5.0.2, so we would have to change it for all packages. Instead, we factor the <pkg>_SITE variable as QT5_SITE in package/qt5/qt5.mk, just like we already do for QT5_VERSION. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5/qt5quick1: new packageThomas Petazzoni2013-04-113-0/+68
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5webkit: add EGL dir to includepathFloris Bos2013-04-111-0/+40
| | | | | | Signed-off-by: Floris Bos <bos@je-eigen-domein.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5/qt5webkit: new packageThomas Petazzoni2013-04-113-0/+58
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5/qt5multimedia: new packageThomas Petazzoni2013-04-113-0/+66
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5/qt5graphicaleffects: new packageThomas Petazzoni2013-04-113-0/+57
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud