| 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.21 2009/02/14 22:25:10 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.91 2011/07/08 11:35:01 ssuominen 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="ftp://ftp.trolltech.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 | qt4-build_pkg_setup() { |
71 | qt4-build_pkg_setup() { |
| 40 | # EAPI=2 ebuilds set use-deps, others need this: |
72 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 41 | if [[ $EAPI != 2 ]]; then |
73 | |
| 42 | # Make sure debug setting corresponds with qt-core (bug 258512) |
74 | # Protect users by not allowing downgrades between releases |
| 43 | if [[ $PN != "qt-core" ]]; then |
75 | # Downgrading revisions within the same release should be allowed |
| 44 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
76 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
| 45 | ~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!" |
| 46 | fi |
83 | fi |
|
|
84 | fi |
| 47 | |
85 | |
| 48 | # Check USE requirements |
86 | if [[ "${PN}" == "qt-webkit" ]]; then |
| 49 | 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 |
| 50 | fi |
95 | fi |
|
|
96 | eshopts_pop |
|
|
97 | fi |
| 51 | |
98 | |
| 52 | # Set up installation directories |
|
|
| 53 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
|
|
| 54 | QTPREFIXDIR=/usr |
|
|
| 55 | QTBINDIR=/usr/bin |
|
|
| 56 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
| 57 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
|
|
| 58 | QTDATADIR=/usr/share/qt4 |
|
|
| 59 | QTDOCDIR=/usr/share/doc/qt-${PV} |
|
|
| 60 | QTHEADERDIR=/usr/include/qt4 |
|
|
| 61 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
| 62 | QTSYSCONFDIR=/etc/qt4 |
|
|
| 63 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 64 | QTEXAMPLESDIR=${QTDATADIR}/examples |
|
|
| 65 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
| 66 | |
|
|
| 67 | PLATFORM=$(qt_mkspecs_dir) |
|
|
| 68 | |
|
|
| 69 | PATH="${S}/bin:${PATH}" |
99 | PATH="${S}/bin${PATH:+:}${PATH}" |
|
|
100 | if [[ ${CHOST} != *-darwin* ]]; then |
| 70 | 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 |
| 71 | |
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 | |
| 72 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
120 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 73 | 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!" |
| 74 | echo |
|
|
| 75 | ebeep 5 |
|
|
| 76 | fi |
122 | fi |
| 77 | |
|
|
| 78 | if use custom-cxxflags; then |
|
|
| 79 | echo |
|
|
| 80 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
| 81 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
| 82 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
| 83 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
| 84 | ewarn "for breakfast. ;-) " |
|
|
| 85 | echo |
|
|
| 86 | fi |
|
|
| 87 | |
|
|
| 88 | } |
123 | } |
| 89 | |
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 |
| 90 | qt4-build_src_unpack() { |
138 | qt4-build_src_unpack() { |
|
|
139 | setqtenv |
| 91 | local target targets |
140 | local target targets= |
| 92 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
141 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 93 | 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 \ |
| 94 | ${QT4_EXTRACT_DIRECTORIES}; do |
143 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 95 | targets="${targets} ${MY_P}/${target}" |
144 | targets+=" ${MY_P}/${target}" |
| 96 | done |
145 | done |
| 97 | |
146 | |
| 98 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
147 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 99 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
148 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 100 | |
|
|
| 101 | case "${PV}" in |
|
|
| 102 | 4.4.?) |
|
|
| 103 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 104 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 105 | ;; |
|
|
| 106 | esac |
|
|
| 107 | |
|
|
| 108 | # Be backwards compatible for now |
|
|
| 109 | if [[ $EAPI != 2 ]]; then |
|
|
| 110 | qt4-build_src_prepare |
|
|
| 111 | fi |
|
|
| 112 | } |
149 | } |
| 113 | |
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. |
| 114 | qt4-build_src_prepare() { |
164 | qt4-build_src_prepare() { |
|
|
165 | setqtenv |
| 115 | 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 | has ${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 |
| 116 | |
189 | |
| 117 | if [[ ${PN} != qt-core ]]; then |
190 | if [[ ${PN} != qt-core ]]; then |
| 118 | skip_qmake_build_patch |
191 | skip_qmake_build_patch |
| 119 | skip_project_generation_patch |
192 | skip_project_generation_patch |
| 120 | symlink_binaries_to_buildtree |
193 | symlink_binaries_to_buildtree |
| 121 | fi |
194 | fi |
| 122 | |
195 | |
| 123 | # Bug 172219 |
196 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 124 | if !use custom-cxxflags;then |
197 | # qmake bus errors with -O2 but -O3 works |
| 125 | # Don't let the user go too overboard with flags. |
|
|
| 126 | strip-flags |
|
|
| 127 | replace-flags -O3 -O2 |
198 | replace-flags -O2 -O3 |
| 128 | fi |
199 | fi |
| 129 | |
200 | |
| 130 | # 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 | |
| 131 | # Unsupported old gcc versions - hardened needs this :( |
207 | # Unsupported old gcc versions - hardened needs this :( |
| 132 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
208 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 133 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
209 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 134 | 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" |
| 135 | fi |
214 | fi |
| 136 | |
215 | |
| 137 | # Bug 178652 |
216 | # Bug 261632 |
| 138 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
217 | if use ppc64; then |
| 139 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
218 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 140 | append-flags -fno-gcse |
219 | append-flags -mminimal-toc |
| 141 | fi |
220 | fi |
| 142 | |
221 | |
| 143 | |
222 | # Bug 282984 && Bug 295530 |
| 144 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
223 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
| 145 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
224 | -i configure || die "sed qmake compilers failed" |
| 146 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
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" |
|
|
231 | fi |
|
|
232 | |
|
|
233 | # Bug 172219 |
| 147 | -e "s:X11R6/::" \ |
234 | sed -e "s:X11R6/::" \ |
| 148 | -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" |
| 149 | |
236 | |
|
|
237 | if [[ ${CHOST} == *-darwin* ]]; then |
|
|
238 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
|
|
239 | # crippled (by design) :/ |
| 150 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
240 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 151 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
241 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 152 | -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" \ |
| 153 | -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" |
| 154 | |
245 | |
| 155 | } |
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" |
| 156 | |
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 |
| 157 | qt4-build_src_configure() { |
296 | qt4-build_src_configure() { |
| 158 | |
297 | setqtenv |
| 159 | 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 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
| 160 | |
339 | |
| 161 | echo ./configure ${myconf} |
340 | echo ./configure ${myconf} |
| 162 | ./configure ${myconf} || die "./configure failed" |
341 | ./configure ${myconf} || die "./configure failed" |
| 163 | } |
342 | myconf="" |
| 164 | |
343 | |
|
|
344 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
|
|
345 | } |
|
|
346 | |
|
|
347 | # @FUNCTION: qt4-build_src_compile |
|
|
348 | # @DESCRIPTION: Actual compile phase |
| 165 | qt4-build_src_compile() { |
349 | qt4-build_src_compile() { |
| 166 | # Be backwards compatible for now |
350 | setqtenv |
| 167 | if [[ $EAPI != 2 ]]; then |
|
|
| 168 | qt4-build_src_configure |
|
|
| 169 | fi |
|
|
| 170 | |
351 | |
| 171 | build_directories "${QT4_TARGET_DIRECTORIES}" |
352 | build_directories ${QT4_TARGET_DIRECTORIES} |
| 172 | } |
353 | } |
| 173 | |
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. |
| 174 | qt4-build_src_install() { |
393 | qt4-build_src_install() { |
|
|
394 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
|
|
395 | setqtenv |
| 175 | install_directories "${QT4_TARGET_DIRECTORIES}" |
396 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 176 | install_qconfigs |
397 | install_qconfigs |
| 177 | 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 |
| 178 | } |
402 | } |
| 179 | |
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. |
| 180 | standard_configure_options() { |
431 | standard_configure_options() { |
| 181 | local myconf="" |
432 | local myconf= |
| 182 | |
433 | |
| 183 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
434 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 184 | |
435 | |
| 185 | # Disable visibility explicitly if gcc version isn't 4 |
436 | # Disable visibility explicitly if gcc version isn't 4 |
| 186 | if [[ "$(gcc-major-version)" -lt "4" ]]; then |
437 | if [[ $(gcc-major-version) -lt 4 ]]; then |
| 187 | myconf="${myconf} -no-reduce-exports" |
438 | myconf+=" -no-reduce-exports" |
| 188 | fi |
439 | fi |
| 189 | |
440 | |
| 190 | # 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 | |
| 191 | if use pch; then |
444 | if use debug; then |
| 192 | myconf="${myconf} -pch" |
445 | myconf+=" -debug" |
| 193 | else |
446 | else |
| 194 | myconf="${myconf} -no-pch" |
447 | myconf+=" -release" |
| 195 | fi |
448 | fi |
| 196 | |
|
|
| 197 | if use debug; then |
|
|
| 198 | myconf="${myconf} -debug -no-separate-debug-info" |
449 | myconf+=" -no-separate-debug-info" |
| 199 | else |
450 | |
| 200 | myconf="${myconf} -release -no-separate-debug-info" |
451 | use aqua && myconf+=" -no-framework" |
| 201 | fi |
|
|
| 202 | |
452 | |
| 203 | # 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 |
| 204 | # ${ARCH}. Therefore we convert it to supported values. |
454 | # $(tc-arch). Therefore we convert it to supported values. |
| 205 | case "${ARCH}" in |
455 | case "$(tc-arch)" in |
| 206 | amd64) myconf="${myconf} -arch x86_64" ;; |
456 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
|
|
457 | ppc-macos) myconf+=" -arch ppc" ;; |
| 207 | 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" ;; |
| 208 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
461 | x86|x86-*) myconf+=" -arch i386" ;; |
| 209 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
462 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
| 210 | hppa|sh) myconf="${myconf} -arch generic" ;; |
463 | hppa|sh) myconf+=" -arch generic" ;; |
| 211 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
464 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 212 | esac |
465 | esac |
| 213 | |
466 | |
| 214 | 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 |
| 215 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
487 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 216 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
488 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 217 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
489 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 218 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
490 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 219 | -demosdir ${QTDEMOSDIR} -silent -fast |
491 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
| 220 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
492 | ${exceptions} |
| 221 | $(use x86-fbsd || echo -reduce-relocations) |
|
|
| 222 | -nomake examples -nomake demos" |
493 | -nomake examples -nomake demos" |
| 223 | |
494 | |
| 224 | echo "${myconf}" |
495 | echo "${myconf}" |
| 225 | } |
496 | } |
| 226 | |
497 | |
|
|
498 | # @FUNCTION: prepare_directories |
|
|
499 | # @USAGE: < directories > |
|
|
500 | # @DESCRIPTION: |
|
|
501 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
|
|
502 | prepare_directories() { |
|
|
503 | for x in "$@"; do |
|
|
504 | pushd "${S}"/${x} >/dev/null |
|
|
505 | einfo "running qmake in: $x" |
|
|
506 | # avoid running over the maximum argument number, bug #299810 |
|
|
507 | { |
|
|
508 | echo "${S}"/mkspecs/common/*.conf |
|
|
509 | find "${S}" -name '*.pr[io]' |
|
|
510 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
|
|
511 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
512 | popd >/dev/null |
|
|
513 | done |
|
|
514 | } |
|
|
515 | |
|
|
516 | |
|
|
517 | # @FUNCTION: build_directories |
|
|
518 | # @USAGE: < directories > |
|
|
519 | # @DESCRIPTION: |
|
|
520 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 227 | build_directories() { |
521 | build_directories() { |
| 228 | local dirs="$@" |
|
|
| 229 | for x in ${dirs}; do |
522 | for x in "$@"; do |
| 230 | cd "${S}"/${x} |
523 | pushd "${S}"/${x} >/dev/null |
| 231 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
524 | emake CC="$(tc-getCC)" \ |
| 232 | emake || die "emake failed" |
525 | CXX="$(tc-getCXX)" \ |
|
|
526 | LINK="$(tc-getCXX)" || die "emake failed" |
|
|
527 | popd >/dev/null |
| 233 | done |
528 | done |
| 234 | } |
529 | } |
| 235 | |
530 | |
|
|
531 | # @FUNCTION: install_directories |
|
|
532 | # @USAGE: < directories > |
|
|
533 | # @DESCRIPTION: |
|
|
534 | # run emake install in the given directories, which are separated by spaces |
| 236 | install_directories() { |
535 | install_directories() { |
| 237 | local dirs="$@" |
|
|
| 238 | for x in ${dirs}; do |
536 | for x in "$@"; do |
| 239 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
537 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 240 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
538 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 241 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
539 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
| 242 | done |
540 | done |
| 243 | } |
541 | } |
| 244 | |
542 | |
| 245 | # @ECLASS-VARIABLE: QCONFIG_ADD |
543 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 246 | # @DESCRIPTION: |
544 | # @DESCRIPTION: |
| 247 | # List options that need to be added to QT_CONFIG in qconfig.pri |
545 | # List options that need to be added to QT_CONFIG in qconfig.pri |
| 248 | QCONFIG_ADD="${QCONFIG_ADD:-}" |
546 | : ${QCONFIG_ADD:=} |
| 249 | |
547 | |
| 250 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
548 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
| 251 | # @DESCRIPTION: |
549 | # @DESCRIPTION: |
| 252 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
550 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
| 253 | QCONFIG_REMOVE="${QCONFIG_REMOVE:-}" |
551 | : ${QCONFIG_REMOVE:=} |
| 254 | |
552 | |
| 255 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
553 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 256 | # @DESCRIPTION: |
554 | # @DESCRIPTION: |
| 257 | # List variables that should be defined at the top of QtCore/qconfig.h |
555 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 258 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
556 | : ${QCONFIG_DEFINE:=} |
| 259 | |
557 | |
|
|
558 | # @FUNCTION: install_qconfigs |
|
|
559 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 260 | install_qconfigs() { |
560 | install_qconfigs() { |
| 261 | local x |
561 | local x |
| 262 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
562 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 263 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
563 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 264 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
564 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| 265 | done |
565 | done |
| 266 | insinto ${QTDATADIR}/mkspecs/gentoo |
566 | insinto ${QTDATADIR#${EPREFIX}}/mkspecs/gentoo |
| 267 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
567 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
| 268 | fi |
568 | fi |
| 269 | |
569 | |
| 270 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
570 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
| 271 | for x in ${QCONFIG_DEFINE}; do |
571 | for x in ${QCONFIG_DEFINE}; do |
| 272 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
572 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
| 273 | done |
573 | done |
| 274 | insinto ${QTHEADERDIR}/Gentoo |
574 | insinto ${QTHEADERDIR#${EPREFIX}}/Gentoo |
| 275 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
575 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 276 | fi |
576 | fi |
| 277 | } |
577 | } |
| 278 | |
578 | |
|
|
579 | # @FUNCTION: generate_qconfigs |
|
|
580 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 279 | generate_qconfigs() { |
581 | generate_qconfigs() { |
| 280 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
582 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 281 | local x qconfig_add qconfig_remove qconfig_new |
583 | local x qconfig_add qconfig_remove qconfig_new |
| 282 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
584 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 283 | [[ -f ${x} ]] || continue |
585 | [[ -f ${x} ]] || continue |
| 284 | qconfig_add="${qconfig_add} $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
586 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
| 285 | qconfig_remove="${qconfig_remove} $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
587 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
| 286 | done |
588 | done |
| 287 | |
589 | |
| 288 | # these error checks do not use die because dying in pkg_post{inst,rm} |
590 | # these error checks do not use die because dying in pkg_post{inst,rm} |
| 289 | # just makes things worse. |
591 | # just makes things worse. |
| 290 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
592 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
| … | |
… | |
| 297 | |
599 | |
| 298 | # generate list of QT_CONFIG entries from the existing list |
600 | # generate list of QT_CONFIG entries from the existing list |
| 299 | # including qconfig_add and excluding qconfig_remove |
601 | # including qconfig_add and excluding qconfig_remove |
| 300 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
602 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 301 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
603 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 302 | hasq ${x} ${qconfig_remove} || qconfig_new="${qconfig_new} ${x}" |
604 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 303 | done |
605 | done |
| 304 | |
606 | |
| 305 | # replace the existing QT_CONFIG list with qconfig_new |
607 | # replace the existing QT_CONFIG list with qconfig_new |
| 306 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
608 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 307 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
609 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 330 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
632 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 331 | fi |
633 | fi |
| 332 | fi |
634 | fi |
| 333 | } |
635 | } |
| 334 | |
636 | |
|
|
637 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
638 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 335 | qt4-build_pkg_postrm() { |
639 | qt4-build_pkg_postrm() { |
| 336 | generate_qconfigs |
640 | generate_qconfigs |
| 337 | } |
641 | } |
| 338 | |
642 | |
|
|
643 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
644 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
645 | # breakages and proposed solutions. |
| 339 | qt4-build_pkg_postinst() { |
646 | qt4-build_pkg_postinst() { |
| 340 | generate_qconfigs |
647 | generate_qconfigs |
| 341 | echo |
|
|
| 342 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
|
|
| 343 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
|
|
| 344 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
|
|
| 345 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
|
|
| 346 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
|
|
| 347 | ewarn |
|
|
| 348 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
|
|
| 349 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
|
|
| 350 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
|
|
| 351 | ewarn "configuration." |
|
|
| 352 | ewarn |
|
|
| 353 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
|
|
| 354 | echo |
|
|
| 355 | } |
648 | } |
| 356 | |
649 | |
|
|
650 | # @FUNCTION: skip_qmake_build_patch |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Don't need to build qmake, as it's already installed from qt-core |
| 357 | skip_qmake_build_patch() { |
653 | skip_qmake_build_patch() { |
| 358 | # Don't need to build qmake, as it's already installed from qt-core |
654 | # Don't need to build qmake, as it's already installed from qt-core |
| 359 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
655 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 360 | } |
656 | } |
| 361 | |
657 | |
|
|
658 | # @FUNCTION: skip_project_generation_patch |
|
|
659 | # @DESCRIPTION: |
|
|
660 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 362 | skip_project_generation_patch() { |
661 | skip_project_generation_patch() { |
| 363 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
662 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 364 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
663 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 365 | -i "${S}"/configure || die "Sed failed" |
664 | -i "${S}"/configure || die "Sed failed" |
| 366 | } |
665 | } |
| 367 | |
666 | |
|
|
667 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
668 | # @DESCRIPTION: |
|
|
669 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
670 | # time |
| 368 | symlink_binaries_to_buildtree() { |
671 | symlink_binaries_to_buildtree() { |
| 369 | for bin in qmake moc uic rcc; do |
672 | for bin in qmake moc uic rcc; do |
| 370 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
673 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 371 | done |
674 | done |
| 372 | } |
675 | } |
| 373 | |
676 | |
|
|
677 | # @FUNCTION: fix_library_files |
|
|
678 | # @DESCRIPTION: |
|
|
679 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
680 | # moves the *.pc-files into the pkgconfig directory |
| 374 | fix_library_files() { |
681 | fix_library_files() { |
| 375 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
682 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 376 | if [[ -e ${libfile} ]]; then |
683 | if [[ -e ${libfile} ]]; then |
| 377 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
684 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 378 | fi |
685 | fi |
| … | |
… | |
| 381 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
688 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
| 382 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
689 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 383 | if [[ -e ${libfile} ]]; then |
690 | if [[ -e ${libfile} ]]; then |
| 384 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
691 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 385 | |
692 | |
| 386 | # Move .pc files into the pkgconfig directory |
693 | # Move .pc files into the pkgconfig directory |
| 387 | |
|
|
| 388 | dodir ${QTPCDIR} |
694 | dodir ${QTPCDIR#${EPREFIX}} |
| 389 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
695 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 390 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
696 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 391 | fi |
697 | fi |
| 392 | done |
698 | done |
| 393 | |
699 | |
| 394 | # Don't install an empty directory |
700 | # Don't install an empty directory |
| 395 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
701 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 396 | } |
702 | } |
| 397 | |
703 | |
|
|
704 | # @FUNCTION: qt_use |
|
|
705 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
706 | # @DESCRIPTION: |
|
|
707 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
708 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
709 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
710 | # assignment-part |
| 398 | qt_use() { |
711 | qt_use() { |
| 399 | local flag="${1}" |
712 | local flag=$1 |
| 400 | local feature="${1}" |
713 | local feature=$1 |
| 401 | local enableval= |
714 | local enableval= |
| 402 | |
715 | |
| 403 | [[ -n ${2} ]] && feature=${2} |
716 | [[ -n $2 ]] && feature=$2 |
| 404 | [[ -n ${3} ]] && enableval="-${3}" |
717 | [[ -n $3 ]] && enableval=-$3 |
| 405 | |
718 | |
| 406 | if use ${flag}; then |
719 | if use ${flag}; then |
| 407 | echo "${enableval}-${feature}" |
720 | echo "${enableval}-${feature}" |
| 408 | else |
721 | else |
| 409 | echo "-no-${feature}" |
722 | echo "-no-${feature}" |
| 410 | fi |
723 | fi |
| 411 | } |
724 | } |
| 412 | |
725 | |
| 413 | # @ECLASS-VARIABLE: QT4_BUILT_WITH_USE_CHECK |
726 | # @FUNCTION: qt_mkspecs_dir |
|
|
727 | # @RETURN: the specs-directory w/o path |
| 414 | # @DESCRIPTION: |
728 | # @DESCRIPTION: |
| 415 | # The contents of $QT4_BUILT_WITH_USE_CHECK gets fed to built_with_use |
729 | # Allows us to define which mkspecs dir we want to use. |
| 416 | # (eutils.eclass), line per line. |
|
|
| 417 | # |
|
|
| 418 | # Example: |
|
|
| 419 | # @CODE |
|
|
| 420 | # pkg_setup() { |
|
|
| 421 | # use qt3support && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
| 422 | # ~x11-libs/qt-gui-${PV} qt3support" |
|
|
| 423 | # qt4-build_check_use |
|
|
| 424 | # } |
|
|
| 425 | # @CODE |
|
|
| 426 | |
|
|
| 427 | # Run built_with_use on each flag and print appropriate error messages if any |
|
|
| 428 | # flags are missing |
|
|
| 429 | _qt_built_with_use() { |
|
|
| 430 | local missing opt pkg flag flags |
|
|
| 431 | |
|
|
| 432 | if [[ ${1} = "--missing" ]]; then |
|
|
| 433 | missing="${1} ${2}" && shift 2 |
|
|
| 434 | fi |
|
|
| 435 | if [[ ${1:0:1} = "-" ]]; then |
|
|
| 436 | opt=${1} && shift |
|
|
| 437 | fi |
|
|
| 438 | |
|
|
| 439 | pkg=${1} && shift |
|
|
| 440 | |
|
|
| 441 | for flag in "${@}"; do |
|
|
| 442 | flags="${flags} ${flag}" |
|
|
| 443 | if ! built_with_use ${missing} ${opt} ${pkg} ${flag}; then |
|
|
| 444 | flags="${flags}*" |
|
|
| 445 | else |
|
|
| 446 | [[ ${opt} = "-o" ]] && return 0 |
|
|
| 447 | fi |
|
|
| 448 | done |
|
|
| 449 | if [[ "${flags# }" = "${@}" ]]; then |
|
|
| 450 | return 0 |
|
|
| 451 | fi |
|
|
| 452 | if [[ ${opt} = "-o" ]]; then |
|
|
| 453 | eerror "This package requires '${pkg}' to be built with any of the following USE flags: '$*'." |
|
|
| 454 | else |
|
|
| 455 | eerror "This package requires '${pkg}' to be built with the following USE flags: '${flags# }'." |
|
|
| 456 | fi |
|
|
| 457 | return 1 |
|
|
| 458 | } |
|
|
| 459 | |
|
|
| 460 | # @FUNCTION: qt4-build_check_use |
|
|
| 461 | # @DESCRIPTION: |
|
|
| 462 | # Check if the listed packages in $QT4_BUILT_WITH_USE_CHECK are built with the |
|
|
| 463 | # USE flags listed. |
|
|
| 464 | # |
|
|
| 465 | # If any of the required USE flags are missing, an eerror will be printed for |
|
|
| 466 | # each package with missing USE flags. |
|
|
| 467 | qt4-build_check_use() { |
|
|
| 468 | local line missing |
|
|
| 469 | while read line; do |
|
|
| 470 | [[ -z ${line} ]] && continue |
|
|
| 471 | if ! _qt_built_with_use ${line}; then |
|
|
| 472 | missing=true |
|
|
| 473 | fi |
|
|
| 474 | done <<< "${QT4_BUILT_WITH_USE_CHECK}" |
|
|
| 475 | if [[ -n ${missing} ]]; then |
|
|
| 476 | echo |
|
|
| 477 | eerror "Flags marked with an * are missing." |
|
|
| 478 | die "Missing USE flags found" |
|
|
| 479 | fi |
|
|
| 480 | } |
|
|
| 481 | |
|
|
| 482 | qt_mkspecs_dir() { |
730 | qt_mkspecs_dir() { |
| 483 | # Allows us to define which mkspecs dir we want to use. |
731 | # Allows us to define which mkspecs dir we want to use. |
| 484 | local spec |
732 | local spec |
| 485 | |
733 | |
| 486 | case ${CHOST} in |
734 | case ${CHOST} in |
| 487 | *-freebsd*|*-dragonfly*) |
735 | *-freebsd*|*-dragonfly*) |
| 488 | spec="freebsd" ;; |
736 | spec=freebsd ;; |
| 489 | *-openbsd*) |
737 | *-openbsd*) |
| 490 | spec="openbsd" ;; |
738 | spec=openbsd ;; |
| 491 | *-netbsd*) |
739 | *-netbsd*) |
| 492 | spec="netbsd" ;; |
740 | spec=netbsd ;; |
| 493 | *-darwin*) |
741 | *-darwin*) |
|
|
742 | if use aqua; then |
|
|
743 | # mac with carbon/cocoa |
|
|
744 | spec=macx |
|
|
745 | else |
|
|
746 | # darwin/mac with x11 |
| 494 | spec="darwin" ;; |
747 | spec=darwin |
|
|
748 | fi |
|
|
749 | ;; |
|
|
750 | *-solaris*) |
|
|
751 | spec=solaris ;; |
| 495 | *-linux-*|*-linux) |
752 | *-linux-*|*-linux) |
| 496 | spec="linux" ;; |
753 | spec=linux ;; |
| 497 | *) |
754 | *) |
| 498 | die "Unknown CHOST, no platform choosen." |
755 | die "Unknown CHOST, no platform choosen." |
| 499 | esac |
756 | esac |
| 500 | |
757 | |
| 501 | CXX=$(tc-getCXX) |
758 | CXX=$(tc-getCXX) |
| 502 | if [[ ${CXX/g++/} != ${CXX} ]]; then |
759 | if [[ ${CXX} == *g++* ]]; then |
| 503 | spec="${spec}-g++" |
760 | spec+=-g++ |
| 504 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
761 | elif [[ ${CXX} == *icpc* ]]; then |
| 505 | spec="${spec}-icc" |
762 | spec+=-icc |
| 506 | else |
763 | else |
| 507 | die "Unknown compiler ${CXX}." |
764 | die "Unknown compiler ${CXX}." |
| 508 | fi |
765 | fi |
|
|
766 | if [[ -n ${LIBDIR/lib} ]]; then |
|
|
767 | spec+=-${LIBDIR/lib} |
|
|
768 | fi |
|
|
769 | |
|
|
770 | # Add -64 for 64bit profiles |
|
|
771 | if use x64-freebsd || |
|
|
772 | use amd64-linux || |
|
|
773 | use x64-macos || |
|
|
774 | use x64-solaris || |
|
|
775 | use sparc64-solaris |
|
|
776 | then |
|
|
777 | spec+=-64 |
|
|
778 | fi |
| 509 | |
779 | |
| 510 | echo "${spec}" |
780 | echo "${spec}" |
| 511 | } |
781 | } |
| 512 | |
782 | |
| 513 | case ${EAPI:-0} in |
783 | # @FUNCTION: qt_assistant_cleanup |
| 514 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
784 | # @RETURN: nothing |
|
|
785 | # @DESCRIPTION: |
|
|
786 | # Tries to clean up tools.pro for qt-assistant ebuilds |
|
|
787 | # Meant to be called in src_prepare |
|
|
788 | qt_assistant_cleanup() { |
|
|
789 | # different versions (and branches...) may need different handling, |
|
|
790 | # add a case if you need special handling |
|
|
791 | case "${MY_PV_EXTRA}" in |
|
|
792 | *kde-qt*) |
|
|
793 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
794 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
795 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
796 | ;; |
|
|
797 | *) |
|
|
798 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
799 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
800 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
801 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
802 | ;; |
|
|
803 | esac |
|
|
804 | } |
|
|
805 | |
|
|
806 | # @FUNCTION: qt_nolibx11 |
|
|
807 | # @RETURN: nothing |
|
|
808 | # @DESCRIPTION: |
|
|
809 | # Ignore X11 tests for packages that don't need X libraries installed |
|
|
810 | qt_nolibx11() { |
|
|
811 | einfo "removing X11 check to allow X-less compilation" |
|
|
812 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
813 | die "x11 check sed failed" |
|
|
814 | } |
|
|
815 | |
| 515 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
816 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |
| 516 | esac |
|
|