| 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.28 2009/03/16 08:21:18 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.37 2009/05/29 20:58:54 hwoarang 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 | # @BLURB: Eclass for Qt4 split ebuilds. |
10 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 12 | # This eclass contains various functions that are used when building Qt4 |
12 | # This eclass contains various functions that are used when building Qt4 |
| 13 | |
13 | |
| 14 | inherit eutils multilib toolchain-funcs flag-o-matic versionator |
14 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 15 | |
15 | |
| 16 | IUSE="${IUSE} custom-cxxflags debug pch" |
16 | IUSE="${IUSE} custom-cxxflags debug pch" |
| 17 | |
17 | RDEPEND=" |
|
|
18 | !<x11-libs/qt-assistant-${PV} |
|
|
19 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
20 | !<x11-libs/qt-core-${PV} |
|
|
21 | !>x11-libs/qt-core-${PV}-r9999 |
|
|
22 | !<x11-libs/qt-dbus-${PV} |
|
|
23 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
24 | !<x11-libs/qt-demo-${PV} |
|
|
25 | !>x11-libs/qt-demo-${PV}-r9999 |
|
|
26 | !<x11-libs/qt-gui-${PV} |
|
|
27 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
28 | !<x11-libs/qt-opengl-${PV} |
|
|
29 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
30 | !<x11-libs/qt-phonon-${PV} |
|
|
31 | !>x11-libs/qt-phonon-${PV}-r9999 |
|
|
32 | !<x11-libs/qt-qt3support-${PV} |
|
|
33 | !>x11-libs/qt-qt3support-${PV}-r9999 |
|
|
34 | !<x11-libs/qt-script-${PV} |
|
|
35 | !>x11-libs/qt-script-${PV}-r9999 |
|
|
36 | !<x11-libs/qt-sql-${PV} |
|
|
37 | !>x11-libs/qt-sql-${PV}-r9999 |
|
|
38 | !<x11-libs/qt-svg-${PV} |
|
|
39 | !>x11-libs/qt-svg-${PV}-r9999 |
|
|
40 | !<x11-libs/qt-test-${PV} |
|
|
41 | !>x11-libs/qt-test-${PV}-r9999 |
|
|
42 | !<x11-libs/qt-webkit-${PV} |
|
|
43 | !>x11-libs/qt-webkit-${PV}-r9999 |
|
|
44 | !<x11-libs/qt-xmlpatterns-${PV} |
|
|
45 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
|
|
46 | " |
| 18 | case "${PV}" in |
47 | case "${PV}" in |
| 19 | 4.?.?_rc*) |
48 | 4.?.?_rc*) |
| 20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
49 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 21 | MY_PV="${PV/_rc/-rc}" |
50 | MY_PV="${PV/_rc/-rc}" |
| 22 | ;; |
51 | ;; |
| … | |
… | |
| 38 | |
67 | |
| 39 | if version_is_at_least 4.5 ${PV} ; then |
68 | if version_is_at_least 4.5 ${PV} ; then |
| 40 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
69 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 41 | fi |
70 | fi |
| 42 | |
71 | |
|
|
72 | # @FUNCTION: qt4-build_pkg_setup |
|
|
73 | # @DESCRIPTION: |
|
|
74 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 43 | qt4-build_pkg_setup() { |
75 | qt4-build_pkg_setup() { |
| 44 | # EAPI=2 ebuilds set use-deps, others need this: |
76 | # EAPI=2 ebuilds set use-deps, others need this: |
| 45 | if [[ $EAPI != 2 ]]; then |
77 | if [[ $EAPI != 2 ]]; then |
| 46 | # Make sure debug setting corresponds with qt-core (bug 258512) |
78 | # Make sure debug setting corresponds with qt-core (bug 258512) |
| 47 | if [[ $PN != "qt-core" ]]; then |
79 | if [[ $PN != "qt-core" ]]; then |
| … | |
… | |
| 50 | fi |
82 | fi |
| 51 | |
83 | |
| 52 | # Check USE requirements |
84 | # Check USE requirements |
| 53 | qt4-build_check_use |
85 | qt4-build_check_use |
| 54 | fi |
86 | fi |
| 55 | |
|
|
| 56 | # Set up installation directories |
87 | # Set up installation directories |
| 57 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
88 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 58 | QTPREFIXDIR=/usr |
89 | QTPREFIXDIR=/usr |
| 59 | QTBINDIR=/usr/bin |
90 | QTBINDIR=/usr/bin |
| 60 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
91 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
| … | |
… | |
| 74 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
105 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
| 75 | |
106 | |
| 76 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
107 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
| 77 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
108 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 78 | echo |
109 | echo |
| 79 | ebeep 5 |
110 | ebeep 3 |
| 80 | fi |
111 | fi |
| 81 | |
112 | |
| 82 | if use custom-cxxflags; then |
113 | if use custom-cxxflags; then |
| 83 | echo |
114 | echo |
| 84 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
115 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
| … | |
… | |
| 89 | echo |
120 | echo |
| 90 | fi |
121 | fi |
| 91 | |
122 | |
| 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() { |
| 95 | local target targets licenses |
139 | local target targets licenses |
| 96 | if version_is_at_least 4.5 ${PV} ; then |
140 | if version_is_at_least 4.5 ${PV} ; then |
| 97 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
141 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
| 98 | else |
142 | else |
| … | |
… | |
| 118 | if [[ $EAPI != 2 ]]; then |
162 | if [[ $EAPI != 2 ]]; then |
| 119 | qt4-build_src_prepare |
163 | qt4-build_src_prepare |
| 120 | fi |
164 | fi |
| 121 | } |
165 | } |
| 122 | |
166 | |
|
|
167 | # @ECLASS-VARIABLE: PATCHES |
|
|
168 | # @DESCRIPTION: |
|
|
169 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
170 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
171 | # example: |
|
|
172 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
173 | # ${FILESDIR}"/mypatch2.patch" |
|
|
174 | # |
|
|
175 | |
|
|
176 | # @FUNCTION: qt4-build_src_prepare |
|
|
177 | # @DESCRIPTION: |
|
|
178 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
179 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 123 | qt4-build_src_prepare() { |
180 | qt4-build_src_prepare() { |
| 124 | cd "${S}" |
181 | cd "${S}" |
| 125 | |
182 | |
| 126 | if [[ ${PN} != qt-core ]]; then |
183 | if [[ ${PN} != qt-core ]]; then |
| 127 | skip_qmake_build_patch |
184 | skip_qmake_build_patch |
| … | |
… | |
| 133 | # Don't let the user go too overboard with flags. |
190 | # Don't let the user go too overboard with flags. |
| 134 | strip-flags |
191 | strip-flags |
| 135 | replace-flags -O3 -O2 |
192 | replace-flags -O3 -O2 |
| 136 | fi |
193 | fi |
| 137 | |
194 | |
| 138 | # Bug 253127 |
195 | # Bug 178652 |
|
|
196 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
197 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
198 | append-flags -fno-gcse |
|
|
199 | fi |
|
|
200 | |
| 139 | # Unsupported old gcc versions - hardened needs this :( |
201 | # Unsupported old gcc versions - hardened needs this :( |
| 140 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
202 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
| 141 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
203 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 142 | append-cxxflags -fno-stack-protector |
204 | append-cxxflags -fno-stack-protector |
| 143 | fi |
205 | # Bug 253127 |
| 144 | |
206 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 145 | # Bug 178652 |
207 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 146 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 147 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 148 | append-flags -fno-gcse |
|
|
| 149 | fi |
208 | fi |
| 150 | |
209 | |
| 151 | # Bug 172219 |
210 | # Bug 172219 |
| 152 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
211 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 153 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
212 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| … | |
… | |
| 157 | |
216 | |
| 158 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
217 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 159 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
218 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 160 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
219 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 161 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
220 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 162 | |
221 | |
|
|
222 | base_src_prepare |
| 163 | } |
223 | } |
| 164 | |
224 | |
|
|
225 | # @FUNCTION: qt4-build_src_configure |
|
|
226 | # @DESCRIPTION: |
|
|
227 | # Default configure phase |
| 165 | qt4-build_src_configure() { |
228 | qt4-build_src_configure() { |
| 166 | |
229 | |
| 167 | myconf="$(standard_configure_options) ${myconf}" |
230 | myconf="$(standard_configure_options) ${myconf}" |
| 168 | |
231 | |
| 169 | echo ./configure ${myconf} |
232 | echo ./configure ${myconf} |
| 170 | ./configure ${myconf} || die "./configure failed" |
233 | ./configure ${myconf} || die "./configure failed" |
| 171 | } |
234 | } |
| 172 | |
235 | |
|
|
236 | # @FUNCTION: qt4-build_src_compile |
|
|
237 | # @DESCRIPTION: Actual compile phase |
| 173 | qt4-build_src_compile() { |
238 | qt4-build_src_compile() { |
| 174 | # Be backwards compatible for now |
239 | # Be backwards compatible for now |
| 175 | if [[ $EAPI != 2 ]]; then |
240 | if [[ $EAPI != 2 ]]; then |
| 176 | qt4-build_src_configure |
241 | qt4-build_src_configure |
| 177 | fi |
242 | fi |
| 178 | |
243 | |
| 179 | build_directories "${QT4_TARGET_DIRECTORIES}" |
244 | build_directories "${QT4_TARGET_DIRECTORIES}" |
| 180 | } |
245 | } |
| 181 | |
246 | |
|
|
247 | # @FUNCTION: qt4-build_src_install |
|
|
248 | # @DESCRIPTION: |
|
|
249 | # Perform the actual installation including some library fixes. |
| 182 | qt4-build_src_install() { |
250 | qt4-build_src_install() { |
| 183 | install_directories "${QT4_TARGET_DIRECTORIES}" |
251 | install_directories "${QT4_TARGET_DIRECTORIES}" |
| 184 | install_qconfigs |
252 | install_qconfigs |
| 185 | fix_library_files |
253 | fix_library_files |
| 186 | } |
254 | } |
| 187 | |
255 | |
|
|
256 | # @FUNCTION: standard_configure_options |
|
|
257 | # @DESCRIPTION: |
|
|
258 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
259 | # debug info is wanted or not. |
| 188 | standard_configure_options() { |
260 | standard_configure_options() { |
| 189 | local myconf="" |
261 | local myconf="" |
| 190 | |
262 | |
| 191 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
263 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 192 | |
264 | |
| … | |
… | |
| 217 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
289 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 218 | hppa|sh) myconf="${myconf} -arch generic" ;; |
290 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 219 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
291 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 220 | esac |
292 | esac |
| 221 | |
293 | |
|
|
294 | # Bug 261412 Qt configure detects archs by uname |
|
|
295 | case "$(tc-arch)" in |
|
|
296 | ppc) myconf="${myconf} -platform linux-g++-32";; |
|
|
297 | esac |
|
|
298 | |
| 222 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
299 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
| 223 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
300 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 224 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
301 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 225 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
302 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 226 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
303 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 227 | -demosdir ${QTDEMOSDIR} -silent -fast |
304 | -demosdir ${QTDEMOSDIR} -silent -fast |
| 228 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
305 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
| 229 | -reduce-relocations -nomake examples -nomake demos" |
306 | -reduce-relocations -nomake examples -nomake demos" |
|
|
307 | |
|
|
308 | # Make eclass 4.5.{1,2} ready |
|
|
309 | case "${MY_PV}" in |
|
|
310 | 4.5.1 | 4.5.2) |
|
|
311 | myconf="${myconf} -opensource" |
|
|
312 | ;; |
|
|
313 | esac |
| 230 | |
314 | |
| 231 | echo "${myconf}" |
315 | echo "${myconf}" |
| 232 | } |
316 | } |
| 233 | |
317 | |
|
|
318 | # @FUNCTION: build_directories |
|
|
319 | # @USAGE: < directories > |
|
|
320 | # @DESCRIPTION: |
|
|
321 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 234 | build_directories() { |
322 | build_directories() { |
| 235 | local dirs="$@" |
323 | local dirs="$@" |
| 236 | for x in ${dirs}; do |
324 | for x in ${dirs}; do |
| 237 | cd "${S}"/${x} |
325 | cd "${S}"/${x} |
| 238 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
326 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 239 | emake || die "emake failed" |
327 | emake || die "emake failed" |
| 240 | done |
328 | done |
| 241 | } |
329 | } |
| 242 | |
330 | |
|
|
331 | # @FUNCTION: install_directories |
|
|
332 | # @USAGE: < directories > |
|
|
333 | # @DESCRIPTION: |
|
|
334 | # run emake install in the given directories, which are separated by spaces |
| 243 | install_directories() { |
335 | install_directories() { |
| 244 | local dirs="$@" |
336 | local dirs="$@" |
| 245 | for x in ${dirs}; do |
337 | for x in ${dirs}; do |
| 246 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
338 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 247 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
339 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 262 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
354 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 263 | # @DESCRIPTION: |
355 | # @DESCRIPTION: |
| 264 | # List variables that should be defined at the top of QtCore/qconfig.h |
356 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 265 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
357 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 266 | |
358 | |
|
|
359 | # @FUNCTION: install_qconfigs |
|
|
360 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 267 | install_qconfigs() { |
361 | install_qconfigs() { |
| 268 | local x |
362 | local x |
| 269 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
363 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 270 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
364 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 271 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
365 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 281 | insinto ${QTHEADERDIR}/Gentoo |
375 | insinto ${QTHEADERDIR}/Gentoo |
| 282 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
376 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 283 | fi |
377 | fi |
| 284 | } |
378 | } |
| 285 | |
379 | |
|
|
380 | # @FUNCTION: generate_qconfigs |
|
|
381 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 286 | generate_qconfigs() { |
382 | generate_qconfigs() { |
| 287 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
383 | 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 |
384 | local x qconfig_add qconfig_remove qconfig_new |
| 289 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
385 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 290 | [[ -f ${x} ]] || continue |
386 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 337 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
433 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 338 | fi |
434 | fi |
| 339 | fi |
435 | fi |
| 340 | } |
436 | } |
| 341 | |
437 | |
|
|
438 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
439 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 342 | qt4-build_pkg_postrm() { |
440 | qt4-build_pkg_postrm() { |
| 343 | generate_qconfigs |
441 | generate_qconfigs |
| 344 | } |
442 | } |
| 345 | |
443 | |
|
|
444 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
445 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
446 | # breakages and proposed solutions. |
| 346 | qt4-build_pkg_postinst() { |
447 | qt4-build_pkg_postinst() { |
| 347 | generate_qconfigs |
448 | generate_qconfigs |
| 348 | echo |
449 | echo |
| 349 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
450 | 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" |
451 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| … | |
… | |
| 359 | ewarn |
460 | ewarn |
| 360 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
461 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
| 361 | echo |
462 | echo |
| 362 | } |
463 | } |
| 363 | |
464 | |
|
|
465 | # @FUNCTION: skip_qmake_build_patch |
|
|
466 | # @DESCRIPTION: |
|
|
467 | # Don't need to build qmake, as it's already installed from qt-core |
| 364 | skip_qmake_build_patch() { |
468 | skip_qmake_build_patch() { |
| 365 | # Don't need to build qmake, as it's already installed from qt-core |
469 | # 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" |
470 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 367 | } |
471 | } |
| 368 | |
472 | |
|
|
473 | # @FUNCTION: skip_project_generation_patch |
|
|
474 | # @DESCRIPTION: |
|
|
475 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 369 | skip_project_generation_patch() { |
476 | skip_project_generation_patch() { |
| 370 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
477 | # 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" \ |
478 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 372 | -i "${S}"/configure || die "Sed failed" |
479 | -i "${S}"/configure || die "Sed failed" |
| 373 | } |
480 | } |
| 374 | |
481 | |
|
|
482 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
483 | # @DESCRIPTION: |
|
|
484 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
485 | # time |
| 375 | symlink_binaries_to_buildtree() { |
486 | symlink_binaries_to_buildtree() { |
| 376 | for bin in qmake moc uic rcc; do |
487 | for bin in qmake moc uic rcc; do |
| 377 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
488 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 378 | done |
489 | done |
| 379 | } |
490 | } |
| 380 | |
491 | |
|
|
492 | # @FUNCTION: fix_library_files |
|
|
493 | # @DESCRIPTION: |
|
|
494 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
495 | # moves the *.pc-files into the pkgconfig directory |
| 381 | fix_library_files() { |
496 | fix_library_files() { |
| 382 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
497 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 383 | if [[ -e ${libfile} ]]; then |
498 | if [[ -e ${libfile} ]]; then |
| 384 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
499 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 385 | fi |
500 | fi |
| … | |
… | |
| 389 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
504 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 390 | if [[ -e ${libfile} ]]; then |
505 | if [[ -e ${libfile} ]]; then |
| 391 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
506 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 392 | |
507 | |
| 393 | # Move .pc files into the pkgconfig directory |
508 | # Move .pc files into the pkgconfig directory |
| 394 | |
|
|
| 395 | dodir ${QTPCDIR} |
509 | dodir ${QTPCDIR} |
| 396 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
510 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 397 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
511 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 398 | fi |
512 | fi |
| 399 | done |
513 | done |
| 400 | |
514 | |
| 401 | # Don't install an empty directory |
515 | # Don't install an empty directory |
| 402 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
516 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 403 | } |
517 | } |
| 404 | |
518 | |
|
|
519 | # @FUNCTION: qt_use |
|
|
520 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
521 | # @DESCRIPTION: |
|
|
522 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
523 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
524 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
525 | # assignment-part |
| 405 | qt_use() { |
526 | qt_use() { |
| 406 | local flag="${1}" |
527 | local flag="${1}" |
| 407 | local feature="${1}" |
528 | local feature="${1}" |
| 408 | local enableval= |
529 | local enableval= |
| 409 | |
530 | |
| … | |
… | |
| 431 | # } |
552 | # } |
| 432 | # @CODE |
553 | # @CODE |
| 433 | |
554 | |
| 434 | # Run built_with_use on each flag and print appropriate error messages if any |
555 | # Run built_with_use on each flag and print appropriate error messages if any |
| 435 | # flags are missing |
556 | # flags are missing |
|
|
557 | |
| 436 | _qt_built_with_use() { |
558 | _qt_built_with_use() { |
| 437 | local missing opt pkg flag flags |
559 | local missing opt pkg flag flags |
| 438 | |
560 | |
| 439 | if [[ ${1} = "--missing" ]]; then |
561 | if [[ ${1} = "--missing" ]]; then |
| 440 | missing="${1} ${2}" && shift 2 |
562 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 484 | eerror "Flags marked with an * are missing." |
606 | eerror "Flags marked with an * are missing." |
| 485 | die "Missing USE flags found" |
607 | die "Missing USE flags found" |
| 486 | fi |
608 | fi |
| 487 | } |
609 | } |
| 488 | |
610 | |
|
|
611 | # @FUNCTION: qt_mkspecs_dir |
|
|
612 | # @RETURN: the specs-directory w/o path |
|
|
613 | # @DESCRIPTION: |
|
|
614 | # Allows us to define which mkspecs dir we want to use. |
| 489 | qt_mkspecs_dir() { |
615 | qt_mkspecs_dir() { |
| 490 | # Allows us to define which mkspecs dir we want to use. |
616 | # Allows us to define which mkspecs dir we want to use. |
| 491 | local spec |
617 | local spec |
| 492 | |
618 | |
| 493 | case ${CHOST} in |
619 | case ${CHOST} in |