| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.117 2012/02/09 22:07:34 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.139 2012/11/12 09:28:53 pesa Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Qt herd <qt@gentoo.org> |
7 | # Qt herd <qt@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
8 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # This eclass contains various functions that are used when building Qt4. |
10 | # This eclass contains various functions that are used when building Qt4. |
| 11 | |
11 | |
|
|
12 | case ${EAPI} in |
|
|
13 | 3|4|5) : ;; |
|
|
14 | *) die "qt4-build.eclass: unsupported EAPI=${EAPI:-0}" ;; |
|
|
15 | esac |
|
|
16 | |
| 12 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
17 | inherit eutils flag-o-matic multilib toolchain-funcs versionator |
|
|
18 | |
|
|
19 | if [[ ${PV} == *9999* ]]; then |
|
|
20 | QT4_BUILD_TYPE="live" |
|
|
21 | inherit git-2 |
|
|
22 | else |
|
|
23 | QT4_BUILD_TYPE="release" |
|
|
24 | fi |
|
|
25 | |
|
|
26 | HOMEPAGE="http://qt-project.org/ http://qt.digia.com/" |
|
|
27 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 13 | |
28 | |
| 14 | MY_PV=${PV/_/-} |
29 | MY_PV=${PV/_/-} |
| 15 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
30 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 16 | |
31 | |
| 17 | HOMEPAGE="http://qt.nokia.com/ http://qt-project.org/" |
32 | case ${QT4_BUILD_TYPE} in |
|
|
33 | live) |
|
|
34 | EGIT_REPO_URI="git://gitorious.org/qt/qt.git |
|
|
35 | https://git.gitorious.org/qt/qt.git" |
|
|
36 | EGIT_BRANCH=${PV%.9999} |
|
|
37 | ;; |
|
|
38 | release) |
|
|
39 | if version_is_at_least 4.8.1; then |
|
|
40 | SRC_URI="http://releases.qt-project.org/qt4/source/${MY_P}.tar.gz" |
|
|
41 | else |
| 18 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
42 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
| 19 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
43 | fi |
|
|
44 | ;; |
|
|
45 | esac |
| 20 | |
46 | |
| 21 | IUSE="aqua debug pch" |
47 | IUSE="aqua debug pch" |
| 22 | |
|
|
| 23 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
48 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && IUSE+=" +exceptions" |
| 24 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
| 25 | IUSE+=" +exceptions" |
|
|
| 26 | |
|
|
| 27 | if version_is_at_least 4.7.99999999; then |
49 | if version_is_at_least 4.8; then |
| 28 | IUSE+=" c++0x qpa" |
50 | [[ ${CATEGORY}/${PN} != x11-libs/qt-webkit ]] && IUSE+=" c++0x" |
|
|
51 | version_is_at_least 4.8.3 || IUSE+=" qpa" |
| 29 | fi |
52 | fi |
| 30 | |
53 | |
| 31 | DEPEND="dev-util/pkgconfig" |
54 | DEPEND="virtual/pkgconfig" |
|
|
55 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
|
|
56 | DEPEND+=" dev-lang/perl" |
|
|
57 | fi |
|
|
58 | |
| 32 | RDEPEND=" |
59 | RDEPEND=" |
| 33 | !<x11-libs/qt-assistant-${PV} |
60 | !<x11-libs/qt-assistant-${PV}:4 |
| 34 | !>x11-libs/qt-assistant-${PV}-r9999 |
61 | !>x11-libs/qt-assistant-${PV}-r9999:4 |
|
|
62 | !<x11-libs/qt-bearer-${PV}:4 |
|
|
63 | !>x11-libs/qt-bearer-${PV}-r9999:4 |
| 35 | !<x11-libs/qt-core-${PV} |
64 | !<x11-libs/qt-core-${PV}:4 |
| 36 | !>x11-libs/qt-core-${PV}-r9999 |
65 | !>x11-libs/qt-core-${PV}-r9999:4 |
| 37 | !<x11-libs/qt-dbus-${PV} |
66 | !<x11-libs/qt-dbus-${PV}:4 |
| 38 | !>x11-libs/qt-dbus-${PV}-r9999 |
67 | !>x11-libs/qt-dbus-${PV}-r9999:4 |
| 39 | !<x11-libs/qt-declarative-${PV} |
68 | !<x11-libs/qt-declarative-${PV}:4 |
| 40 | !>x11-libs/qt-declarative-${PV}-r9999 |
69 | !>x11-libs/qt-declarative-${PV}-r9999:4 |
| 41 | !<x11-libs/qt-demo-${PV} |
70 | !<x11-libs/qt-demo-${PV}:4 |
| 42 | !>x11-libs/qt-demo-${PV}-r9999 |
71 | !>x11-libs/qt-demo-${PV}-r9999:4 |
| 43 | !<x11-libs/qt-gui-${PV} |
72 | !<x11-libs/qt-gui-${PV}:4 |
| 44 | !>x11-libs/qt-gui-${PV}-r9999 |
73 | !>x11-libs/qt-gui-${PV}-r9999:4 |
| 45 | !<x11-libs/qt-multimedia-${PV} |
74 | !<x11-libs/qt-multimedia-${PV}:4 |
| 46 | !>x11-libs/qt-multimedia-${PV}-r9999 |
75 | !>x11-libs/qt-multimedia-${PV}-r9999:4 |
| 47 | !<x11-libs/qt-opengl-${PV} |
76 | !<x11-libs/qt-opengl-${PV}:4 |
| 48 | !>x11-libs/qt-opengl-${PV}-r9999 |
77 | !>x11-libs/qt-opengl-${PV}-r9999:4 |
|
|
78 | !<x11-libs/qt-openvg-${PV}:4 |
|
|
79 | !>x11-libs/qt-openvg-${PV}-r9999:4 |
| 49 | !<x11-libs/qt-phonon-${PV} |
80 | !<x11-libs/qt-phonon-${PV}:4 |
| 50 | !>x11-libs/qt-phonon-${PV}-r9999 |
81 | !>x11-libs/qt-phonon-${PV}-r9999:4 |
| 51 | !<x11-libs/qt-qt3support-${PV} |
82 | !<x11-libs/qt-qt3support-${PV}:4 |
| 52 | !>x11-libs/qt-qt3support-${PV}-r9999 |
83 | !>x11-libs/qt-qt3support-${PV}-r9999:4 |
| 53 | !<x11-libs/qt-script-${PV} |
84 | !<x11-libs/qt-script-${PV}:4 |
| 54 | !>x11-libs/qt-script-${PV}-r9999 |
85 | !>x11-libs/qt-script-${PV}-r9999:4 |
| 55 | !<x11-libs/qt-sql-${PV} |
86 | !<x11-libs/qt-sql-${PV}:4 |
| 56 | !>x11-libs/qt-sql-${PV}-r9999 |
87 | !>x11-libs/qt-sql-${PV}-r9999:4 |
| 57 | !<x11-libs/qt-svg-${PV} |
88 | !<x11-libs/qt-svg-${PV}:4 |
| 58 | !>x11-libs/qt-svg-${PV}-r9999 |
89 | !>x11-libs/qt-svg-${PV}-r9999:4 |
| 59 | !<x11-libs/qt-test-${PV} |
90 | !<x11-libs/qt-test-${PV}:4 |
| 60 | !>x11-libs/qt-test-${PV}-r9999 |
91 | !>x11-libs/qt-test-${PV}-r9999:4 |
| 61 | !<x11-libs/qt-webkit-${PV} |
92 | !<x11-libs/qt-webkit-${PV}:4 |
| 62 | !>x11-libs/qt-webkit-${PV}-r9999 |
93 | !>x11-libs/qt-webkit-${PV}-r9999:4 |
| 63 | !<x11-libs/qt-xmlpatterns-${PV} |
94 | !<x11-libs/qt-xmlpatterns-${PV}:4 |
| 64 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
95 | !>x11-libs/qt-xmlpatterns-${PV}-r9999:4 |
| 65 | " |
96 | " |
| 66 | |
97 | |
| 67 | S=${WORKDIR}/${MY_P} |
98 | S=${WORKDIR}/${MY_P} |
| 68 | |
99 | |
| 69 | # @FUNCTION: qt4-build_pkg_setup |
100 | # @FUNCTION: qt4-build_pkg_setup |
| 70 | # @DESCRIPTION: |
101 | # @DESCRIPTION: |
| 71 | # Sets up PATH and LD_LIBRARY_PATH. |
102 | # Sets up PATH and LD_LIBRARY_PATH. |
| 72 | qt4-build_pkg_setup() { |
103 | qt4-build_pkg_setup() { |
| 73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
|
|
| 74 | |
|
|
| 75 | # Protect users by not allowing downgrades between releases |
104 | # Protect users by not allowing downgrades between releases. |
| 76 | # Downgrading revisions within the same release should be allowed |
105 | # Downgrading revisions within the same release should be allowed. |
| 77 | if has_version '>'${CATEGORY}/${P}-r9999; then |
106 | if has_version ">${CATEGORY}/${P}-r9999:4"; then |
| 78 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
107 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 79 | eerror "Sanity check to keep you from breaking your system:" |
108 | eerror " *** Sanity check to keep you from breaking your system ***" |
| 80 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
109 | eerror "Downgrading Qt is completely unsupported and will break your system!" |
| 81 | die "aborting to save your system" |
110 | die "aborting to save your system" |
| 82 | else |
111 | else |
| 83 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
112 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 84 | fi |
113 | fi |
| 85 | fi |
|
|
| 86 | |
|
|
| 87 | if [[ ${PN} == "qt-webkit" ]]; then |
|
|
| 88 | eshopts_push -s extglob |
|
|
| 89 | if is-flagq '-g?(gdb)?([1-9])'; then |
|
|
| 90 | echo |
|
|
| 91 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
|
|
| 92 | ewarn "You may experience really long compilation times and/or increased memory usage." |
|
|
| 93 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
|
|
| 94 | ewarn "For more info check out bug #307861" |
|
|
| 95 | echo |
|
|
| 96 | fi |
|
|
| 97 | eshopts_pop |
|
|
| 98 | fi |
114 | fi |
| 99 | |
115 | |
| 100 | PATH="${S}/bin${PATH:+:}${PATH}" |
116 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 101 | if [[ ${CHOST} != *-darwin* ]]; then |
117 | if [[ ${CHOST} != *-darwin* ]]; then |
| 102 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
118 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| … | |
… | |
| 107 | # avoid extract failure. |
123 | # avoid extract failure. |
| 108 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
124 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
| 109 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
125 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
| 110 | ${QT4_EXTRACT_DIRECTORIES}" |
126 | ${QT4_EXTRACT_DIRECTORIES}" |
| 111 | fi |
127 | fi |
| 112 | |
|
|
| 113 | # Make sure ebuilds use the required EAPI |
|
|
| 114 | if [[ ${EAPI} != [234] ]]; then |
|
|
| 115 | eerror "The qt4-build eclass requires EAPI 2,3 or 4 but this ebuild is using" |
|
|
| 116 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
|
|
| 117 | eerror "fixed. Using qt4-build eclass without EAPI 2,3 or 4 will fail." |
|
|
| 118 | die "qt4-build eclass requires EAPI 2,3 or 4" |
|
|
| 119 | fi |
|
|
| 120 | |
|
|
| 121 | if ! version_is_at_least 4.1 $(gcc-version); then |
|
|
| 122 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
| 123 | fi |
|
|
| 124 | } |
128 | } |
|
|
129 | |
|
|
130 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
131 | # @DEFAULT_UNSET |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # Space-separated list including the directories that will be extracted from |
|
|
134 | # Qt tarball. |
| 125 | |
135 | |
| 126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
136 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
137 | # @DEFAULT_UNSET |
| 127 | # @DESCRIPTION: |
138 | # @DESCRIPTION: |
| 128 | # Arguments for build_target_directories. Takes the directories in which the |
139 | # Arguments for build_target_directories. Takes the directories in which the |
| 129 | # code should be compiled. This is a space-separated list. |
140 | # code should be compiled. This is a space-separated list. |
| 130 | |
|
|
| 131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
| 132 | # @DESCRIPTION: |
|
|
| 133 | # Space-separated list including the directories that will be extracted from |
|
|
| 134 | # Qt tarball. |
|
|
| 135 | |
141 | |
| 136 | # @FUNCTION: qt4-build_src_unpack |
142 | # @FUNCTION: qt4-build_src_unpack |
| 137 | # @DESCRIPTION: |
143 | # @DESCRIPTION: |
| 138 | # Unpacks the sources. |
144 | # Unpacks the sources. |
| 139 | qt4-build_src_unpack() { |
145 | qt4-build_src_unpack() { |
| 140 | setqtenv |
146 | setqtenv |
| 141 | |
147 | |
|
|
148 | if ! version_is_at_least 4.1 $(gcc-version); then |
|
|
149 | ewarn "Using a GCC version lower than 4.1 is not supported." |
|
|
150 | fi |
|
|
151 | |
|
|
152 | if [[ ${PN} == qt-webkit ]]; then |
|
|
153 | eshopts_push -s extglob |
|
|
154 | if is-flagq '-g?(gdb)?([1-9])'; then |
|
|
155 | echo |
|
|
156 | ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." |
|
|
157 | ewarn "You may experience really long compilation times and/or increased memory usage." |
|
|
158 | ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." |
|
|
159 | ewarn "For more info check out https://bugs.gentoo.org/307861" |
|
|
160 | echo |
|
|
161 | fi |
|
|
162 | eshopts_pop |
|
|
163 | fi |
|
|
164 | |
|
|
165 | case ${QT4_BUILD_TYPE} in |
|
|
166 | live) |
|
|
167 | git-2_src_unpack |
|
|
168 | ;; |
|
|
169 | release) |
| 142 | local tarball="${MY_P}.tar.gz" target= targets= |
170 | local tarball="${MY_P}.tar.gz" target= targets= |
| 143 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
171 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 144 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
172 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
| 145 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
173 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
| 146 | do |
174 | do |
| 147 | targets+="${MY_P}/${target} " |
175 | targets+="${MY_P}/${target} " |
| 148 | done |
176 | done |
| 149 | |
177 | |
| 150 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
178 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
| 151 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
179 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
| 152 | eend $? || die "failed to unpack" |
180 | eend $? || die "failed to unpack" |
|
|
181 | ;; |
|
|
182 | esac |
| 153 | } |
183 | } |
| 154 | |
184 | |
| 155 | # @ECLASS-VARIABLE: PATCHES |
185 | # @ECLASS-VARIABLE: PATCHES |
| 156 | # @DEFAULT_UNSET |
186 | # @DEFAULT_UNSET |
| 157 | # @DESCRIPTION: |
187 | # @DESCRIPTION: |
| 158 | # PATCHES array variable containing all various patches to be applied. |
188 | # PATCHES array variable containing all various patches to be applied. |
| 159 | # This variable is expected to be defined in global scope of ebuild. |
189 | # This variable is expected to be defined in global scope of ebuild. |
| 160 | # Make sure to specify the full path. This variable is utilised in |
190 | # Make sure to specify the full path. This variable is utilised in |
| 161 | # src_unpack/src_prepare phase, based on EAPI. |
191 | # src_prepare() phase. |
| 162 | # |
192 | # |
| 163 | # @CODE |
193 | # @CODE |
| 164 | # PATCHES=( "${FILESDIR}/mypatch.patch" |
194 | # PATCHES=( "${FILESDIR}/mypatch.patch" |
| 165 | # "${FILESDIR}/patches_folder/" ) |
195 | # "${FILESDIR}/patches_folder/" ) |
| 166 | # @CODE |
196 | # @CODE |
| … | |
… | |
| 169 | # @DESCRIPTION: |
199 | # @DESCRIPTION: |
| 170 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
200 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 171 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
201 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
| 172 | qt4-build_src_prepare() { |
202 | qt4-build_src_prepare() { |
| 173 | setqtenv |
203 | setqtenv |
| 174 | cd "${S}" |
|
|
| 175 | |
204 | |
| 176 | if version_is_at_least "4.7"; then |
205 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
|
|
206 | QTDIR="." ./bin/syncqt || die "syncqt failed" |
|
|
207 | fi |
|
|
208 | |
| 177 | # fix libX11 dependency on non X packages |
209 | # avoid X11 dependency in non-gui packages |
| 178 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
210 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 179 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
211 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
| 180 | |
|
|
| 181 | qt_assistant_cleanup |
|
|
| 182 | fi |
|
|
| 183 | |
212 | |
| 184 | if use aqua; then |
213 | if use aqua; then |
| 185 | # provide a proper macx-g++-64 |
214 | # provide a proper macx-g++-64 |
| 186 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
215 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 187 | |
216 | |
| … | |
… | |
| 194 | skip_qmake_build |
223 | skip_qmake_build |
| 195 | skip_project_generation |
224 | skip_project_generation |
| 196 | symlink_binaries_to_buildtree |
225 | symlink_binaries_to_buildtree |
| 197 | fi |
226 | fi |
| 198 | |
227 | |
| 199 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
228 | if [[ ${CHOST} == *86*-apple-darwin* ]]; then |
| 200 | # qmake bus errors with -O2 but -O3 works |
229 | # qmake bus errors with -O2 or -O3 but -O1 works |
|
|
230 | # Bug 373061 |
| 201 | replace-flags -O2 -O3 |
231 | replace-flags -O[23] -O1 |
| 202 | fi |
232 | fi |
| 203 | |
233 | |
| 204 | # Bug 178652 |
234 | # Bug 178652 |
| 205 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
235 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 206 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
236 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 207 | append-flags -fno-gcse |
237 | append-flags -fno-gcse |
| 208 | fi |
238 | fi |
| 209 | |
239 | |
| 210 | if use_if_iuse c++0x; then |
240 | if use_if_iuse c++0x; then |
| 211 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
|
|
| 212 | ewarn "this is an official standard, some of the reverse dependencies" |
|
|
| 213 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
|
|
| 214 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
|
|
| 215 | ewarn "disabled." |
|
|
| 216 | append-flags -std=c++0x |
241 | append-cxxflags -std=c++0x |
| 217 | fi |
242 | fi |
| 218 | |
243 | |
| 219 | # Unsupported old gcc versions - hardened needs this :( |
244 | # Unsupported old gcc versions - hardened needs this :( |
| 220 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
245 | if [[ $(gcc-major-version) -lt 4 ]]; then |
| 221 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
246 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 222 | append-cxxflags -fno-stack-protector |
247 | append-cxxflags -fno-stack-protector |
| 223 | # Bug 253127 |
248 | # Bug 253127 |
| 224 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
249 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 225 | -i mkspecs/common/g++.conf || die |
250 | -i mkspecs/common/g++.conf || die |
| … | |
… | |
| 235 | sed -e "/^SYSTEM_VARIABLES=/i \ |
260 | sed -e "/^SYSTEM_VARIABLES=/i \ |
| 236 | CC='$(tc-getCC)'\n\ |
261 | CC='$(tc-getCC)'\n\ |
| 237 | CXX='$(tc-getCXX)'\n\ |
262 | CXX='$(tc-getCXX)'\n\ |
| 238 | CFLAGS='${CFLAGS}'\n\ |
263 | CFLAGS='${CFLAGS}'\n\ |
| 239 | CXXFLAGS='${CXXFLAGS}'\n\ |
264 | CXXFLAGS='${CXXFLAGS}'\n\ |
| 240 | LDFLAGS='${LDFLAGS}'\n" \ |
265 | LDFLAGS='${LDFLAGS}'\n\ |
|
|
266 | QMakeVar set QMAKE_CFLAGS_RELEASE\n\ |
|
|
267 | QMakeVar set QMAKE_CFLAGS_DEBUG\n\ |
|
|
268 | QMakeVar set QMAKE_CXXFLAGS_RELEASE\n\ |
|
|
269 | QMakeVar set QMAKE_CXXFLAGS_DEBUG\n\ |
|
|
270 | QMakeVar set QMAKE_LFLAGS_RELEASE\n\ |
|
|
271 | QMakeVar set QMAKE_LFLAGS_DEBUG\n"\ |
| 241 | -i configure \ |
272 | -i configure \ |
| 242 | || die "sed SYSTEM_VARIABLES failed" |
273 | || die "sed SYSTEM_VARIABLES failed" |
| 243 | |
274 | |
| 244 | # Respect CC, CXX, LINK and *FLAGS in config.tests |
275 | # Respect CC, CXX, LINK and *FLAGS in config.tests |
| 245 | find config.tests/unix -name '*.test' -type f -print0 | xargs -0 \ |
276 | find config.tests/unix -name '*.test' -type f -print0 | xargs -0 \ |
| 246 | sed -i -e "/bin\/qmake/ s: \"QT_BUILD_TREE=: \ |
277 | sed -i -e "/bin\/qmake/ s: \"QT_BUILD_TREE=: \ |
| 247 | 'QMAKE_CC=$(tc-getCC)' 'QMAKE_CXX=$(tc-getCXX)' 'QMAKE_LINK=$(tc-getCXX)' \ |
278 | 'QMAKE_CC=$(tc-getCC)' 'QMAKE_CXX=$(tc-getCXX)' 'QMAKE_LINK=$(tc-getCXX)' \ |
| 248 | 'QMAKE_CFLAGS+=${CFLAGS}' 'QMAKE_CXXFLAGS+=${CXXFLAGS}' 'QMAKE_LFLAGS+=${LDFLAGS}'&:" \ |
279 | 'QMAKE_CFLAGS+=${CFLAGS}' 'QMAKE_CXXFLAGS+=${CXXFLAGS}' 'QMAKE_LFLAGS+=${LDFLAGS}'&:" \ |
| 249 | || die "sed config.tests failed" |
280 | || die "sed config.tests failed" |
| 250 | |
281 | |
|
|
282 | if ! version_is_at_least 4.8; then |
| 251 | # Strip predefined CFLAGS from mkspecs (bug 312689) |
283 | # Strip predefined CFLAGS from mkspecs (bugs 312689 and 352778) |
| 252 | sed -i -e '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf || die |
284 | sed -i -e '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf || die |
|
|
285 | fi |
| 253 | |
286 | |
| 254 | # Bug 172219 |
287 | # Bug 172219 |
| 255 | sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
288 | sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 256 | |
289 | |
| 257 | if [[ ${CHOST} == *-darwin* ]]; then |
290 | if [[ ${CHOST} == *-darwin* ]]; then |
| 258 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
291 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 259 | # crippled (by design) :/ |
292 | # crippled (by design) :/ |
|
|
293 | local mac_gpp_conf= |
|
|
294 | if [[ -f mkspecs/common/mac-g++.conf ]]; then |
|
|
295 | # qt < 4.8 has mac-g++.conf |
|
|
296 | mac_gpp_conf="mkspecs/common/mac-g++.conf" |
|
|
297 | elif [[ -f mkspecs/common/g++-macx.conf ]]; then |
|
|
298 | # qt >= 4.8 has g++-macx.conf |
|
|
299 | mac_gpp_conf="mkspecs/common/g++-macx.conf" |
|
|
300 | else |
|
|
301 | die "no known conf file for mac found" |
|
|
302 | fi |
| 260 | sed \ |
303 | sed \ |
| 261 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
304 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 262 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
305 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 263 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
306 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| 264 | -e "s:-arch\s\w*::g" \ |
307 | -e "s:-arch\s\w*::g" \ |
| 265 | -i mkspecs/common/mac-g++.conf \ |
308 | -i ${mac_gpp_conf} \ |
| 266 | || die "sed mkspecs/common/mac-g++.conf failed" |
309 | || die "sed ${mac_gpp_conf} failed" |
| 267 | |
310 | |
| 268 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
311 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
| 269 | # fix arch handling (automagically duplicates our -arch arg and breaks |
312 | # fix arch handling (automagically duplicates our -arch arg and breaks |
| 270 | # pch). Additionally disable Xarch support. |
313 | # pch). Additionally disable Xarch support. |
|
|
314 | local mac_gcc_confs="${mac_gpp_conf}" |
|
|
315 | if [[ -f mkspecs/common/gcc-base-macx.conf ]]; then |
|
|
316 | mac_gcc_confs+=" mkspecs/common/gcc-base-macx.conf" |
|
|
317 | fi |
| 271 | sed \ |
318 | sed \ |
| 272 | -e "s:-arch i386::" \ |
319 | -e "s:-arch i386::" \ |
| 273 | -e "s:-arch ppc::" \ |
320 | -e "s:-arch ppc::" \ |
| 274 | -e "s:-arch x86_64::" \ |
321 | -e "s:-arch x86_64::" \ |
| 275 | -e "s:-arch ppc64::" \ |
322 | -e "s:-arch ppc64::" \ |
| 276 | -e "s:-arch \$i::" \ |
323 | -e "s:-arch \$i::" \ |
| 277 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
324 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 278 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
325 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 279 | -e "s:-Xarch_x86_64::g" \ |
326 | -e "s:-Xarch_x86_64::g" \ |
| 280 | -e "s:-Xarch_ppc64::g" \ |
327 | -e "s:-Xarch_ppc64::g" \ |
| 281 | -i configure mkspecs/common/mac-g++.conf \ |
328 | -i configure ${mac_gcc_confs} \ |
| 282 | || die "sed -arch/-Xarch failed" |
329 | || die "sed -arch/-Xarch failed" |
| 283 | |
330 | |
| 284 | # On Snow Leopard don't fall back to 10.5 deployment target. |
331 | # On Snow Leopard don't fall back to 10.5 deployment target. |
| 285 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
332 | if [[ ${CHOST} == *-apple-darwin10 ]]; then |
| 286 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
333 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
| 287 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
334 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
| 288 | -i configure mkspecs/common/mac-g++.conf \ |
335 | -i configure ${mac_gpp_conf} \ |
| 289 | || die "sed deployment target failed" |
336 | || die "sed deployment target failed" |
| 290 | fi |
337 | fi |
| 291 | fi |
338 | fi |
| 292 | |
339 | |
| 293 | # this one is needed for all systems with a separate -liconv, apart from |
340 | # this one is needed for all systems with a separate -liconv, apart from |
| 294 | # Darwin, for which the sources already cater for -liconv |
341 | # Darwin, for which the sources already cater for -liconv |
| 295 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
342 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]]; then |
| 296 | sed -e 's|mac:\(LIBS += -liconv\)|\1|g' \ |
343 | sed -e 's|mac:\(LIBS += -liconv\)|\1|g' \ |
| 297 | -i config.tests/unix/iconv/iconv.pro \ |
344 | -i config.tests/unix/iconv/iconv.pro \ |
| 298 | || die "sed iconv.pro failed" |
345 | || die "sed iconv.pro failed" |
| 299 | fi |
346 | fi |
| 300 | |
347 | |
| … | |
… | |
| 305 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
352 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 306 | # do not flirt with non-Prefix stuff, we're quite possessive |
353 | # do not flirt with non-Prefix stuff, we're quite possessive |
| 307 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
354 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 308 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
355 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 309 | |
356 | |
| 310 | base_src_prepare |
357 | # apply patches |
|
|
358 | [[ -n ${PATCHES[@]} ]] && epatch "${PATCHES[@]}" |
|
|
359 | epatch_user |
| 311 | } |
360 | } |
| 312 | |
361 | |
| 313 | # @FUNCTION: qt4-build_src_configure |
362 | # @FUNCTION: qt4-build_src_configure |
| 314 | # @DESCRIPTION: |
363 | # @DESCRIPTION: |
| 315 | # Default configure phase |
364 | # Default configure phase |
| 316 | qt4-build_src_configure() { |
365 | qt4-build_src_configure() { |
| 317 | setqtenv |
366 | setqtenv |
| 318 | myconf="$(standard_configure_options) ${myconf}" |
367 | |
|
|
368 | local conf=" |
|
|
369 | -prefix ${QTPREFIXDIR} |
|
|
370 | -bindir ${QTBINDIR} |
|
|
371 | -libdir ${QTLIBDIR} |
|
|
372 | -docdir ${QTDOCDIR} |
|
|
373 | -headerdir ${QTHEADERDIR} |
|
|
374 | -plugindir ${QTPLUGINDIR} |
|
|
375 | -importdir ${QTIMPORTDIR} |
|
|
376 | -datadir ${QTDATADIR} |
|
|
377 | -translationdir ${QTTRANSDIR} |
|
|
378 | -sysconfdir ${QTSYSCONFDIR} |
|
|
379 | -examplesdir ${QTEXAMPLESDIR} |
|
|
380 | -demosdir ${QTDEMOSDIR} |
|
|
381 | -opensource -confirm-license |
|
|
382 | -shared -fast -largefile -stl -verbose |
|
|
383 | -nomake examples -nomake demos" |
|
|
384 | |
|
|
385 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
|
|
386 | # $(tc-arch). Therefore we convert it to supported values. |
|
|
387 | case "$(tc-arch)" in |
|
|
388 | amd64|x64-*) conf+=" -arch x86_64" ;; |
|
|
389 | ppc-macos) conf+=" -arch ppc" ;; |
|
|
390 | ppc|ppc64|ppc-*) conf+=" -arch powerpc" ;; |
|
|
391 | sparc|sparc-*|sparc64-*) conf+=" -arch sparc" ;; |
|
|
392 | x86-macos) conf+=" -arch x86" ;; |
|
|
393 | x86|x86-*) conf+=" -arch i386" ;; |
|
|
394 | alpha|arm|ia64|mips|s390) conf+=" -arch $(tc-arch)" ;; |
|
|
395 | hppa|sh) conf+=" -arch generic" ;; |
|
|
396 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
|
|
397 | esac |
|
|
398 | |
|
|
399 | conf+=" -platform $(qt_mkspecs_dir)" |
|
|
400 | |
|
|
401 | [[ $(get_libdir) != lib ]] && conf+=" -L${EPREFIX}/usr/$(get_libdir)" |
|
|
402 | |
|
|
403 | # debug/release |
|
|
404 | if use debug; then |
|
|
405 | conf+=" -debug" |
|
|
406 | else |
|
|
407 | conf+=" -release" |
|
|
408 | fi |
|
|
409 | conf+=" -no-separate-debug-info" |
|
|
410 | |
|
|
411 | # exceptions USE flag |
|
|
412 | conf+=" $(in_iuse exceptions && qt_use exceptions || echo -exceptions)" |
|
|
413 | |
|
|
414 | # disable rpath on Qt >= 4.8 (bug 380415) |
|
|
415 | # but leave it enabled on prefix (bug 417169) |
|
|
416 | version_is_at_least 4.8 && use !prefix && conf+=" -no-rpath" |
|
|
417 | |
|
|
418 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
419 | conf+=" $(qt_use pch)" |
|
|
420 | |
|
|
421 | # -reduce-relocations |
|
|
422 | # This flag seems to introduce major breakage to applications, |
|
|
423 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
424 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
425 | # -- Daniel Vergien |
|
|
426 | [[ ${CHOST} != *-solaris* ]] && conf+=" -reduce-relocations" |
| 319 | |
427 | |
| 320 | # this one is needed for all systems with a separate -liconv, apart from |
428 | # this one is needed for all systems with a separate -liconv, apart from |
| 321 | # Darwin, for which the sources already cater for -liconv |
429 | # Darwin, for which the sources already cater for -liconv |
| 322 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
430 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]]; then |
| 323 | myconf+=" -liconv" |
431 | conf+=" -liconv" |
|
|
432 | fi |
| 324 | |
433 | |
| 325 | if use_if_iuse glib; then |
434 | if use_if_iuse glib; then |
| 326 | # use -I, -L and -l from configure |
|
|
| 327 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
435 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
| 328 | # avoid the -pthread argument |
436 | # avoid the -pthread argument |
| 329 | myconf+=" ${glibflags//-pthread}" |
437 | conf+=" ${glibflags//-pthread}" |
| 330 | unset glibflags |
438 | unset glibflags |
| 331 | fi |
439 | fi |
| 332 | |
440 | |
| 333 | if use_if_iuse qpa; then |
441 | if use_if_iuse qpa; then |
| 334 | ewarn |
442 | echo |
| 335 | ewarn "The qpa useflag enables the Qt Platform Abstraction, formely" |
443 | ewarn "The qpa useflag enables the Qt Platform Abstraction, formely" |
| 336 | ewarn "known as Qt Lighthouse. If you are not sure what that is, then" |
444 | ewarn "known as Qt Lighthouse. If you are not sure what that is, then" |
| 337 | ewarn "disable it before reporting any bugs related to this useflag." |
445 | ewarn "disable it before reporting any bugs related to this useflag." |
| 338 | ewarn |
446 | echo |
| 339 | myconf+=" -qpa" |
447 | conf+=" -qpa" |
| 340 | fi |
448 | fi |
| 341 | |
449 | |
| 342 | if use aqua ; then |
450 | if use aqua; then |
| 343 | # On (snow) leopard use the new (frameworked) cocoa code. |
451 | # On (snow) leopard use the new (frameworked) cocoa code. |
| 344 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
452 | if [[ ${CHOST##*-darwin} -ge 9 ]]; then |
| 345 | myconf+=" -cocoa -framework" |
453 | conf+=" -cocoa -framework" |
|
|
454 | # We need the source's headers, not the installed ones. |
|
|
455 | conf+=" -I${S}/include" |
|
|
456 | # Add hint for the framework location. |
|
|
457 | conf+=" -F${QTLIBDIR}" |
| 346 | |
458 | |
| 347 | # We are crazy and build cocoa + qt3support :-) |
459 | # We are crazy and build cocoa + qt3support :-) |
| 348 | if use qt3support; then |
460 | if use qt3support; then |
| 349 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
461 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
| 350 | -i configure || die |
462 | -i configure || die |
| 351 | fi |
463 | fi |
| 352 | |
464 | else |
| 353 | # We need the source's headers, not the installed ones. |
465 | conf+=" -no-framework" |
| 354 | myconf+=" -I${S}/include" |
|
|
| 355 | |
|
|
| 356 | # Add hint for the framework location. |
|
|
| 357 | myconf+=" -F${QTLIBDIR}" |
|
|
| 358 | fi |
466 | fi |
| 359 | else |
467 | else |
| 360 | # freetype2 include dir is non-standard, thus include it on configure |
468 | # freetype2 include dir is non-standard, thus pass it to configure |
| 361 | # use -I from configure |
|
|
| 362 | myconf+=" $(pkg-config --cflags freetype2)" |
469 | conf+=" $(pkg-config --cflags-only-I freetype2)" |
| 363 | fi |
470 | fi |
| 364 | |
471 | |
|
|
472 | conf+=" ${myconf}" |
|
|
473 | myconf= |
|
|
474 | |
| 365 | echo ./configure ${myconf} |
475 | echo ./configure ${conf} |
| 366 | ./configure ${myconf} || die "./configure failed" |
476 | ./configure ${conf} || die "./configure failed" |
| 367 | myconf="" |
|
|
| 368 | |
477 | |
| 369 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
478 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 370 | } |
479 | } |
| 371 | |
480 | |
| 372 | # @FUNCTION: qt4-build_src_compile |
481 | # @FUNCTION: qt4-build_src_compile |
| … | |
… | |
| 380 | |
489 | |
| 381 | # @FUNCTION: qt4-build_src_test |
490 | # @FUNCTION: qt4-build_src_test |
| 382 | # @DESCRIPTION: |
491 | # @DESCRIPTION: |
| 383 | # Runs tests only in target directories. |
492 | # Runs tests only in target directories. |
| 384 | qt4-build_src_test() { |
493 | qt4-build_src_test() { |
|
|
494 | # QtMultimedia does not have any test suite (bug #332299) |
|
|
495 | [[ ${PN} == qt-multimedia ]] && return |
|
|
496 | |
| 385 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
497 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
| 386 | emake -j1 check -C ${dir} |
498 | emake -j1 check -C ${dir} |
| 387 | done |
499 | done |
| 388 | } |
500 | } |
| 389 | |
501 | |
| 390 | # @FUNCTION: fix_includes |
502 | # @FUNCTION: fix_includes |
| 391 | # @DESCRIPTION: |
503 | # @DESCRIPTION: |
| 392 | # For MacOS X we need to add some symlinks when frameworks are |
504 | # For MacOS X we need to add some symlinks when frameworks are |
| 393 | # being used, to avoid complications with some more or less stupid packages. |
505 | # being used, to avoid complications with some more or less stupid packages. |
| 394 | fix_includes() { |
506 | fix_includes() { |
| 395 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
507 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]]; then |
|
|
508 | local frw dest f h rdir |
| 396 | # Some packages tend to include <Qt/...> |
509 | # Some packages tend to include <Qt/...> |
| 397 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
510 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 398 | |
511 | |
| 399 | # Fake normal headers when frameworks are installed... eases life later on |
512 | # Fake normal headers when frameworks are installed... eases life later |
| 400 | local dest f h |
513 | # on, make sure we use relative links though, as some ebuilds assume |
|
|
514 | # these dirs exist in src_install to add additional files |
|
|
515 | f=${QTHEADERDIR} |
|
|
516 | h=${QTLIBDIR} |
|
|
517 | while [[ -n ${f} && ${f%%/*} == ${h%%/*} ]] ; do |
|
|
518 | f=${f#*/} |
|
|
519 | h=${h#*/} |
|
|
520 | done |
|
|
521 | rdir=${h} |
|
|
522 | f="../" |
|
|
523 | while [[ ${h} == */* ]] ; do |
|
|
524 | f="${f}../" |
|
|
525 | h=${h#*/} |
|
|
526 | done |
|
|
527 | rdir="${f}${rdir}" |
|
|
528 | |
| 401 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
529 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
| 402 | [[ -e "${frw}"/Headers ]] || continue |
530 | [[ -e "${frw}"/Headers ]] || continue |
| 403 | f=$(basename ${frw}) |
531 | f=$(basename ${frw}) |
| 404 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
532 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
| 405 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
533 | dosym "${rdir}"/${f}/Headers "${dest}" |
| 406 | |
534 | |
| 407 | # Link normal headers as well. |
535 | # Link normal headers as well. |
| 408 | for hdr in "${D}/${QTLIBDIR}/${f}"/Headers/*; do |
536 | for hdr in "${D}/${QTLIBDIR}/${f}"/Headers/*; do |
| 409 | h=$(basename ${hdr}) |
537 | h=$(basename ${hdr}) |
| 410 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers/${h} "${QTHEADERDIR#${EPREFIX}}"/Qt/${h} |
538 | dosym "../${rdir}"/${f}/Headers/${h} \ |
|
|
539 | "${QTHEADERDIR#${EPREFIX}}"/Qt/${h} |
| 411 | done |
540 | done |
| 412 | done |
541 | done |
| 413 | fi |
542 | fi |
| 414 | } |
543 | } |
| 415 | |
544 | |
| 416 | # @FUNCTION: qt4-build_src_install |
545 | # @FUNCTION: qt4-build_src_install |
| 417 | # @DESCRIPTION: |
546 | # @DESCRIPTION: |
| 418 | # Perform the actual installation including some library fixes. |
547 | # Perform the actual installation including some library fixes. |
| 419 | qt4-build_src_install() { |
548 | qt4-build_src_install() { |
| 420 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
|
|
| 421 | setqtenv |
549 | setqtenv |
| 422 | |
550 | |
| 423 | install_directories ${QT4_TARGET_DIRECTORIES} |
551 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 424 | install_qconfigs |
552 | install_qconfigs |
| 425 | fix_library_files |
553 | fix_library_files |
| 426 | fix_includes |
554 | fix_includes |
| 427 | |
555 | |
| 428 | # remove .la files since we are building only shared Qt libraries |
556 | # remove .la files since we are building only shared libraries |
| 429 | find "${D}"${QTLIBDIR} -type f -name '*.la' -print0 | xargs -0 rm -f |
557 | prune_libtool_files |
| 430 | } |
558 | } |
| 431 | |
559 | |
| 432 | # @FUNCTION: setqtenv |
560 | # @FUNCTION: setqtenv |
| 433 | # @INTERNAL |
561 | # @INTERNAL |
| 434 | setqtenv() { |
562 | setqtenv() { |
| 435 | # Set up installation directories |
563 | # Set up installation directories |
| 436 | QTPREFIXDIR=${EPREFIX}/usr |
564 | QTPREFIXDIR=${EPREFIX}/usr |
| 437 | QTBINDIR=${EPREFIX}/usr/bin |
565 | QTBINDIR=${QTPREFIXDIR}/bin |
| 438 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
566 | QTLIBDIR=${QTPREFIXDIR}/$(get_libdir)/qt4 |
| 439 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
567 | QTPCDIR=${QTPREFIXDIR}/$(get_libdir)/pkgconfig |
| 440 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
568 | QTDOCDIR=${QTPREFIXDIR}/share/doc/qt-${PV} |
| 441 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
569 | QTHEADERDIR=${QTPREFIXDIR}/include/qt4 |
| 442 | QTPLUGINDIR=${QTLIBDIR}/plugins |
570 | QTPLUGINDIR=${QTLIBDIR}/plugins |
| 443 | QTIMPORTDIR=${QTLIBDIR}/imports |
571 | QTIMPORTDIR=${QTLIBDIR}/imports |
| 444 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
572 | QTDATADIR=${QTPREFIXDIR}/share/qt4 |
| 445 | QTTRANSDIR=${QTDATADIR}/translations |
573 | QTTRANSDIR=${QTDATADIR}/translations |
| 446 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
574 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
| 447 | QTEXAMPLESDIR=${QTDATADIR}/examples |
575 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 448 | QTDEMOSDIR=${QTDATADIR}/demos |
576 | QTDEMOSDIR=${QTDATADIR}/demos |
| 449 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
577 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 450 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
| 451 | |
578 | |
| 452 | PLATFORM=$(qt_mkspecs_dir) |
579 | PLATFORM=$(qt_mkspecs_dir) |
| 453 | |
|
|
| 454 | unset QMAKESPEC |
580 | unset QMAKESPEC |
| 455 | } |
|
|
| 456 | |
581 | |
| 457 | # @FUNCTION: standard_configure_options |
582 | export XDG_CONFIG_HOME="${T}" |
| 458 | # @INTERNAL |
|
|
| 459 | # @DESCRIPTION: |
|
|
| 460 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
| 461 | # debug info is wanted or not. |
|
|
| 462 | standard_configure_options() { |
|
|
| 463 | local myconf="-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
| 464 | -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} |
|
|
| 465 | $(version_is_at_least 4.7 && echo -importdir ${QTIMPORTDIR}) |
|
|
| 466 | -datadir ${QTDATADIR} -translationdir ${QTTRANSDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
| 467 | -examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} |
|
|
| 468 | -opensource -confirm-license -shared -fast -largefile -stl -verbose |
|
|
| 469 | -platform $(qt_mkspecs_dir) -nomake examples -nomake demos" |
|
|
| 470 | |
|
|
| 471 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
|
|
| 472 | |
|
|
| 473 | # debug/release |
|
|
| 474 | if use debug; then |
|
|
| 475 | myconf+=" -debug" |
|
|
| 476 | else |
|
|
| 477 | myconf+=" -release" |
|
|
| 478 | fi |
|
|
| 479 | myconf+=" -no-separate-debug-info" |
|
|
| 480 | |
|
|
| 481 | # exceptions USE flag |
|
|
| 482 | local exceptions="-exceptions" |
|
|
| 483 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
| 484 | myconf+=" ${exceptions}" |
|
|
| 485 | |
|
|
| 486 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
| 487 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
| 488 | |
|
|
| 489 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
| 490 | myconf+=" $(qt_use pch)" |
|
|
| 491 | |
|
|
| 492 | # -reduce-relocations |
|
|
| 493 | # This flag seems to introduce major breakage to applications, |
|
|
| 494 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
| 495 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
| 496 | # -- Daniel Vergien |
|
|
| 497 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
| 498 | |
|
|
| 499 | use aqua && myconf+=" -no-framework" |
|
|
| 500 | |
|
|
| 501 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
|
|
| 502 | # $(tc-arch). Therefore we convert it to supported values. |
|
|
| 503 | case "$(tc-arch)" in |
|
|
| 504 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
|
|
| 505 | ppc-macos) myconf+=" -arch ppc" ;; |
|
|
| 506 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
|
|
| 507 | sparc|sparc-*|sparc64-*) myconf+=" -arch sparc" ;; |
|
|
| 508 | x86-macos) myconf+=" -arch x86" ;; |
|
|
| 509 | x86|x86-*) myconf+=" -arch i386" ;; |
|
|
| 510 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
|
|
| 511 | hppa|sh) myconf+=" -arch generic" ;; |
|
|
| 512 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
|
|
| 513 | esac |
|
|
| 514 | |
|
|
| 515 | echo "${myconf}" |
|
|
| 516 | } |
583 | } |
| 517 | |
584 | |
| 518 | # @FUNCTION: prepare_directories |
585 | # @FUNCTION: prepare_directories |
| 519 | # @USAGE: < directories > |
586 | # @USAGE: < directories > |
| 520 | # @INTERNAL |
587 | # @INTERNAL |
| 521 | # @DESCRIPTION: |
588 | # @DESCRIPTION: |
| 522 | # Generates Makefiles for the given list of directories. |
589 | # Generates Makefiles for the given list of directories. |
| 523 | prepare_directories() { |
590 | prepare_directories() { |
|
|
591 | # avoid running over the maximum argument number, bug #299810 |
|
|
592 | { |
|
|
593 | echo "${S}"/mkspecs/common/*.conf |
|
|
594 | find "${S}" -name '*.pr[io]' |
|
|
595 | } | xargs sed -i \ |
|
|
596 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
|
|
597 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
|
|
598 | || die |
|
|
599 | |
| 524 | for x in "$@"; do |
600 | for x in "$@"; do |
| 525 | pushd "${S}"/${x} >/dev/null || die |
601 | pushd "${S}"/${x} >/dev/null || die |
| 526 | einfo "Running qmake in: ${x}" |
602 | einfo "Running qmake in: ${x}" |
| 527 | # avoid running over the maximum argument number, bug #299810 |
603 | "${S}"/bin/qmake \ |
| 528 | { |
604 | "LIBS+=-L${QTLIBDIR}" \ |
| 529 | echo "${S}"/mkspecs/common/*.conf |
605 | "CONFIG+=nostrip" \ |
| 530 | find "${S}" -name '*.pr[io]' |
606 | || die "qmake failed" |
| 531 | } | xargs sed -i \ |
|
|
| 532 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
|
|
| 533 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
|
|
| 534 | || die |
|
|
| 535 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
| 536 | popd >/dev/null || die |
607 | popd >/dev/null || die |
| 537 | done |
608 | done |
| 538 | } |
609 | } |
| 539 | |
|
|
| 540 | |
610 | |
| 541 | # @FUNCTION: build_directories |
611 | # @FUNCTION: build_directories |
| 542 | # @USAGE: < directories > |
612 | # @USAGE: < directories > |
| 543 | # @INTERNAL |
613 | # @INTERNAL |
| 544 | # @DESCRIPTION: |
614 | # @DESCRIPTION: |
| 545 | # Compiles the code in the given list of directories. |
615 | # Compiles the code in the given list of directories. |
| 546 | build_directories() { |
616 | build_directories() { |
| 547 | for x in "$@"; do |
617 | for x in "$@"; do |
| 548 | pushd "${S}"/${x} >/dev/null || die |
618 | pushd "${S}"/${x} >/dev/null || die |
|
|
619 | emake \ |
|
|
620 | AR="$(tc-getAR) cqs" \ |
| 549 | emake CC="$(tc-getCC)" \ |
621 | CC="$(tc-getCC)" \ |
| 550 | CXX="$(tc-getCXX)" \ |
622 | CXX="$(tc-getCXX)" \ |
| 551 | LINK="$(tc-getCXX)" || die "emake failed" |
623 | LINK="$(tc-getCXX)" \ |
|
|
624 | RANLIB=":" \ |
|
|
625 | STRIP=":" \ |
|
|
626 | || die "emake failed" |
| 552 | popd >/dev/null || die |
627 | popd >/dev/null || die |
| 553 | done |
628 | done |
| 554 | } |
629 | } |
| 555 | |
630 | |
| 556 | # @FUNCTION: install_directories |
631 | # @FUNCTION: install_directories |
| … | |
… | |
| 607 | # @FUNCTION: generate_qconfigs |
682 | # @FUNCTION: generate_qconfigs |
| 608 | # @INTERNAL |
683 | # @INTERNAL |
| 609 | # @DESCRIPTION: |
684 | # @DESCRIPTION: |
| 610 | # Generates gentoo-specific qconfig.{h,pri}. |
685 | # Generates gentoo-specific qconfig.{h,pri}. |
| 611 | generate_qconfigs() { |
686 | generate_qconfigs() { |
| 612 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
687 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${PN} == qt-core ]]; then |
| 613 | local x qconfig_add qconfig_remove qconfig_new |
688 | local x qconfig_add qconfig_remove qconfig_new |
| 614 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
689 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 615 | [[ -f ${x} ]] || continue |
690 | [[ -f ${x} ]] || continue |
| 616 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
691 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
| 617 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
692 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
| … | |
… | |
| 748 | # @RETURN: the specs-directory w/o path |
823 | # @RETURN: the specs-directory w/o path |
| 749 | # @DESCRIPTION: |
824 | # @DESCRIPTION: |
| 750 | # Allows us to define which mkspecs dir we want to use. |
825 | # Allows us to define which mkspecs dir we want to use. |
| 751 | qt_mkspecs_dir() { |
826 | qt_mkspecs_dir() { |
| 752 | local spec= |
827 | local spec= |
|
|
828 | |
| 753 | case ${CHOST} in |
829 | case "${CHOST}" in |
| 754 | *-freebsd*|*-dragonfly*) |
830 | *-freebsd*|*-dragonfly*) |
| 755 | spec=freebsd ;; |
831 | spec=freebsd ;; |
| 756 | *-openbsd*) |
832 | *-openbsd*) |
| 757 | spec=openbsd ;; |
833 | spec=openbsd ;; |
| 758 | *-netbsd*) |
834 | *-netbsd*) |
| … | |
… | |
| 769 | *-solaris*) |
845 | *-solaris*) |
| 770 | spec=solaris ;; |
846 | spec=solaris ;; |
| 771 | *-linux-*|*-linux) |
847 | *-linux-*|*-linux) |
| 772 | spec=linux ;; |
848 | spec=linux ;; |
| 773 | *) |
849 | *) |
| 774 | die "Unknown CHOST, no platform chosen" |
850 | die "${FUNCNAME}(): Unknown CHOST '${CHOST}'" ;; |
| 775 | esac |
851 | esac |
| 776 | |
852 | |
| 777 | CXX=$(tc-getCXX) |
853 | case "$(tc-getCXX)" in |
| 778 | if [[ ${CXX} == *g++* ]]; then |
854 | *g++*) |
| 779 | spec+=-g++ |
855 | spec+=-g++ ;; |
| 780 | elif [[ ${CXX} == *icpc* ]]; then |
856 | *icpc*) |
| 781 | spec+=-icc |
857 | spec+=-icc ;; |
| 782 | else |
858 | *) |
| 783 | die "Unknown compiler '${CXX}'" |
859 | die "${FUNCNAME}(): Unknown compiler '$(tc-getCXX)'" ;; |
| 784 | fi |
860 | esac |
| 785 | |
861 | |
| 786 | # Add -64 for 64bit profiles |
862 | # Add -64 for 64bit profiles |
| 787 | if use x64-freebsd || |
863 | if use x64-freebsd || |
| 788 | use amd64-linux || |
864 | use amd64-linux || |
| 789 | use x64-macos || |
865 | use x64-macos || |
| … | |
… | |
| 794 | fi |
870 | fi |
| 795 | |
871 | |
| 796 | echo "${spec}" |
872 | echo "${spec}" |
| 797 | } |
873 | } |
| 798 | |
874 | |
| 799 | # @FUNCTION: qt_assistant_cleanup |
|
|
| 800 | # @INTERNAL |
|
|
| 801 | # @DESCRIPTION: |
|
|
| 802 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
|
|
| 803 | # Meant to be called in src_prepare(). |
|
|
| 804 | # Since Qt 4.7.4 this function is a no-op. |
|
|
| 805 | qt_assistant_cleanup() { |
|
|
| 806 | # apply patching to qt-assistant ebuilds only |
|
|
| 807 | [[ ${PN} != "qt-assistant" ]] && return |
|
|
| 808 | |
|
|
| 809 | # no longer needed for 4.7.4 and later |
|
|
| 810 | version_is_at_least "4.7.4" && return |
|
|
| 811 | |
|
|
| 812 | # different versions (and branches...) may need different handling, |
|
|
| 813 | # add a case if you need special handling |
|
|
| 814 | case "${MY_PV_EXTRA}" in |
|
|
| 815 | *kde-qt*) |
|
|
| 816 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
| 817 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
| 818 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
| 819 | ;; |
|
|
| 820 | *) |
|
|
| 821 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
| 822 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
| 823 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
| 824 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
| 825 | ;; |
|
|
| 826 | esac |
|
|
| 827 | } |
|
|
| 828 | |
|
|
| 829 | # @FUNCTION: qt_nolibx11 |
875 | # @FUNCTION: qt_nolibx11 |
| 830 | # @INTERNAL |
876 | # @INTERNAL |
| 831 | # @DESCRIPTION: |
877 | # @DESCRIPTION: |
| 832 | # Ignore X11 tests for packages that don't need X libraries installed. |
878 | # Ignore X11 tests for packages that don't need X libraries installed. |
| 833 | qt_nolibx11() { |
879 | qt_nolibx11() { |