| 1 | # Copyright 1999-2009 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.92 2011/08/13 11:31:03 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.118 2012/02/09 22:58:36 pesa Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ben de Groot <yngwin@gentoo.org>, |
7 | # Qt herd <qt@gentoo.org> |
| 8 | # Markos Chandras <hwoarang@gentoo.org>, |
|
|
| 9 | # Caleb Tennis <caleb@gentoo.org> |
|
|
| 10 | # Alex Alexander <wired@gentoo.org> |
|
|
| 11 | # @BLURB: Eclass for Qt4 split ebuilds. |
8 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 12 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 13 | # This eclass contains various functions that are used when building Qt4 |
10 | # This eclass contains various functions that are used when building Qt4. |
| 14 | |
11 | |
| 15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
12 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 16 | |
13 | |
| 17 | MY_PV=${PV/_/-} |
14 | MY_PV=${PV/_/-} |
| 18 | if version_is_at_least 4.5.99999999; then |
|
|
| 19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
15 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
|
|
16 | |
|
|
17 | HOMEPAGE="http://qt.nokia.com/ http://qt-project.org/" |
|
|
18 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
19 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
20 | |
|
|
21 | IUSE="aqua debug pch" |
|
|
22 | |
| 20 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
23 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
| 21 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
24 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
| 22 | IUSE="+exceptions" |
25 | IUSE+=" +exceptions" |
| 23 | else |
26 | |
| 24 | MY_P=qt-x11-opensource-src-${MY_PV} |
27 | if version_is_at_least 4.7.99999999; then |
|
|
28 | IUSE+=" c++0x qpa" |
| 25 | fi |
29 | fi |
| 26 | |
30 | |
| 27 | HOMEPAGE="http://qt.nokia.com/" |
31 | DEPEND="dev-util/pkgconfig" |
| 28 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
| 29 | |
|
|
| 30 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
| 31 | IUSE+=" debug pch aqua" |
|
|
| 32 | |
|
|
| 33 | RDEPEND=" |
32 | RDEPEND=" |
| 34 | !<x11-libs/qt-assistant-${PV} |
33 | !<x11-libs/qt-assistant-${PV} |
| 35 | !>x11-libs/qt-assistant-${PV}-r9999 |
34 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 36 | !<x11-libs/qt-core-${PV} |
35 | !<x11-libs/qt-core-${PV} |
| 37 | !>x11-libs/qt-core-${PV}-r9999 |
36 | !>x11-libs/qt-core-${PV}-r9999 |
| 38 | !<x11-libs/qt-dbus-${PV} |
37 | !<x11-libs/qt-dbus-${PV} |
| 39 | !>x11-libs/qt-dbus-${PV}-r9999 |
38 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
39 | !<x11-libs/qt-declarative-${PV} |
|
|
40 | !>x11-libs/qt-declarative-${PV}-r9999 |
| 40 | !<x11-libs/qt-demo-${PV} |
41 | !<x11-libs/qt-demo-${PV} |
| 41 | !>x11-libs/qt-demo-${PV}-r9999 |
42 | !>x11-libs/qt-demo-${PV}-r9999 |
| 42 | !<x11-libs/qt-gui-${PV} |
43 | !<x11-libs/qt-gui-${PV} |
| 43 | !>x11-libs/qt-gui-${PV}-r9999 |
44 | !>x11-libs/qt-gui-${PV}-r9999 |
| 44 | !<x11-libs/qt-multimedia-${PV} |
45 | !<x11-libs/qt-multimedia-${PV} |
| … | |
… | |
| 65 | |
66 | |
| 66 | S=${WORKDIR}/${MY_P} |
67 | S=${WORKDIR}/${MY_P} |
| 67 | |
68 | |
| 68 | # @FUNCTION: qt4-build_pkg_setup |
69 | # @FUNCTION: qt4-build_pkg_setup |
| 69 | # @DESCRIPTION: |
70 | # @DESCRIPTION: |
| 70 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
71 | # Sets up PATH and LD_LIBRARY_PATH. |
| 71 | qt4-build_pkg_setup() { |
72 | qt4-build_pkg_setup() { |
| 72 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 73 | |
74 | |
| 74 | # Protect users by not allowing downgrades between releases |
75 | # Protect users by not allowing downgrades between releases |
| 75 | # Downgrading revisions within the same release should be allowed |
76 | # Downgrading revisions within the same release should be allowed |
| 76 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
77 | if has_version '>'${CATEGORY}/${P}-r9999; then |
| 77 | if [[ -z $I_KNOW_WHAT_I_AM_DOING ]] ; then |
78 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 78 | eerror "Sanity check to keep you from breaking your system:" |
79 | eerror "Sanity check to keep you from breaking your system:" |
| 79 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
80 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
| 80 | die "aborting to save your system" |
81 | die "aborting to save your system" |
| 81 | else |
82 | else |
| 82 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
83 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 83 | fi |
84 | fi |
| 84 | fi |
85 | fi |
| 85 | |
86 | |
| 86 | if [[ "${PN}" == "qt-webkit" ]]; then |
87 | if [[ ${PN} == "qt-webkit" ]]; then |
| 87 | eshopts_push -s extglob |
88 | eshopts_push -s extglob |
| 88 | if is-flagq '-g?(gdb)?([1-9])'; then |
89 | if is-flagq '-g?(gdb)?([1-9])'; then |
| 89 | echo |
90 | echo |
| 90 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
91 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
| 91 | ewarn "You may experience really long compilation times and/or increased memory usage." |
92 | ewarn "You may experience really long compilation times and/or increased memory usage." |
| … | |
… | |
| 108 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
109 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
| 109 | ${QT4_EXTRACT_DIRECTORIES}" |
110 | ${QT4_EXTRACT_DIRECTORIES}" |
| 110 | fi |
111 | fi |
| 111 | |
112 | |
| 112 | # Make sure ebuilds use the required EAPI |
113 | # Make sure ebuilds use the required EAPI |
| 113 | if [[ ${EAPI} != [23] ]]; then |
114 | if [[ ${EAPI} != [234] ]]; then |
| 114 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
115 | eerror "The qt4-build eclass requires EAPI 2,3 or 4 but this ebuild is using" |
| 115 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
116 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
| 116 | eerror "fixed. Using qt4-build eclass without EAPI=2 or EAPI=3 will fail." |
117 | eerror "fixed. Using qt4-build eclass without EAPI 2,3 or 4 will fail." |
| 117 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
118 | die "qt4-build eclass requires EAPI 2,3 or 4" |
| 118 | fi |
119 | fi |
| 119 | |
120 | |
| 120 | if ! version_is_at_least 4.1 $(gcc-version); then |
121 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 121 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
122 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 122 | fi |
123 | fi |
| 123 | } |
124 | } |
| 124 | |
125 | |
| 125 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 126 | # @DESCRIPTION: |
127 | # @DESCRIPTION: |
| 127 | # Arguments for build_target_directories. Takes the directories, in which the |
128 | # Arguments for build_target_directories. Takes the directories in which the |
| 128 | # code should be compiled. This is a space-separated list |
129 | # code should be compiled. This is a space-separated list. |
| 129 | |
130 | |
| 130 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
| 131 | # @DESCRIPTION: |
132 | # @DESCRIPTION: |
| 132 | # Space separated list including the directories that will be extracted from Qt |
133 | # Space-separated list including the directories that will be extracted from |
| 133 | # tarball |
134 | # Qt tarball. |
| 134 | |
135 | |
| 135 | # @FUNCTION: qt4-build_src_unpack |
136 | # @FUNCTION: qt4-build_src_unpack |
| 136 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 137 | # Unpacks the sources |
138 | # Unpacks the sources. |
| 138 | qt4-build_src_unpack() { |
139 | qt4-build_src_unpack() { |
| 139 | setqtenv |
140 | setqtenv |
| 140 | local unpack_p="${MY_P}" |
141 | |
| 141 | case "${PV}" in |
142 | local tarball="${MY_P}.tar.gz" target= targets= |
| 142 | 4.8.0_beta*) |
|
|
| 143 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
| 144 | ;; |
|
|
| 145 | esac |
|
|
| 146 | local target targets= |
|
|
| 147 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
143 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 148 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
144 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
| 149 | ${QT4_EXTRACT_DIRECTORIES}; do |
145 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
|
|
146 | do |
| 150 | targets+=" ${unpack_p}/${target}" |
147 | targets+="${MY_P}/${target} " |
| 151 | done |
148 | done |
| 152 | |
149 | |
|
|
150 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
| 153 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
151 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
| 154 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
152 | eend $? || die "failed to unpack" |
| 155 | case "${PV}" in |
|
|
| 156 | 4.8.0_beta*) |
|
|
| 157 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
| 158 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
| 159 | ;; |
|
|
| 160 | esac |
|
|
| 161 | } |
153 | } |
| 162 | |
154 | |
| 163 | # @ECLASS-VARIABLE: PATCHES |
155 | # @ECLASS-VARIABLE: PATCHES |
|
|
156 | # @DEFAULT_UNSET |
| 164 | # @DESCRIPTION: |
157 | # @DESCRIPTION: |
| 165 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
158 | # PATCHES array variable containing all various patches to be applied. |
| 166 | # to specify the full path. This variable is necessary for src_prepare phase. |
159 | # This variable is expected to be defined in global scope of ebuild. |
| 167 | # example: |
160 | # Make sure to specify the full path. This variable is utilised in |
| 168 | # PATCHES="${FILESDIR}"/mypatch.patch |
161 | # src_unpack/src_prepare phase, based on EAPI. |
| 169 | # ${FILESDIR}"/mypatch2.patch" |
|
|
| 170 | # |
162 | # |
|
|
163 | # @CODE |
|
|
164 | # PATCHES=( "${FILESDIR}/mypatch.patch" |
|
|
165 | # "${FILESDIR}/patches_folder/" ) |
|
|
166 | # @CODE |
| 171 | |
167 | |
| 172 | # @FUNCTION: qt4-build_src_prepare |
168 | # @FUNCTION: qt4-build_src_prepare |
| 173 | # @DESCRIPTION: |
169 | # @DESCRIPTION: |
| 174 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
170 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 175 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
171 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
| 176 | qt4-build_src_prepare() { |
172 | qt4-build_src_prepare() { |
| 177 | setqtenv |
173 | setqtenv |
| 178 | cd "${S}" |
174 | cd "${S}" |
| 179 | |
175 | |
| 180 | # fix qt 4.7 regression that skips -fvisibility=hidden |
|
|
| 181 | if version_is_at_least "4.7.0_beta1"; then |
176 | if version_is_at_least "4.7"; then |
| 182 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
|
|
| 183 | -i config.tests/unix/fvisibility.test || |
|
|
| 184 | die "visibility fixing sed failed" |
|
|
| 185 | fi |
|
|
| 186 | # fix libx11 dependency on non X packages |
177 | # fix libX11 dependency on non X packages |
| 187 | if version_is_at_least "4.7.0_beta2"; then |
|
|
| 188 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
178 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 189 | has ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
179 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
| 190 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
180 | |
|
|
181 | qt_assistant_cleanup |
| 191 | fi |
182 | fi |
| 192 | |
183 | |
| 193 | if use aqua; then |
184 | if use aqua; then |
| 194 | # provide a proper macx-g++-64 |
185 | # provide a proper macx-g++-64 |
| 195 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
186 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 196 | |
187 | |
| 197 | sed -e '/^CONFIG/s:app_bundle::' \ |
188 | sed -e '/^CONFIG/s:app_bundle::' \ |
| 198 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
189 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
| 199 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed failed" |
190 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 200 | fi |
191 | fi |
| 201 | |
192 | |
| 202 | if [[ ${PN} != qt-core ]]; then |
193 | if [[ ${PN} != qt-core ]]; then |
| 203 | skip_qmake_build_patch |
194 | skip_qmake_build |
| 204 | skip_project_generation_patch |
195 | skip_project_generation |
| 205 | symlink_binaries_to_buildtree |
196 | symlink_binaries_to_buildtree |
| 206 | fi |
197 | fi |
| 207 | |
198 | |
| 208 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
199 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 209 | # qmake bus errors with -O2 but -O3 works |
200 | # qmake bus errors with -O2 but -O3 works |
| … | |
… | |
| 212 | |
203 | |
| 213 | # Bug 178652 |
204 | # Bug 178652 |
| 214 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
205 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 215 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
206 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 216 | append-flags -fno-gcse |
207 | append-flags -fno-gcse |
|
|
208 | fi |
|
|
209 | |
|
|
210 | 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 |
| 217 | fi |
217 | fi |
| 218 | |
218 | |
| 219 | # Unsupported old gcc versions - hardened needs this :( |
219 | # Unsupported old gcc versions - hardened needs this :( |
| 220 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
220 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 221 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
221 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 222 | append-cxxflags -fno-stack-protector |
222 | append-cxxflags -fno-stack-protector |
| 223 | # Bug 253127 |
223 | # Bug 253127 |
| 224 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
224 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 225 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
225 | -i mkspecs/common/g++.conf || die |
| 226 | fi |
226 | fi |
| 227 | |
227 | |
| 228 | # Bug 261632 |
228 | # Bug 261632 |
| 229 | if use ppc64; then |
229 | if use ppc64; then |
| 230 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
230 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 231 | append-flags -mminimal-toc |
231 | append-flags -mminimal-toc |
| 232 | fi |
232 | fi |
| 233 | |
233 | |
| 234 | # Bug 282984 && Bug 295530 |
234 | # Respect CC, CXX, {C,CXX,LD}FLAGS in .qmake.cache |
| 235 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
235 | sed -e "/^SYSTEM_VARIABLES=/i \ |
| 236 | -i configure || die "sed qmake compilers failed" |
236 | CC='$(tc-getCC)'\n\ |
| 237 | # bug 321335 |
237 | CXX='$(tc-getCXX)'\n\ |
| 238 | if version_is_at_least 4.6; then |
238 | CFLAGS='${CFLAGS}'\n\ |
| 239 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
239 | CXXFLAGS='${CXXFLAGS}'\n\ |
| 240 | xargs -0 \ |
240 | LDFLAGS='${LDFLAGS}'\n" \ |
| 241 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
241 | -i configure \ |
| 242 | -i || die "sed test compilers failed" |
242 | || die "sed SYSTEM_VARIABLES failed" |
| 243 | fi |
243 | |
|
|
244 | # Respect CC, CXX, LINK and *FLAGS in config.tests |
|
|
245 | find config.tests/unix -name '*.test' -type f -print0 | xargs -0 \ |
|
|
246 | sed -i -e "/bin\/qmake/ s: \"QT_BUILD_TREE=: \ |
|
|
247 | 'QMAKE_CC=$(tc-getCC)' 'QMAKE_CXX=$(tc-getCXX)' 'QMAKE_LINK=$(tc-getCXX)' \ |
|
|
248 | 'QMAKE_CFLAGS+=${CFLAGS}' 'QMAKE_CXXFLAGS+=${CXXFLAGS}' 'QMAKE_LFLAGS+=${LDFLAGS}'&:" \ |
|
|
249 | || die "sed config.tests failed" |
|
|
250 | |
|
|
251 | # Strip predefined CFLAGS from mkspecs (bug 312689) |
|
|
252 | sed -i -e '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf || die |
| 244 | |
253 | |
| 245 | # Bug 172219 |
254 | # Bug 172219 |
| 246 | sed -e "s:X11R6/::" \ |
255 | sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 247 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 248 | |
256 | |
| 249 | if [[ ${CHOST} == *-darwin* ]]; then |
257 | if [[ ${CHOST} == *-darwin* ]]; then |
| 250 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
258 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 251 | # crippled (by design) :/ |
259 | # crippled (by design) :/ |
|
|
260 | sed \ |
| 252 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
261 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 253 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
262 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 254 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
263 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| 255 | -e "s:-arch\s\w*::g" \ |
264 | -e "s:-arch\s\w*::g" \ |
| 256 | -i mkspecs/common/mac-g++.conf || die "sed mkspecs/common/mac-g++.conf failed" |
265 | -i mkspecs/common/mac-g++.conf \ |
|
|
266 | || die "sed mkspecs/common/mac-g++.conf failed" |
| 257 | |
267 | |
| 258 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
268 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
| 259 | # fix arch handling (automagically duplicates our -arch arg and breaks |
269 | # fix arch handling (automagically duplicates our -arch arg and breaks |
| 260 | # pch). Additionally disable Xarch support. |
270 | # pch). Additionally disable Xarch support. |
| 261 | sed \ |
271 | sed \ |
| … | |
… | |
| 266 | -e "s:-arch \$i::" \ |
276 | -e "s:-arch \$i::" \ |
| 267 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
277 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 268 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
278 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 269 | -e "s:-Xarch_x86_64::g" \ |
279 | -e "s:-Xarch_x86_64::g" \ |
| 270 | -e "s:-Xarch_ppc64::g" \ |
280 | -e "s:-Xarch_ppc64::g" \ |
| 271 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
281 | -i configure mkspecs/common/mac-g++.conf \ |
|
|
282 | || die "sed -arch/-Xarch failed" |
| 272 | |
283 | |
| 273 | # On Snow Leopard don't fall back to 10.5 deployment target. |
284 | # On Snow Leopard don't fall back to 10.5 deployment target. |
| 274 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
285 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
| 275 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
286 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
| 276 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
287 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
| 277 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
288 | -i configure mkspecs/common/mac-g++.conf \ |
|
|
289 | || die "sed deployment target failed" |
| 278 | fi |
290 | fi |
| 279 | fi |
291 | fi |
| 280 | |
292 | |
| 281 | # this one is needed for all systems with a separate -liconv, apart from |
293 | # this one is needed for all systems with a separate -liconv, apart from |
| 282 | # Darwin, for which the sources already cater for -liconv |
294 | # Darwin, for which the sources already cater for -liconv |
| 283 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
295 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
| 284 | sed \ |
296 | sed -e 's|mac:\(LIBS += -liconv\)|\1|g' \ |
| 285 | -e "s|mac:LIBS += -liconv|LIBS += -liconv|g" \ |
|
|
| 286 | -i config.tests/unix/iconv/iconv.pro \ |
297 | -i config.tests/unix/iconv/iconv.pro \ |
| 287 | || die "sed on iconv.pro failed" |
298 | || die "sed iconv.pro failed" |
| 288 | fi |
299 | fi |
| 289 | |
300 | |
| 290 | # we need some patches for Solaris |
301 | # we need some patches for Solaris |
| 291 | sed -i \ |
|
|
| 292 | -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,' \ |
302 | sed -i -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,' \ |
| 293 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
303 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 294 | # use GCC over SunStudio |
304 | # use GCC over SunStudio |
| 295 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
305 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 296 | # don't flirt with non-Prefix stuff, we're quite possessive |
306 | # do not flirt with non-Prefix stuff, we're quite possessive |
| 297 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
307 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 298 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
308 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 299 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
| 300 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
|
|
| 301 | |
309 | |
| 302 | base_src_prepare |
310 | base_src_prepare |
| 303 | } |
311 | } |
| 304 | |
312 | |
| 305 | # @FUNCTION: qt4-build_src_configure |
313 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 312 | # this one is needed for all systems with a separate -liconv, apart from |
320 | # this one is needed for all systems with a separate -liconv, apart from |
| 313 | # Darwin, for which the sources already cater for -liconv |
321 | # Darwin, for which the sources already cater for -liconv |
| 314 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
322 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
| 315 | myconf+=" -liconv" |
323 | myconf+=" -liconv" |
| 316 | |
324 | |
| 317 | if has glib ${IUSE//+} && use glib; then |
325 | if use_if_iuse glib; then |
| 318 | # use -I, -L and -l from configure |
326 | # use -I, -L and -l from configure |
| 319 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
327 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
| 320 | # avoid the -pthread argument |
328 | # avoid the -pthread argument |
| 321 | myconf+=" ${glibflags//-pthread}" |
329 | myconf+=" ${glibflags//-pthread}" |
| 322 | unset glibflags |
330 | unset glibflags |
| 323 | fi |
331 | fi |
| 324 | |
332 | |
|
|
333 | if use_if_iuse qpa; then |
|
|
334 | ewarn |
|
|
335 | 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" |
|
|
337 | ewarn "disable it before reporting any bugs related to this useflag." |
|
|
338 | ewarn |
|
|
339 | myconf+=" -qpa" |
|
|
340 | fi |
|
|
341 | |
| 325 | if use aqua ; then |
342 | if use aqua ; then |
| 326 | # On (snow) leopard use the new (frameworked) cocoa code. |
343 | # On (snow) leopard use the new (frameworked) cocoa code. |
| 327 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
344 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 328 | myconf+=" -cocoa -framework" |
345 | myconf+=" -cocoa -framework" |
| 329 | |
346 | |
| 330 | # We are crazy and build cocoa + qt3support :-) |
347 | # We are crazy and build cocoa + qt3support :-) |
| 331 | if use qt3support; then |
348 | if use qt3support; then |
| 332 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
349 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
| 333 | -i configure |
350 | -i configure || die |
| 334 | fi |
351 | fi |
| 335 | |
352 | |
| 336 | # We need the source's headers, not the installed ones. |
353 | # We need the source's headers, not the installed ones. |
| 337 | myconf+=" -I${S}/include" |
354 | myconf+=" -I${S}/include" |
| 338 | |
355 | |
| … | |
… | |
| 343 | # freetype2 include dir is non-standard, thus include it on configure |
360 | # freetype2 include dir is non-standard, thus include it on configure |
| 344 | # use -I from configure |
361 | # use -I from configure |
| 345 | myconf+=" $(pkg-config --cflags freetype2)" |
362 | myconf+=" $(pkg-config --cflags freetype2)" |
| 346 | fi |
363 | fi |
| 347 | |
364 | |
| 348 | # Disable SSE4.x, since auto-detection is currently broken |
|
|
| 349 | # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623 |
|
|
| 350 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
|
|
| 351 | |
|
|
| 352 | echo ./configure ${myconf} |
365 | echo ./configure ${myconf} |
| 353 | ./configure ${myconf} || die "./configure failed" |
366 | ./configure ${myconf} || die "./configure failed" |
| 354 | myconf="" |
367 | myconf="" |
| 355 | |
368 | |
| 356 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
369 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 357 | } |
370 | } |
| 358 | |
371 | |
| 359 | # @FUNCTION: qt4-build_src_compile |
372 | # @FUNCTION: qt4-build_src_compile |
|
|
373 | # @DESCRIPTION: |
| 360 | # @DESCRIPTION: Actual compile phase |
374 | # Actual compile phase |
| 361 | qt4-build_src_compile() { |
375 | qt4-build_src_compile() { |
| 362 | setqtenv |
376 | setqtenv |
| 363 | |
377 | |
| 364 | build_directories ${QT4_TARGET_DIRECTORIES} |
378 | build_directories ${QT4_TARGET_DIRECTORIES} |
| 365 | } |
379 | } |
| 366 | |
380 | |
| 367 | # @FUNCTION: qt4-build_src_test |
381 | # @FUNCTION: qt4-build_src_test |
| 368 | # @DESCRIPTION: |
382 | # @DESCRIPTION: |
| 369 | # Runs tests only in target directories. |
383 | # Runs tests only in target directories. |
| 370 | qt4-build_src_test() { |
384 | qt4-build_src_test() { |
|
|
385 | # QtMultimedia does not have any test suite (bug #332299) |
|
|
386 | [[ ${PN} == "qt-multimedia" ]] && return |
|
|
387 | |
| 371 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
388 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
| 372 | emake -j1 check -C ${dir} |
389 | emake -j1 check -C ${dir} |
| 373 | done |
390 | done |
| 374 | } |
391 | } |
| 375 | |
392 | |
| 376 | # @FUNCTION: fix_includes |
393 | # @FUNCTION: fix_includes |
| 377 | # @DESCRIPTION: |
394 | # @DESCRIPTION: |
| 378 | # For MacOSX we need to add some symlinks when frameworks are |
395 | # For MacOS X we need to add some symlinks when frameworks are |
| 379 | # being used, to avoid complications with some more or less stupid packages. |
396 | # being used, to avoid complications with some more or less stupid packages. |
| 380 | fix_includes() { |
397 | fix_includes() { |
| 381 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
398 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 382 | # Some packages tend to include <Qt/...> |
399 | # Some packages tend to include <Qt/...> |
| 383 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
400 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 384 | |
401 | |
| 385 | # Fake normal headers when frameworks are installed... eases life later on |
402 | # Fake normal headers when frameworks are installed... eases life later on |
| 386 | local dest f |
403 | local dest f h |
| 387 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
404 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
| 388 | [[ -e "${frw}"/Headers ]] || continue |
405 | [[ -e "${frw}"/Headers ]] || continue |
| 389 | f=$(basename ${frw}) |
406 | f=$(basename ${frw}) |
| 390 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
407 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
| 391 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
408 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
| … | |
… | |
| 403 | # @DESCRIPTION: |
420 | # @DESCRIPTION: |
| 404 | # Perform the actual installation including some library fixes. |
421 | # Perform the actual installation including some library fixes. |
| 405 | qt4-build_src_install() { |
422 | qt4-build_src_install() { |
| 406 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
423 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
| 407 | setqtenv |
424 | setqtenv |
|
|
425 | |
| 408 | install_directories ${QT4_TARGET_DIRECTORIES} |
426 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 409 | install_qconfigs |
427 | install_qconfigs |
| 410 | fix_library_files |
428 | fix_library_files |
| 411 | fix_includes |
429 | fix_includes |
|
|
430 | |
| 412 | # remove .la files since we are building only shared Qt libraries |
431 | # remove .la files since we are building only shared Qt libraries |
| 413 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
432 | find "${D}"${QTLIBDIR} -type f -name '*.la' -print0 | xargs -0 rm -f |
| 414 | } |
433 | } |
| 415 | |
434 | |
| 416 | # @FUNCTION: setqtenv |
435 | # @FUNCTION: setqtenv |
|
|
436 | # @INTERNAL |
| 417 | setqtenv() { |
437 | setqtenv() { |
| 418 | # Set up installation directories |
438 | # Set up installation directories |
| 419 | QTBASEDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
| 420 | QTPREFIXDIR=${EPREFIX}/usr |
439 | QTPREFIXDIR=${EPREFIX}/usr |
| 421 | QTBINDIR=${EPREFIX}/usr/bin |
440 | QTBINDIR=${EPREFIX}/usr/bin |
| 422 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
441 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
| 423 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
|
|
| 424 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
442 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
| 425 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
| 426 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
443 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
| 427 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
444 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
| 428 | QTPLUGINDIR=${QTLIBDIR}/plugins |
445 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
446 | QTIMPORTDIR=${QTLIBDIR}/imports |
|
|
447 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
448 | QTTRANSDIR=${QTDATADIR}/translations |
| 429 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
449 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
| 430 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 431 | QTEXAMPLESDIR=${QTDATADIR}/examples |
450 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 432 | QTDEMOSDIR=${QTDATADIR}/demos |
451 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
452 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 433 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
453 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
454 | |
| 434 | PLATFORM=$(qt_mkspecs_dir) |
455 | PLATFORM=$(qt_mkspecs_dir) |
| 435 | |
456 | |
| 436 | unset QMAKESPEC |
457 | unset QMAKESPEC |
| 437 | } |
458 | } |
| 438 | |
459 | |
| 439 | # @FUNCTION: standard_configure_options |
460 | # @FUNCTION: standard_configure_options |
|
|
461 | # @INTERNAL |
| 440 | # @DESCRIPTION: |
462 | # @DESCRIPTION: |
| 441 | # Sets up some standard configure options, like libdir (if necessary), whether |
463 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 442 | # debug info is wanted or not. |
464 | # debug info is wanted or not. |
| 443 | standard_configure_options() { |
465 | standard_configure_options() { |
| 444 | local myconf= |
466 | local myconf="-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
467 | -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} |
|
|
468 | $(version_is_at_least 4.7 && echo -importdir ${QTIMPORTDIR}) |
|
|
469 | -datadir ${QTDATADIR} -translationdir ${QTTRANSDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
470 | -examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} |
|
|
471 | -opensource -confirm-license -shared -fast -largefile -stl -verbose |
|
|
472 | -platform $(qt_mkspecs_dir) -nomake examples -nomake demos" |
| 445 | |
473 | |
| 446 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
474 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 447 | |
475 | |
| 448 | # Disable visibility explicitly if gcc version isn't 4 |
476 | # debug/release |
| 449 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
| 450 | myconf+=" -no-reduce-exports" |
|
|
| 451 | fi |
|
|
| 452 | |
|
|
| 453 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
| 454 | myconf+=" $(qt_use pch)" |
|
|
| 455 | |
|
|
| 456 | if use debug; then |
477 | if use debug; then |
| 457 | myconf+=" -debug" |
478 | myconf+=" -debug" |
| 458 | else |
479 | else |
| 459 | myconf+=" -release" |
480 | myconf+=" -release" |
| 460 | fi |
481 | fi |
| 461 | myconf+=" -no-separate-debug-info" |
482 | myconf+=" -no-separate-debug-info" |
| 462 | |
483 | |
|
|
484 | # exceptions USE flag |
|
|
485 | local exceptions="-exceptions" |
|
|
486 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
487 | myconf+=" ${exceptions}" |
|
|
488 | |
|
|
489 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
490 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
491 | |
|
|
492 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
493 | myconf+=" $(qt_use pch)" |
|
|
494 | |
|
|
495 | # -reduce-relocations |
|
|
496 | # This flag seems to introduce major breakage to applications, |
|
|
497 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
498 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
499 | # -- Daniel Vergien |
|
|
500 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
501 | |
| 463 | use aqua && myconf+=" -no-framework" |
502 | use aqua && myconf+=" -no-framework" |
| 464 | |
503 | |
| 465 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
504 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 466 | # $(tc-arch). Therefore we convert it to supported values. |
505 | # $(tc-arch). Therefore we convert it to supported values. |
| 467 | case "$(tc-arch)" in |
506 | case "$(tc-arch)" in |
| 468 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
507 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
| 469 | ppc-macos) myconf+=" -arch ppc" ;; |
508 | ppc-macos) myconf+=" -arch ppc" ;; |
| 470 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
509 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
| 471 | sparc|sparc-*) myconf+=" -arch sparc" ;; |
510 | sparc|sparc-*|sparc64-*) myconf+=" -arch sparc" ;; |
| 472 | x86-macos) myconf+=" -arch x86" ;; |
511 | x86-macos) myconf+=" -arch x86" ;; |
| 473 | x86|x86-*) myconf+=" -arch i386" ;; |
512 | x86|x86-*) myconf+=" -arch i386" ;; |
| 474 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
513 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
| 475 | hppa|sh) myconf+=" -arch generic" ;; |
514 | hppa|sh) myconf+=" -arch generic" ;; |
| 476 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
515 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 477 | esac |
516 | esac |
| 478 | |
517 | |
| 479 | # 4.5: build everything but qt-xmlpatterns w/o exceptions |
|
|
| 480 | # 4.6: exceptions USE flag |
|
|
| 481 | local exceptions="-exceptions" |
|
|
| 482 | case "${PV}" in |
|
|
| 483 | 4.5.*) |
|
|
| 484 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
| 485 | ;; |
|
|
| 486 | *) |
|
|
| 487 | has exceptions "${IUSE//+}" && exceptions="$(qt_use exceptions)" |
|
|
| 488 | ;; |
|
|
| 489 | esac |
|
|
| 490 | |
|
|
| 491 | # note about -reduce-relocations: |
|
|
| 492 | # That flag seems to introduce major breakage to applications, |
|
|
| 493 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
| 494 | # construct a QApplication before a QPaintDevice" on Solaris |
|
|
| 495 | # -- Daniel Vergien |
|
|
| 496 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
| 497 | |
|
|
| 498 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
|
|
| 499 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
| 500 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
|
|
| 501 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
| 502 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
|
|
| 503 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
|
|
| 504 | ${exceptions} |
|
|
| 505 | -nomake examples -nomake demos" |
|
|
| 506 | |
|
|
| 507 | echo "${myconf}" |
518 | echo "${myconf}" |
| 508 | } |
519 | } |
| 509 | |
520 | |
| 510 | # @FUNCTION: prepare_directories |
521 | # @FUNCTION: prepare_directories |
| 511 | # @USAGE: < directories > |
522 | # @USAGE: < directories > |
|
|
523 | # @INTERNAL |
| 512 | # @DESCRIPTION: |
524 | # @DESCRIPTION: |
| 513 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
525 | # Generates Makefiles for the given list of directories. |
| 514 | prepare_directories() { |
526 | prepare_directories() { |
| 515 | for x in "$@"; do |
527 | for x in "$@"; do |
| 516 | pushd "${S}"/${x} >/dev/null |
528 | pushd "${S}"/${x} >/dev/null || die |
| 517 | einfo "running qmake in: $x" |
529 | einfo "Running qmake in: ${x}" |
| 518 | # avoid running over the maximum argument number, bug #299810 |
530 | # avoid running over the maximum argument number, bug #299810 |
| 519 | { |
531 | { |
| 520 | echo "${S}"/mkspecs/common/*.conf |
532 | echo "${S}"/mkspecs/common/*.conf |
| 521 | find "${S}" -name '*.pr[io]' |
533 | find "${S}" -name '*.pr[io]' |
| 522 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
534 | } | xargs sed -i \ |
|
|
535 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
|
|
536 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
|
|
537 | || die |
| 523 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
538 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 524 | popd >/dev/null |
539 | popd >/dev/null || die |
| 525 | done |
540 | done |
| 526 | } |
541 | } |
| 527 | |
542 | |
| 528 | |
543 | |
| 529 | # @FUNCTION: build_directories |
544 | # @FUNCTION: build_directories |
| 530 | # @USAGE: < directories > |
545 | # @USAGE: < directories > |
|
|
546 | # @INTERNAL |
| 531 | # @DESCRIPTION: |
547 | # @DESCRIPTION: |
| 532 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
548 | # Compiles the code in the given list of directories. |
| 533 | build_directories() { |
549 | build_directories() { |
| 534 | for x in "$@"; do |
550 | for x in "$@"; do |
| 535 | pushd "${S}"/${x} >/dev/null |
551 | pushd "${S}"/${x} >/dev/null || die |
| 536 | emake CC="$(tc-getCC)" \ |
552 | emake CC="$(tc-getCC)" \ |
| 537 | CXX="$(tc-getCXX)" \ |
553 | CXX="$(tc-getCXX)" \ |
| 538 | LINK="$(tc-getCXX)" || die "emake failed" |
554 | LINK="$(tc-getCXX)" || die "emake failed" |
| 539 | popd >/dev/null |
555 | popd >/dev/null || die |
| 540 | done |
556 | done |
| 541 | } |
557 | } |
| 542 | |
558 | |
| 543 | # @FUNCTION: install_directories |
559 | # @FUNCTION: install_directories |
| 544 | # @USAGE: < directories > |
560 | # @USAGE: < directories > |
|
|
561 | # @INTERNAL |
| 545 | # @DESCRIPTION: |
562 | # @DESCRIPTION: |
| 546 | # run emake install in the given directories, which are separated by spaces |
563 | # Runs emake install in the given directories, which are separated by spaces. |
| 547 | install_directories() { |
564 | install_directories() { |
| 548 | for x in "$@"; do |
565 | for x in "$@"; do |
| 549 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
566 | pushd "${S}"/${x} >/dev/null || die |
| 550 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
567 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 551 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
568 | popd >/dev/null || die |
| 552 | done |
569 | done |
| 553 | } |
570 | } |
| 554 | |
571 | |
| 555 | # @ECLASS-VARIABLE: QCONFIG_ADD |
572 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 556 | # @DESCRIPTION: |
573 | # @DESCRIPTION: |
| … | |
… | |
| 566 | # @DESCRIPTION: |
583 | # @DESCRIPTION: |
| 567 | # List variables that should be defined at the top of QtCore/qconfig.h |
584 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 568 | : ${QCONFIG_DEFINE:=} |
585 | : ${QCONFIG_DEFINE:=} |
| 569 | |
586 | |
| 570 | # @FUNCTION: install_qconfigs |
587 | # @FUNCTION: install_qconfigs |
|
|
588 | # @INTERNAL |
|
|
589 | # @DESCRIPTION: |
| 571 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
590 | # Install gentoo-specific mkspecs configurations. |
| 572 | install_qconfigs() { |
591 | install_qconfigs() { |
| 573 | local x |
592 | local x |
| 574 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
593 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 575 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
594 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 576 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
595 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 587 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
606 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 588 | fi |
607 | fi |
| 589 | } |
608 | } |
| 590 | |
609 | |
| 591 | # @FUNCTION: generate_qconfigs |
610 | # @FUNCTION: generate_qconfigs |
| 592 | # @DESCRIPTION: Generates gentoo-specific configurations |
611 | # @INTERNAL |
|
|
612 | # @DESCRIPTION: |
|
|
613 | # Generates gentoo-specific qconfig.{h,pri}. |
| 593 | generate_qconfigs() { |
614 | generate_qconfigs() { |
| 594 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
615 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 595 | local x qconfig_add qconfig_remove qconfig_new |
616 | local x qconfig_add qconfig_remove qconfig_new |
| 596 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
617 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 597 | [[ -f ${x} ]] || continue |
618 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 645 | fi |
666 | fi |
| 646 | fi |
667 | fi |
| 647 | } |
668 | } |
| 648 | |
669 | |
| 649 | # @FUNCTION: qt4-build_pkg_postrm |
670 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
671 | # @DESCRIPTION: |
| 650 | # @DESCRIPTION: Generate configurations when the package is completely removed |
672 | # Regenerate configuration when the package is completely removed. |
| 651 | qt4-build_pkg_postrm() { |
673 | qt4-build_pkg_postrm() { |
| 652 | generate_qconfigs |
674 | generate_qconfigs |
| 653 | } |
675 | } |
| 654 | |
676 | |
| 655 | # @FUNCTION: qt4-build_pkg_postinst |
677 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
678 | # @DESCRIPTION: |
| 656 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
679 | # Regenerate configuration, plus throw a message about possible |
| 657 | # breakages and proposed solutions. |
680 | # breakages and proposed solutions. |
| 658 | qt4-build_pkg_postinst() { |
681 | qt4-build_pkg_postinst() { |
| 659 | generate_qconfigs |
682 | generate_qconfigs |
| 660 | } |
683 | } |
| 661 | |
684 | |
| 662 | # @FUNCTION: skip_qmake_build_patch |
685 | # @FUNCTION: skip_qmake_build |
|
|
686 | # @INTERNAL |
| 663 | # @DESCRIPTION: |
687 | # @DESCRIPTION: |
| 664 | # Don't need to build qmake, as it's already installed from qt-core |
688 | # Patches configure to skip qmake compilation, as it's already installed by qt-core. |
| 665 | skip_qmake_build_patch() { |
689 | skip_qmake_build() { |
| 666 | # Don't need to build qmake, as it's already installed from qt-core |
|
|
| 667 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
690 | sed -i -e "s:if true:if false:g" "${S}"/configure || die |
| 668 | } |
691 | } |
| 669 | |
692 | |
| 670 | # @FUNCTION: skip_project_generation_patch |
693 | # @FUNCTION: skip_project_generation |
|
|
694 | # @INTERNAL |
| 671 | # @DESCRIPTION: |
695 | # @DESCRIPTION: |
| 672 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
696 | # Exit the script early by throwing in an exit before all of the .pro files are scanned. |
| 673 | skip_project_generation_patch() { |
697 | skip_project_generation() { |
| 674 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
|
|
| 675 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
698 | sed -i -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" "${S}"/configure || die |
| 676 | -i "${S}"/configure || die "Sed failed" |
|
|
| 677 | } |
699 | } |
| 678 | |
700 | |
| 679 | # @FUNCTION: symlink_binaries_to_buildtree |
701 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
702 | # @INTERNAL |
| 680 | # @DESCRIPTION: |
703 | # @DESCRIPTION: |
| 681 | # Symlink generated binaries to buildtree so they can be used during compilation |
704 | # Symlinks generated binaries to buildtree, so they can be used during compilation time. |
| 682 | # time |
|
|
| 683 | symlink_binaries_to_buildtree() { |
705 | symlink_binaries_to_buildtree() { |
| 684 | for bin in qmake moc uic rcc; do |
706 | for bin in qmake moc uic rcc; do |
| 685 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
707 | ln -s "${QTBINDIR}"/${bin} "${S}"/bin/ || die "symlinking ${bin} to ${S}/bin failed" |
| 686 | done |
708 | done |
| 687 | } |
709 | } |
| 688 | |
710 | |
| 689 | # @FUNCTION: fix_library_files |
711 | # @FUNCTION: fix_library_files |
|
|
712 | # @INTERNAL |
| 690 | # @DESCRIPTION: |
713 | # @DESCRIPTION: |
| 691 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
714 | # Fixes the paths in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
| 692 | # moves the *.pc-files into the pkgconfig directory |
715 | # moves the *.pc files into the pkgconfig directory. |
| 693 | fix_library_files() { |
716 | fix_library_files() { |
|
|
717 | local libfile |
| 694 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
718 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 695 | if [[ -e ${libfile} ]]; then |
719 | if [[ -e ${libfile} ]]; then |
| 696 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
720 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 697 | fi |
721 | fi |
| 698 | done |
722 | done |
| 699 | |
723 | |
| 700 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
724 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations |
| 701 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
725 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 702 | if [[ -e ${libfile} ]]; then |
726 | if [[ -e ${libfile} ]]; then |
| 703 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
727 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 704 | |
728 | |
| 705 | # Move .pc files into the pkgconfig directory |
729 | # Move .pc files into the pkgconfig directory |
| 706 | dodir ${QTPCDIR#${EPREFIX}} |
730 | dodir ${QTPCDIR#${EPREFIX}} |
| 707 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
731 | mv ${libfile} "${D}"/${QTPCDIR}/ || die "moving ${libfile} to ${D}/${QTPCDIR}/ failed" |
| 708 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
|
|
| 709 | fi |
732 | fi |
| 710 | done |
733 | done |
| 711 | |
734 | |
| 712 | # Don't install an empty directory |
735 | # Don't install an empty directory |
| 713 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
736 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 714 | } |
737 | } |
| 715 | |
738 | |
| 716 | # @FUNCTION: qt_use |
739 | # @FUNCTION: qt_use |
| 717 | # @USAGE: < flag > [ feature ] [ enableval ] |
740 | # @USAGE: < flag > [ feature ] [ enableval ] |
| 718 | # @DESCRIPTION: |
741 | # @DESCRIPTION: |
| 719 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
742 | # This will echo "-${enableval}-${feature}" if <flag> is enabled, or |
| 720 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
743 | # "-no-${feature}" if it's disabled. If [feature] is not specified, <flag> |
| 721 | # will be used for that. If [enableval] is not specified, it omits the |
744 | # will be used for that. If [enableval] is not specified, it omits the |
| 722 | # assignment-part |
745 | # "-${enableval}" part. |
| 723 | qt_use() { |
746 | qt_use() { |
| 724 | local flag=$1 |
747 | use "$1" && echo "${3:+-$3}-${2:-$1}" || echo "-no-${2:-$1}" |
| 725 | local feature=$1 |
|
|
| 726 | local enableval= |
|
|
| 727 | |
|
|
| 728 | [[ -n $2 ]] && feature=$2 |
|
|
| 729 | [[ -n $3 ]] && enableval=-$3 |
|
|
| 730 | |
|
|
| 731 | if use ${flag}; then |
|
|
| 732 | echo "${enableval}-${feature}" |
|
|
| 733 | else |
|
|
| 734 | echo "-no-${feature}" |
|
|
| 735 | fi |
|
|
| 736 | } |
748 | } |
| 737 | |
749 | |
| 738 | # @FUNCTION: qt_mkspecs_dir |
750 | # @FUNCTION: qt_mkspecs_dir |
| 739 | # @RETURN: the specs-directory w/o path |
751 | # @RETURN: the specs-directory w/o path |
| 740 | # @DESCRIPTION: |
752 | # @DESCRIPTION: |
| 741 | # Allows us to define which mkspecs dir we want to use. |
753 | # Allows us to define which mkspecs dir we want to use. |
| 742 | qt_mkspecs_dir() { |
754 | qt_mkspecs_dir() { |
| 743 | # Allows us to define which mkspecs dir we want to use. |
|
|
| 744 | local spec |
755 | local spec= |
| 745 | |
|
|
| 746 | case ${CHOST} in |
756 | case ${CHOST} in |
| 747 | *-freebsd*|*-dragonfly*) |
757 | *-freebsd*|*-dragonfly*) |
| 748 | spec=freebsd ;; |
758 | spec=freebsd ;; |
| 749 | *-openbsd*) |
759 | *-openbsd*) |
| 750 | spec=openbsd ;; |
760 | spec=openbsd ;; |
| … | |
… | |
| 762 | *-solaris*) |
772 | *-solaris*) |
| 763 | spec=solaris ;; |
773 | spec=solaris ;; |
| 764 | *-linux-*|*-linux) |
774 | *-linux-*|*-linux) |
| 765 | spec=linux ;; |
775 | spec=linux ;; |
| 766 | *) |
776 | *) |
| 767 | die "Unknown CHOST, no platform choosen." |
777 | die "Unknown CHOST, no platform chosen" |
| 768 | esac |
778 | esac |
| 769 | |
779 | |
| 770 | CXX=$(tc-getCXX) |
780 | CXX=$(tc-getCXX) |
| 771 | if [[ ${CXX} == *g++* ]]; then |
781 | if [[ ${CXX} == *g++* ]]; then |
| 772 | spec+=-g++ |
782 | spec+=-g++ |
| 773 | elif [[ ${CXX} == *icpc* ]]; then |
783 | elif [[ ${CXX} == *icpc* ]]; then |
| 774 | spec+=-icc |
784 | spec+=-icc |
| 775 | else |
785 | else |
| 776 | die "Unknown compiler ${CXX}." |
786 | die "Unknown compiler '${CXX}'" |
| 777 | fi |
|
|
| 778 | if [[ -n ${LIBDIR/lib} ]]; then |
|
|
| 779 | spec+=-${LIBDIR/lib} |
|
|
| 780 | fi |
787 | fi |
| 781 | |
788 | |
| 782 | # Add -64 for 64bit profiles |
789 | # Add -64 for 64bit profiles |
| 783 | if use x64-freebsd || |
790 | if use x64-freebsd || |
| 784 | use amd64-linux || |
791 | use amd64-linux || |
| … | |
… | |
| 791 | |
798 | |
| 792 | echo "${spec}" |
799 | echo "${spec}" |
| 793 | } |
800 | } |
| 794 | |
801 | |
| 795 | # @FUNCTION: qt_assistant_cleanup |
802 | # @FUNCTION: qt_assistant_cleanup |
| 796 | # @RETURN: nothing |
803 | # @INTERNAL |
| 797 | # @DESCRIPTION: |
804 | # @DESCRIPTION: |
| 798 | # Tries to clean up tools.pro for qt-assistant ebuilds |
805 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
| 799 | # Meant to be called in src_prepare |
806 | # Meant to be called in src_prepare(). |
|
|
807 | # Since Qt 4.7.4 this function is a no-op. |
| 800 | qt_assistant_cleanup() { |
808 | qt_assistant_cleanup() { |
|
|
809 | # apply patching to qt-assistant ebuilds only |
|
|
810 | [[ ${PN} != "qt-assistant" ]] && return |
|
|
811 | |
|
|
812 | # no longer needed for 4.7.4 and later |
|
|
813 | version_is_at_least "4.7.4" && return |
|
|
814 | |
| 801 | # different versions (and branches...) may need different handling, |
815 | # different versions (and branches...) may need different handling, |
| 802 | # add a case if you need special handling |
816 | # add a case if you need special handling |
| 803 | case "${MY_PV_EXTRA}" in |
817 | case "${MY_PV_EXTRA}" in |
| 804 | *kde-qt*) |
818 | *kde-qt*) |
| 805 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
819 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
| … | |
… | |
| 814 | ;; |
828 | ;; |
| 815 | esac |
829 | esac |
| 816 | } |
830 | } |
| 817 | |
831 | |
| 818 | # @FUNCTION: qt_nolibx11 |
832 | # @FUNCTION: qt_nolibx11 |
| 819 | # @RETURN: nothing |
833 | # @INTERNAL |
| 820 | # @DESCRIPTION: |
834 | # @DESCRIPTION: |
| 821 | # Ignore X11 tests for packages that don't need X libraries installed |
835 | # Ignore X11 tests for packages that don't need X libraries installed. |
| 822 | qt_nolibx11() { |
836 | qt_nolibx11() { |
| 823 | einfo "removing X11 check to allow X-less compilation" |
|
|
| 824 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
837 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
| 825 | die "x11 check sed failed" |
838 | die "x11 check sed failed" |
| 826 | } |
839 | } |
| 827 | |
840 | |
| 828 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |
841 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |