| 1 | # Copyright 2007-2009 Gentoo Foundation |
1 | # Copyright 2007-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.20 2009/02/11 21:14:59 yngwin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.51 2009/11/10 00:56:29 spatz 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 | IUSE="${IUSE} debug pch" |
| 17 | |
18 | RDEPEND=" |
|
|
19 | !<x11-libs/qt-assistant-${PV} |
|
|
20 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
21 | !<x11-libs/qt-core-${PV} |
|
|
22 | !>x11-libs/qt-core-${PV}-r9999 |
|
|
23 | !<x11-libs/qt-dbus-${PV} |
|
|
24 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
25 | !<x11-libs/qt-demo-${PV} |
|
|
26 | !>x11-libs/qt-demo-${PV}-r9999 |
|
|
27 | !<x11-libs/qt-gui-${PV} |
|
|
28 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
29 | !<x11-libs/qt-opengl-${PV} |
|
|
30 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
31 | !<x11-libs/qt-phonon-${PV} |
|
|
32 | !>x11-libs/qt-phonon-${PV}-r9999 |
|
|
33 | !<x11-libs/qt-qt3support-${PV} |
|
|
34 | !>x11-libs/qt-qt3support-${PV}-r9999 |
|
|
35 | !<x11-libs/qt-script-${PV} |
|
|
36 | !>x11-libs/qt-script-${PV}-r9999 |
|
|
37 | !<x11-libs/qt-sql-${PV} |
|
|
38 | !>x11-libs/qt-sql-${PV}-r9999 |
|
|
39 | !<x11-libs/qt-svg-${PV} |
|
|
40 | !>x11-libs/qt-svg-${PV}-r9999 |
|
|
41 | !<x11-libs/qt-test-${PV} |
|
|
42 | !>x11-libs/qt-test-${PV}-r9999 |
|
|
43 | !<x11-libs/qt-webkit-${PV} |
|
|
44 | !>x11-libs/qt-webkit-${PV}-r9999 |
|
|
45 | !<x11-libs/qt-xmlpatterns-${PV} |
|
|
46 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
|
|
47 | " |
| 18 | case "${PV}" in |
48 | case "${PV}" in |
| 19 | 4.?.?_rc*) |
49 | 4.?.?_rc* | 4.?.?_beta* ) |
| 20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
50 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 21 | MY_PV="${PV/_rc/-rc}" |
51 | MY_PV="${PV/_/-}" |
| 22 | ;; |
52 | ;; |
| 23 | *) |
53 | *) |
| 24 | SRCTYPE="${SRCTYPE:-opensource-src}" |
54 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 25 | MY_PV="${PV}" |
55 | MY_PV="${PV}" |
| 26 | ;; |
56 | ;; |
| 27 | esac |
57 | esac |
|
|
58 | |
|
|
59 | if version_is_at_least 4.5.99999999 ${PV} ; then |
|
|
60 | MY_P="qt-everywhere-${SRCTYPE}-${MY_PV}" |
|
|
61 | else |
| 28 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
62 | MY_P="qt-x11-${SRCTYPE}-${MY_PV}" |
|
|
63 | fi |
| 29 | S=${WORKDIR}/${MY_P} |
64 | S=${WORKDIR}/${MY_P} |
| 30 | |
65 | |
| 31 | HOMEPAGE="http://www.qtsoftware.com/" |
66 | HOMEPAGE="http://qt.nokia.com/" |
|
|
67 | if version_is_at_least 4.5.3 ${PV} ; then |
|
|
68 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
69 | else |
| 32 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
70 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.bz2" |
|
|
71 | fi |
| 33 | |
72 | |
| 34 | case "${PV}" in |
73 | case "${PV}" in |
| 35 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
74 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
| 36 | *) ;; |
75 | *) ;; |
| 37 | esac |
76 | esac |
| 38 | |
77 | |
|
|
78 | if version_is_at_least 4.5 ${PV} ; then |
|
|
79 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
80 | fi |
|
|
81 | |
|
|
82 | # @FUNCTION: qt4-build_pkg_setup |
|
|
83 | # @DESCRIPTION: |
|
|
84 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 39 | qt4-build_pkg_setup() { |
85 | qt4-build_pkg_setup() { |
| 40 | # EAPI=2 ebuilds set use-deps, others need this: |
86 | # EAPI=2 ebuilds set use-deps, others need this: |
| 41 | if [[ $EAPI != 2 ]]; then |
87 | if [[ $EAPI != 2 ]]; then |
| 42 | # Make sure debug setting corresponds with qt-core (bug 258512) |
88 | # Make sure debug setting corresponds with qt-core (bug 258512) |
| 43 | if [[ $PN != "qt-core" ]]; then |
89 | if [[ $PN != "qt-core" ]]; then |
| … | |
… | |
| 47 | |
93 | |
| 48 | # Check USE requirements |
94 | # Check USE requirements |
| 49 | qt4-build_check_use |
95 | qt4-build_check_use |
| 50 | fi |
96 | fi |
| 51 | |
97 | |
|
|
98 | PATH="${S}/bin:${PATH}" |
|
|
99 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
100 | |
|
|
101 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
102 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
103 | echo |
|
|
104 | ebeep 3 |
|
|
105 | fi |
|
|
106 | } |
|
|
107 | |
|
|
108 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
109 | # @DESCRIPTION: |
|
|
110 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
111 | # code should be compiled. This is a space-separated list |
|
|
112 | |
|
|
113 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
114 | # @DESCRIPTION: |
|
|
115 | # Space separated list including the directories that will be extracted from Qt |
|
|
116 | # tarball |
|
|
117 | |
|
|
118 | # @FUNCTION: qt4-build_src_unpack |
|
|
119 | # @DESCRIPTION: |
|
|
120 | # Unpacks the sources |
|
|
121 | qt4-build_src_unpack() { |
|
|
122 | setqtenv |
|
|
123 | local target targets licenses tar_pkg tar_args |
|
|
124 | if version_is_at_least 4.5 ${PV} ; then |
|
|
125 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
126 | else |
|
|
127 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
128 | fi |
|
|
129 | for target in configure ${licenses} projects.pro \ |
|
|
130 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
|
|
131 | ${QT4_EXTRACT_DIRECTORIES}; do |
|
|
132 | targets="${targets} ${MY_P}/${target}" |
|
|
133 | done |
|
|
134 | |
|
|
135 | tar_pkg=${MY_P}.tar.bz2 |
|
|
136 | tar_args="xjpf" |
|
|
137 | if version_is_at_least 4.5.3 ${PV} ; then |
|
|
138 | tar_pkg=${tar_pkg/bz2/gz} |
|
|
139 | tar_args="xzpf" |
|
|
140 | fi |
|
|
141 | |
|
|
142 | echo tar ${tar_args} "${DISTDIR}"/${tar_pkg} ${targets} |
|
|
143 | tar ${tar_args} "${DISTDIR}"/${tar_pkg} ${targets} |
|
|
144 | |
|
|
145 | case "${PV}" in |
|
|
146 | 4.4.?) |
|
|
147 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
148 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
149 | ;; |
|
|
150 | esac |
|
|
151 | |
|
|
152 | # Be backwards compatible for now |
|
|
153 | if [[ $EAPI != 2 ]]; then |
|
|
154 | qt4-build_src_prepare |
|
|
155 | fi |
|
|
156 | } |
|
|
157 | |
|
|
158 | # @ECLASS-VARIABLE: PATCHES |
|
|
159 | # @DESCRIPTION: |
|
|
160 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
161 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
162 | # example: |
|
|
163 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
164 | # ${FILESDIR}"/mypatch2.patch" |
|
|
165 | # |
|
|
166 | |
|
|
167 | # @FUNCTION: qt4-build_src_prepare |
|
|
168 | # @DESCRIPTION: |
|
|
169 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
170 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
|
|
171 | qt4-build_src_prepare() { |
|
|
172 | setqtenv |
|
|
173 | cd "${S}" |
|
|
174 | |
|
|
175 | if [[ ${PN} != qt-core ]]; then |
|
|
176 | skip_qmake_build_patch |
|
|
177 | skip_project_generation_patch |
|
|
178 | symlink_binaries_to_buildtree |
|
|
179 | fi |
|
|
180 | |
|
|
181 | # Bug 282984 |
|
|
182 | sed -e "s/\(^SYSTEM_VARIABLES\)/CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1/" \ |
|
|
183 | -i configure || die "sed qmake compilers failed" |
|
|
184 | sed -e "s/\(\$MAKE\)/\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX)/" \ |
|
|
185 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
|
|
186 | |
|
|
187 | # Bug 178652 |
|
|
188 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
189 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
190 | append-flags -fno-gcse |
|
|
191 | fi |
|
|
192 | |
|
|
193 | # Unsupported old gcc versions - hardened needs this :( |
|
|
194 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
195 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
196 | append-cxxflags -fno-stack-protector |
|
|
197 | # Bug 253127 |
|
|
198 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
199 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
200 | fi |
|
|
201 | |
|
|
202 | # Bug 261632 |
|
|
203 | if use ppc64; then |
|
|
204 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
|
|
205 | append-flags -mminimal-toc |
|
|
206 | fi |
|
|
207 | |
|
|
208 | # Bug 172219 |
|
|
209 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
210 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
211 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
212 | -e "s:X11R6/::" \ |
|
|
213 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
214 | |
|
|
215 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
216 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
217 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
218 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
219 | |
|
|
220 | base_src_prepare |
|
|
221 | } |
|
|
222 | |
|
|
223 | # @FUNCTION: qt4-build_src_configure |
|
|
224 | # @DESCRIPTION: |
|
|
225 | # Default configure phase |
|
|
226 | qt4-build_src_configure() { |
|
|
227 | setqtenv |
|
|
228 | myconf="$(standard_configure_options) ${myconf}" |
|
|
229 | |
|
|
230 | echo ./configure ${myconf} |
|
|
231 | ./configure ${myconf} || die "./configure failed" |
|
|
232 | myconf="" |
|
|
233 | } |
|
|
234 | |
|
|
235 | # @FUNCTION: qt4-build_src_compile |
|
|
236 | # @DESCRIPTION: Actual compile phase |
|
|
237 | qt4-build_src_compile() { |
|
|
238 | setqtenv |
|
|
239 | # Be backwards compatible for now |
|
|
240 | if [[ $EAPI != 2 ]]; then |
|
|
241 | qt4-build_src_configure |
|
|
242 | fi |
|
|
243 | |
|
|
244 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
245 | } |
|
|
246 | |
|
|
247 | # @FUNCTION: qt4-build_src_install |
|
|
248 | # @DESCRIPTION: |
|
|
249 | # Perform the actual installation including some library fixes. |
|
|
250 | qt4-build_src_install() { |
|
|
251 | setqtenv |
|
|
252 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
253 | install_qconfigs |
|
|
254 | fix_library_files |
|
|
255 | } |
|
|
256 | |
|
|
257 | # @FUNCTION: setqtenv |
|
|
258 | setqtenv() { |
| 52 | # Set up installation directories |
259 | # Set up installation directories |
| 53 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
260 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 54 | QTPREFIXDIR=/usr |
261 | QTPREFIXDIR=/usr |
| 55 | QTBINDIR=/usr/bin |
262 | QTBINDIR=/usr/bin |
| 56 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
263 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
264 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 57 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
265 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
| 58 | QTDATADIR=/usr/share/qt4 |
266 | QTDATADIR=/usr/share/qt4 |
| 59 | QTDOCDIR=/usr/share/doc/qt-${PV} |
267 | QTDOCDIR=/usr/share/doc/qt-${PV} |
| 60 | QTHEADERDIR=/usr/include/qt4 |
268 | QTHEADERDIR=/usr/include/qt4 |
| 61 | QTPLUGINDIR=${QTLIBDIR}/plugins |
269 | QTPLUGINDIR=${QTLIBDIR}/plugins |
| 62 | QTSYSCONFDIR=/etc/qt4 |
270 | QTSYSCONFDIR=/etc/qt4 |
| 63 | QTTRANSDIR=${QTDATADIR}/translations |
271 | QTTRANSDIR=${QTDATADIR}/translations |
| 64 | QTEXAMPLESDIR=${QTDATADIR}/examples |
272 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 65 | QTDEMOSDIR=${QTDATADIR}/demos |
273 | QTDEMOSDIR=${QTDATADIR}/demos |
| 66 | |
274 | QT_INSTALL_PREFIX=/usr/$(get_libdir)/qt4 |
| 67 | PLATFORM=$(qt_mkspecs_dir) |
275 | PLATFORM=$(qt_mkspecs_dir) |
| 68 | |
276 | |
| 69 | PATH="${S}/bin:${PATH}" |
277 | unset QMAKESPEC |
| 70 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
| 71 | |
|
|
| 72 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
| 73 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
| 74 | echo |
|
|
| 75 | ebeep 5 |
|
|
| 76 | fi |
|
|
| 77 | } |
278 | } |
| 78 | |
279 | |
| 79 | qt4-build_src_unpack() { |
280 | # @FUNCTION: standard_configure_options |
| 80 | local target targets |
281 | # @DESCRIPTION: |
| 81 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
282 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 82 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
283 | # debug info is wanted or not. |
| 83 | ${QT4_EXTRACT_DIRECTORIES}; do |
|
|
| 84 | targets="${targets} ${MY_P}/${target}" |
|
|
| 85 | done |
|
|
| 86 | |
|
|
| 87 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
| 88 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
| 89 | |
|
|
| 90 | case "${PV}" in |
|
|
| 91 | 4.4.?) |
|
|
| 92 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 93 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 94 | ;; |
|
|
| 95 | esac |
|
|
| 96 | |
|
|
| 97 | # Be backwards compatible for now |
|
|
| 98 | if [[ $EAPI != 2 ]]; then |
|
|
| 99 | qt4-build_src_prepare |
|
|
| 100 | fi |
|
|
| 101 | } |
|
|
| 102 | |
|
|
| 103 | qt4-build_src_prepare() { |
|
|
| 104 | cd "${S}" |
|
|
| 105 | |
|
|
| 106 | if [[ ${PN} != qt-core ]]; then |
|
|
| 107 | skip_qmake_build_patch |
|
|
| 108 | skip_project_generation_patch |
|
|
| 109 | symlink_binaries_to_buildtree |
|
|
| 110 | fi |
|
|
| 111 | |
|
|
| 112 | # Bug 253127 |
|
|
| 113 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
| 114 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
| 115 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
| 116 | fi |
|
|
| 117 | |
|
|
| 118 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 119 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 120 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 121 | -e "s:X11R6/::" \ |
|
|
| 122 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 123 | |
|
|
| 124 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 125 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 126 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 127 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
| 128 | } |
|
|
| 129 | |
|
|
| 130 | qt4-build_src_configure() { |
|
|
| 131 | if use custom-cxxflags; then |
|
|
| 132 | echo |
|
|
| 133 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
| 134 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
| 135 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
| 136 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
| 137 | ewarn "for breakfast. ;-) " |
|
|
| 138 | echo |
|
|
| 139 | else |
|
|
| 140 | # Don't let the user go too overboard with flags. |
|
|
| 141 | strip-flags |
|
|
| 142 | replace-flags -O3 -O2 |
|
|
| 143 | fi |
|
|
| 144 | |
|
|
| 145 | # Unsupported old gcc versions - hardened needs this :( |
|
|
| 146 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
| 147 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
| 148 | append-cxxflags -fno-stack-protector |
|
|
| 149 | fi |
|
|
| 150 | |
|
|
| 151 | # Bug 178652 |
|
|
| 152 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 153 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 154 | append-flags -fno-gcse |
|
|
| 155 | fi |
|
|
| 156 | |
|
|
| 157 | myconf="$(standard_configure_options) ${myconf}" |
|
|
| 158 | |
|
|
| 159 | echo ./configure ${myconf} |
|
|
| 160 | ./configure ${myconf} || die "./configure failed" |
|
|
| 161 | } |
|
|
| 162 | |
|
|
| 163 | qt4-build_src_compile() { |
|
|
| 164 | # Be backwards compatible for now |
|
|
| 165 | if [[ $EAPI != 2 ]]; then |
|
|
| 166 | qt4-build_src_configure |
|
|
| 167 | fi |
|
|
| 168 | |
|
|
| 169 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 170 | } |
|
|
| 171 | |
|
|
| 172 | qt4-build_src_install() { |
|
|
| 173 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 174 | install_qconfigs |
|
|
| 175 | fix_library_files |
|
|
| 176 | } |
|
|
| 177 | |
|
|
| 178 | standard_configure_options() { |
284 | standard_configure_options() { |
| 179 | local myconf="" |
285 | local myconf="" |
| 180 | |
286 | |
| 181 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
287 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 182 | |
288 | |
| … | |
… | |
| 197 | else |
303 | else |
| 198 | myconf="${myconf} -release -no-separate-debug-info" |
304 | myconf="${myconf} -release -no-separate-debug-info" |
| 199 | fi |
305 | fi |
| 200 | |
306 | |
| 201 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
307 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 202 | # ${ARCH}. Therefore we convert it to supported values. |
308 | # $(tc-arch). Therefore we convert it to supported values. |
| 203 | case "${ARCH}" in |
309 | case "$(tc-arch)" in |
| 204 | amd64) myconf="${myconf} -arch x86_64" ;; |
310 | amd64) myconf="${myconf} -arch x86_64" ;; |
| 205 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
311 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
| 206 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
312 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
| 207 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
313 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 208 | hppa|sh) myconf="${myconf} -arch generic" ;; |
314 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 209 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
315 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 210 | esac |
316 | esac |
| 211 | |
317 | |
|
|
318 | # 4.6: build qt-core with exceptions or qt-xmlpatterns won't build |
|
|
319 | local exceptions= |
|
|
320 | case "${PV}" in |
|
|
321 | 4.6.*) |
|
|
322 | if [[ ${PN} != "qt-core" ]] && [[ ${PN} != "qt-xmlpatterns" ]]; then |
|
|
323 | exceptions="-no-exceptions" |
|
|
324 | fi |
|
|
325 | ;; |
|
|
326 | *) |
|
|
327 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
328 | ;; |
|
|
329 | esac |
|
|
330 | |
| 212 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
331 | myconf="${myconf} -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
| 213 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
332 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 214 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
333 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 215 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
334 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 216 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
335 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 217 | -demosdir ${QTDEMOSDIR} -silent -fast |
336 | -demosdir ${QTDEMOSDIR} -silent -fast |
| 218 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
337 | ${exceptions} |
| 219 | $(use x86-fbsd || echo -reduce-relocations) |
|
|
| 220 | -nomake examples -nomake demos" |
338 | -reduce-relocations -nomake examples -nomake demos" |
|
|
339 | |
|
|
340 | # Make eclass >= 4.5.x ready |
|
|
341 | case "${MY_PV}" in |
|
|
342 | 4.5.* | 4.6.* ) |
|
|
343 | myconf="${myconf} -opensource" |
|
|
344 | ;; |
|
|
345 | esac |
| 221 | |
346 | |
| 222 | echo "${myconf}" |
347 | echo "${myconf}" |
| 223 | } |
348 | } |
| 224 | |
349 | |
|
|
350 | # @FUNCTION: build_directories |
|
|
351 | # @USAGE: < directories > |
|
|
352 | # @DESCRIPTION: |
|
|
353 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 225 | build_directories() { |
354 | build_directories() { |
| 226 | local dirs="$@" |
355 | local dirs="$@" |
| 227 | for x in ${dirs}; do |
356 | for x in ${dirs}; do |
| 228 | cd "${S}"/${x} |
357 | cd "${S}"/${x} |
|
|
358 | sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:/usr/$(get_libdir)/qt4:g" $(find "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/linux.conf || die |
| 229 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
359 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 230 | emake || die "emake failed" |
360 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
|
|
361 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
|
|
362 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
| 231 | done |
363 | done |
| 232 | } |
364 | } |
| 233 | |
365 | |
|
|
366 | # @FUNCTION: install_directories |
|
|
367 | # @USAGE: < directories > |
|
|
368 | # @DESCRIPTION: |
|
|
369 | # run emake install in the given directories, which are separated by spaces |
| 234 | install_directories() { |
370 | install_directories() { |
| 235 | local dirs="$@" |
371 | local dirs="$@" |
| 236 | for x in ${dirs}; do |
372 | for x in ${dirs}; do |
| 237 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
373 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 238 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
374 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 253 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
389 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 254 | # @DESCRIPTION: |
390 | # @DESCRIPTION: |
| 255 | # List variables that should be defined at the top of QtCore/qconfig.h |
391 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 256 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
392 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 257 | |
393 | |
|
|
394 | # @FUNCTION: install_qconfigs |
|
|
395 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 258 | install_qconfigs() { |
396 | install_qconfigs() { |
| 259 | local x |
397 | local x |
| 260 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
398 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 261 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
399 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 262 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
400 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 272 | insinto ${QTHEADERDIR}/Gentoo |
410 | insinto ${QTHEADERDIR}/Gentoo |
| 273 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
411 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 274 | fi |
412 | fi |
| 275 | } |
413 | } |
| 276 | |
414 | |
|
|
415 | # @FUNCTION: generate_qconfigs |
|
|
416 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 277 | generate_qconfigs() { |
417 | generate_qconfigs() { |
| 278 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
418 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 279 | local x qconfig_add qconfig_remove qconfig_new |
419 | local x qconfig_add qconfig_remove qconfig_new |
| 280 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
420 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 281 | [[ -f ${x} ]] || continue |
421 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 328 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
468 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 329 | fi |
469 | fi |
| 330 | fi |
470 | fi |
| 331 | } |
471 | } |
| 332 | |
472 | |
|
|
473 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
474 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 333 | qt4-build_pkg_postrm() { |
475 | qt4-build_pkg_postrm() { |
| 334 | generate_qconfigs |
476 | generate_qconfigs |
| 335 | } |
477 | } |
| 336 | |
478 | |
|
|
479 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
480 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
481 | # breakages and proposed solutions. |
| 337 | qt4-build_pkg_postinst() { |
482 | qt4-build_pkg_postinst() { |
| 338 | generate_qconfigs |
483 | generate_qconfigs |
| 339 | echo |
484 | echo |
| 340 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
485 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
| 341 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
486 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| … | |
… | |
| 346 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
491 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
| 347 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
492 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
| 348 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
493 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
| 349 | ewarn "configuration." |
494 | ewarn "configuration." |
| 350 | ewarn |
495 | ewarn |
| 351 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
496 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
| 352 | echo |
497 | echo |
| 353 | } |
498 | } |
| 354 | |
499 | |
|
|
500 | # @FUNCTION: skip_qmake_build_patch |
|
|
501 | # @DESCRIPTION: |
|
|
502 | # Don't need to build qmake, as it's already installed from qt-core |
| 355 | skip_qmake_build_patch() { |
503 | skip_qmake_build_patch() { |
| 356 | # Don't need to build qmake, as it's already installed from qt-core |
504 | # Don't need to build qmake, as it's already installed from qt-core |
| 357 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
505 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 358 | } |
506 | } |
| 359 | |
507 | |
|
|
508 | # @FUNCTION: skip_project_generation_patch |
|
|
509 | # @DESCRIPTION: |
|
|
510 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 360 | skip_project_generation_patch() { |
511 | skip_project_generation_patch() { |
| 361 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
512 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 362 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
513 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 363 | -i "${S}"/configure || die "Sed failed" |
514 | -i "${S}"/configure || die "Sed failed" |
| 364 | } |
515 | } |
| 365 | |
516 | |
|
|
517 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
518 | # @DESCRIPTION: |
|
|
519 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
520 | # time |
| 366 | symlink_binaries_to_buildtree() { |
521 | symlink_binaries_to_buildtree() { |
| 367 | for bin in qmake moc uic rcc; do |
522 | for bin in qmake moc uic rcc; do |
| 368 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
523 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 369 | done |
524 | done |
| 370 | } |
525 | } |
| 371 | |
526 | |
|
|
527 | # @FUNCTION: fix_library_files |
|
|
528 | # @DESCRIPTION: |
|
|
529 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
530 | # moves the *.pc-files into the pkgconfig directory |
| 372 | fix_library_files() { |
531 | fix_library_files() { |
| 373 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
532 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 374 | if [[ -e ${libfile} ]]; then |
533 | if [[ -e ${libfile} ]]; then |
| 375 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
534 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 376 | fi |
535 | fi |
| … | |
… | |
| 380 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
539 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 381 | if [[ -e ${libfile} ]]; then |
540 | if [[ -e ${libfile} ]]; then |
| 382 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
541 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 383 | |
542 | |
| 384 | # Move .pc files into the pkgconfig directory |
543 | # Move .pc files into the pkgconfig directory |
| 385 | |
|
|
| 386 | dodir ${QTPCDIR} |
544 | dodir ${QTPCDIR} |
| 387 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
545 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 388 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
546 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 389 | fi |
547 | fi |
| 390 | done |
548 | done |
| 391 | |
549 | |
| 392 | # Don't install an empty directory |
550 | # Don't install an empty directory |
| 393 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
551 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 394 | } |
552 | } |
| 395 | |
553 | |
|
|
554 | # @FUNCTION: qt_use |
|
|
555 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
556 | # @DESCRIPTION: |
|
|
557 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
558 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
559 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
560 | # assignment-part |
| 396 | qt_use() { |
561 | qt_use() { |
| 397 | local flag="${1}" |
562 | local flag="${1}" |
| 398 | local feature="${1}" |
563 | local feature="${1}" |
| 399 | local enableval= |
564 | local enableval= |
| 400 | |
565 | |
| … | |
… | |
| 422 | # } |
587 | # } |
| 423 | # @CODE |
588 | # @CODE |
| 424 | |
589 | |
| 425 | # Run built_with_use on each flag and print appropriate error messages if any |
590 | # Run built_with_use on each flag and print appropriate error messages if any |
| 426 | # flags are missing |
591 | # flags are missing |
|
|
592 | |
| 427 | _qt_built_with_use() { |
593 | _qt_built_with_use() { |
| 428 | local missing opt pkg flag flags |
594 | local missing opt pkg flag flags |
| 429 | |
595 | |
| 430 | if [[ ${1} = "--missing" ]]; then |
596 | if [[ ${1} = "--missing" ]]; then |
| 431 | missing="${1} ${2}" && shift 2 |
597 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 475 | eerror "Flags marked with an * are missing." |
641 | eerror "Flags marked with an * are missing." |
| 476 | die "Missing USE flags found" |
642 | die "Missing USE flags found" |
| 477 | fi |
643 | fi |
| 478 | } |
644 | } |
| 479 | |
645 | |
|
|
646 | # @FUNCTION: qt_mkspecs_dir |
|
|
647 | # @RETURN: the specs-directory w/o path |
|
|
648 | # @DESCRIPTION: |
|
|
649 | # Allows us to define which mkspecs dir we want to use. |
| 480 | qt_mkspecs_dir() { |
650 | qt_mkspecs_dir() { |
| 481 | # Allows us to define which mkspecs dir we want to use. |
651 | # Allows us to define which mkspecs dir we want to use. |
| 482 | local spec |
652 | local spec |
| 483 | |
653 | |
| 484 | case ${CHOST} in |
654 | case ${CHOST} in |
| … | |
… | |
| 502 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
672 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
| 503 | spec="${spec}-icc" |
673 | spec="${spec}-icc" |
| 504 | else |
674 | else |
| 505 | die "Unknown compiler ${CXX}." |
675 | die "Unknown compiler ${CXX}." |
| 506 | fi |
676 | fi |
|
|
677 | if [[ -n "${LIBDIR/lib}" ]]; then |
|
|
678 | spec="${spec}-${LIBDIR/lib}" |
|
|
679 | fi |
| 507 | |
680 | |
| 508 | echo "${spec}" |
681 | echo "${spec}" |
| 509 | } |
682 | } |
| 510 | |
683 | |
| 511 | case ${EAPI:-0} in |
684 | case ${EAPI:-0} in |