diff options
Diffstat (limited to 'recipes-qt/qt5/qttools-git')
3 files changed, 20 insertions, 19 deletions
diff --git a/recipes-qt/qt5/qttools-git/0001-Allow-to-build-only-lrelease-lupdate-lconvert.patch b/recipes-qt/qt5/qttools-git/0001-Allow-to-build-only-lrelease-lupdate-lconvert.patch index 9a31c139..c176b4e8 100644 --- a/recipes-qt/qt5/qttools-git/0001-Allow-to-build-only-lrelease-lupdate-lconvert.patch +++ b/recipes-qt/qt5/qttools-git/0001-Allow-to-build-only-lrelease-lupdate-lconvert.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 50fdb63c074138f783a448bc2db97b6f0ccfefea Mon Sep 17 00:00:00 2001 | 1 | From ba804f69b32dc9a3554d2901cd1897039be33553 Mon Sep 17 00:00:00 2001 |
2 | From: Martin Jansa <Martin.jansa@gmail.com> | 2 | From: Martin Jansa <Martin.jansa@gmail.com> |
3 | Date: Wed, 11 Sep 2013 18:30:08 +0200 | 3 | Date: Wed, 11 Sep 2013 18:30:08 +0200 |
4 | Subject: [PATCH 1/2] Allow to build only lrelease + lupdate + lconvert | 4 | Subject: [PATCH 1/3] Allow to build only lrelease + lupdate + lconvert |
5 | 5 | ||
6 | This is useful e.g. when cross compiling with OpenEmbedded where qtbase-native | 6 | This is useful e.g. when cross compiling with OpenEmbedded where qtbase-native |
7 | is built without GUI support (no-png is set) and we still want to build | 7 | is built without GUI support (no-png is set) and we still want to build |
@@ -9,25 +9,26 @@ native lrelease + lupdate + lconvert tools. | |||
9 | 9 | ||
10 | Upstream-Status: Pending | 10 | Upstream-Status: Pending |
11 | 11 | ||
12 | Signed-off-by: Martin Jansa <Martin.jansa@gmail.com> | 12 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> |
13 | --- | 13 | --- |
14 | examples/examples.pro | 4 ++-- | 14 | examples/examples.pro | 3 ++- |
15 | src/designer/src/src.pro | 16 +++++++++------- | 15 | src/designer/src/src.pro | 16 +++++++++------- |
16 | src/linguist/linguist.pro | 2 +- | 16 | src/linguist/linguist.pro | 2 +- |
17 | src/src.pro | 14 ++++++++------ | 17 | src/src.pro | 14 ++++++++------ |
18 | tests/auto/auto.pro | 24 +++++++++++++----------- | 18 | tests/auto/auto.pro | 24 +++++++++++++----------- |
19 | 5 files changed, 33 insertions(+), 27 deletions(-) | 19 | 5 files changed, 33 insertions(+), 26 deletions(-) |
20 | 20 | ||
21 | diff --git a/examples/examples.pro b/examples/examples.pro | 21 | diff --git a/examples/examples.pro b/examples/examples.pro |
22 | index 4955969..8e86419 100644 | 22 | index 69365d1..da7b38b 100644 |
23 | --- a/examples/examples.pro | 23 | --- a/examples/examples.pro |
24 | +++ b/examples/examples.pro | 24 | +++ b/examples/examples.pro |
25 | @@ -1,3 +1,3 @@ | 25 | @@ -1,4 +1,5 @@ |
26 | TEMPLATE = subdirs | 26 | TEMPLATE = subdirs |
27 | -qtHaveModule(widgets): SUBDIRS += help designer linguist uitools assistant | 27 | -qtHaveModule(widgets): SUBDIRS += help designer linguist uitools assistant |
28 | - | ||
29 | +!linguistonly:qtHaveModule(widgets): SUBDIRS += help designer assistant | 28 | +!linguistonly:qtHaveModule(widgets): SUBDIRS += help designer assistant |
30 | +qtHaveModule(widgets): SUBDIRS += linguist uitools | 29 | +qtHaveModule(widgets): SUBDIRS += linguist uitools |
30 | |||
31 | winrt: SUBDIRS -= assistant designer | ||
31 | diff --git a/src/designer/src/src.pro b/src/designer/src/src.pro | 32 | diff --git a/src/designer/src/src.pro b/src/designer/src/src.pro |
32 | index e02ca8e..49527c5 100644 | 33 | index e02ca8e..49527c5 100644 |
33 | --- a/src/designer/src/src.pro | 34 | --- a/src/designer/src/src.pro |
@@ -74,7 +75,7 @@ index 3a70580..a977878 100644 | |||
74 | qtNomakeTools( \ | 75 | qtNomakeTools( \ |
75 | linguist \ | 76 | linguist \ |
76 | diff --git a/src/src.pro b/src/src.pro | 77 | diff --git a/src/src.pro b/src/src.pro |
77 | index a486d65..393eac2 100644 | 78 | index 722b32e..9453152 100644 |
78 | --- a/src/src.pro | 79 | --- a/src/src.pro |
79 | +++ b/src/src.pro | 80 | +++ b/src/src.pro |
80 | @@ -4,10 +4,12 @@ qtHaveModule(widgets) { | 81 | @@ -4,10 +4,12 @@ qtHaveModule(widgets) { |
@@ -82,7 +83,7 @@ index a486d65..393eac2 100644 | |||
82 | message("Some graphics-related tools are unavailable without PNG support") | 83 | message("Some graphics-related tools are unavailable without PNG support") |
83 | } else { | 84 | } else { |
84 | - SUBDIRS = assistant \ | 85 | - SUBDIRS = assistant \ |
85 | + !linguistonly { | 86 | + !linguistonly { |
86 | + SUBDIRS = assistant \ | 87 | + SUBDIRS = assistant \ |
87 | pixeltool \ | 88 | pixeltool \ |
88 | - qtestlib \ | 89 | - qtestlib \ |
@@ -110,14 +111,14 @@ index a486d65..393eac2 100644 | |||
110 | +!linguistonly:qtHaveModule(dbus): SUBDIRS += qdbus | 111 | +!linguistonly:qtHaveModule(dbus): SUBDIRS += qdbus |
111 | 112 | ||
112 | win32|winrt:SUBDIRS += windeployqt | 113 | win32|winrt:SUBDIRS += windeployqt |
113 | winrt:SUBDIRS += winrtrunner qtd3dservice | 114 | winrt:SUBDIRS += winrtrunner |
114 | -qtHaveModule(gui):!android:!ios:!qnx:!wince*:!winrt*:SUBDIRS += qtdiag | 115 | -qtHaveModule(gui):!android:!ios:!qnx:!wince*:!winrt*:SUBDIRS += qtdiag |
115 | +!linguistonly:qtHaveModule(gui):!android:!ios:!qnx:!wince*:!winrt*:SUBDIRS += qtdiag | 116 | +!linguistonly:qtHaveModule(gui):!android:!ios:!qnx:!wince*:!winrt*:SUBDIRS += qtdiag |
116 | 117 | ||
117 | qtNomakeTools( \ | 118 | qtNomakeTools( \ |
118 | pixeltool \ | 119 | pixeltool \ |
119 | diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro | 120 | diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro |
120 | index c3acfe3..b48e711 100644 | 121 | index df240e3..27ee687 100644 |
121 | --- a/tests/auto/auto.pro | 122 | --- a/tests/auto/auto.pro |
122 | +++ b/tests/auto/auto.pro | 123 | +++ b/tests/auto/auto.pro |
123 | @@ -1,15 +1,17 @@ | 124 | @@ -1,15 +1,17 @@ |
@@ -143,12 +144,12 @@ index c3acfe3..b48e711 100644 | |||
143 | + qhelpindexmodel \ | 144 | + qhelpindexmodel \ |
144 | + qhelpprojectdata \ | 145 | + qhelpprojectdata \ |
145 | + cmake \ | 146 | + cmake \ |
146 | + installed_cmake \ | 147 | + installed_cmake |
147 | + qtdiag | 148 | + qtdiag |
148 | +} | 149 | +} |
149 | 150 | ||
150 | installed_cmake.depends = cmake | 151 | installed_cmake.depends = cmake |
151 | 152 | ||
152 | -- | 153 | -- |
153 | 2.0.0 | 154 | 2.1.1 |
154 | 155 | ||
diff --git a/recipes-qt/qt5/qttools-git/0002-assistant-help-fix-linking-of-dependent-libraries.patch b/recipes-qt/qt5/qttools-git/0002-assistant-help-fix-linking-of-dependent-libraries.patch index eaf46945..13857911 100644 --- a/recipes-qt/qt5/qttools-git/0002-assistant-help-fix-linking-of-dependent-libraries.patch +++ b/recipes-qt/qt5/qttools-git/0002-assistant-help-fix-linking-of-dependent-libraries.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From f375385c4795e3cd7df7aca2a4c769597164aaa8 Mon Sep 17 00:00:00 2001 | 1 | From ac277dcb43d53ce6d87c58f4afef295fe44a49ea Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> |
3 | Date: Fri, 17 Jan 2014 14:33:19 +0100 | 3 | Date: Fri, 17 Jan 2014 14:33:19 +0100 |
4 | Subject: [PATCH 2/2] assistant/help: fix linking of dependent libraries | 4 | Subject: [PATCH 2/3] assistant/help: fix linking of dependent libraries |
5 | MIME-Version: 1.0 | 5 | MIME-Version: 1.0 |
6 | Content-Type: text/plain; charset=UTF-8 | 6 | Content-Type: text/plain; charset=UTF-8 |
7 | Content-Transfer-Encoding: 8bit | 7 | Content-Transfer-Encoding: 8bit |
@@ -28,5 +28,5 @@ index 168d23d..a9c3b59 100644 | |||
28 | + | 28 | + |
29 | +LIBS += -lQt5CLucene | 29 | +LIBS += -lQt5CLucene |
30 | -- | 30 | -- |
31 | 2.0.0 | 31 | 2.1.1 |
32 | 32 | ||
diff --git a/recipes-qt/qt5/qttools-git/0003-add-noqtwebkit-configuration.patch b/recipes-qt/qt5/qttools-git/0003-add-noqtwebkit-configuration.patch index fa3ac1a4..ba96f5a8 100644 --- a/recipes-qt/qt5/qttools-git/0003-add-noqtwebkit-configuration.patch +++ b/recipes-qt/qt5/qttools-git/0003-add-noqtwebkit-configuration.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 6bb257d69ba7ac93b2b11aae35e0a523785d94ad Mon Sep 17 00:00:00 2001 | 1 | From b50a6739b3d38f06901e7812864e3f7122f3d0c8 Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> |
3 | Date: Wed, 4 Jun 2014 11:28:16 +0200 | 3 | Date: Wed, 4 Jun 2014 11:28:16 +0200 |
4 | Subject: [PATCH 3/3] add noqtwebkit configuration | 4 | Subject: [PATCH 3/3] add noqtwebkit configuration |
@@ -47,5 +47,5 @@ index 500a153..b60fa2d 100644 | |||
47 | win32: qtHaveModule(axcontainer): SUBDIRS += activeqt | 47 | win32: qtHaveModule(axcontainer): SUBDIRS += activeqt |
48 | qtHaveModule(quickwidgets): SUBDIRS += qquickwidget | 48 | qtHaveModule(quickwidgets): SUBDIRS += qquickwidget |
49 | -- | 49 | -- |
50 | 2.0.4 | 50 | 2.1.1 |
51 | 51 | ||