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