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