| 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.29 2009/03/28 00:21:13 gengor Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.34 2009/05/22 22:21:38 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>, |
| … | |
… | |
| 38 | |
38 | |
| 39 | if version_is_at_least 4.5 ${PV} ; then |
39 | if version_is_at_least 4.5 ${PV} ; then |
| 40 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
40 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 41 | fi |
41 | fi |
| 42 | |
42 | |
|
|
43 | # @FUNCTION: qt4-build_pkg_setup |
|
|
44 | # @DESCRIPTION: |
|
|
45 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 43 | qt4-build_pkg_setup() { |
46 | qt4-build_pkg_setup() { |
| 44 | # EAPI=2 ebuilds set use-deps, others need this: |
47 | # EAPI=2 ebuilds set use-deps, others need this: |
| 45 | if [[ $EAPI != 2 ]]; then |
48 | if [[ $EAPI != 2 ]]; then |
| 46 | # Make sure debug setting corresponds with qt-core (bug 258512) |
49 | # Make sure debug setting corresponds with qt-core (bug 258512) |
| 47 | if [[ $PN != "qt-core" ]]; then |
50 | if [[ $PN != "qt-core" ]]; then |
| … | |
… | |
| 50 | fi |
53 | fi |
| 51 | |
54 | |
| 52 | # Check USE requirements |
55 | # Check USE requirements |
| 53 | qt4-build_check_use |
56 | qt4-build_check_use |
| 54 | fi |
57 | fi |
| 55 | |
|
|
| 56 | # Set up installation directories |
58 | # Set up installation directories |
| 57 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
59 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 58 | QTPREFIXDIR=/usr |
60 | QTPREFIXDIR=/usr |
| 59 | QTBINDIR=/usr/bin |
61 | QTBINDIR=/usr/bin |
| 60 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
62 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
| … | |
… | |
| 74 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
76 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
| 75 | |
77 | |
| 76 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
78 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
| 77 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
79 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 78 | echo |
80 | echo |
| 79 | ebeep 5 |
81 | ebeep 3 |
| 80 | fi |
82 | fi |
| 81 | |
83 | |
| 82 | if use custom-cxxflags; then |
84 | if use custom-cxxflags; then |
| 83 | echo |
85 | echo |
| 84 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
86 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
| … | |
… | |
| 89 | echo |
91 | echo |
| 90 | fi |
92 | fi |
| 91 | |
93 | |
| 92 | } |
94 | } |
| 93 | |
95 | |
|
|
96 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
97 | # @DESCRIPTION: |
|
|
98 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
99 | # code should be compiled. This is a space-separated list |
|
|
100 | |
|
|
101 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
102 | # @DESCRIPTION: |
|
|
103 | # Space separated list including the directories that will be extracted from Qt |
|
|
104 | # tarball |
|
|
105 | |
|
|
106 | # @FUNCTION: qt4-build_src_unpack |
|
|
107 | # @DESCRIPTION: |
|
|
108 | # Unpacks the sources |
| 94 | qt4-build_src_unpack() { |
109 | qt4-build_src_unpack() { |
| 95 | local target targets licenses |
110 | local target targets licenses |
| 96 | if version_is_at_least 4.5 ${PV} ; then |
111 | if version_is_at_least 4.5 ${PV} ; then |
| 97 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
112 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
| 98 | else |
113 | else |
| … | |
… | |
| 118 | if [[ $EAPI != 2 ]]; then |
133 | if [[ $EAPI != 2 ]]; then |
| 119 | qt4-build_src_prepare |
134 | qt4-build_src_prepare |
| 120 | fi |
135 | fi |
| 121 | } |
136 | } |
| 122 | |
137 | |
|
|
138 | |
|
|
139 | # @FUNCTION: qt4-build_src_prepare |
|
|
140 | # @DESCRIPTION: |
|
|
141 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
142 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 123 | qt4-build_src_prepare() { |
143 | qt4-build_src_prepare() { |
| 124 | cd "${S}" |
144 | cd "${S}" |
| 125 | |
145 | |
| 126 | if [[ ${PN} != qt-core ]]; then |
146 | if [[ ${PN} != qt-core ]]; then |
| 127 | skip_qmake_build_patch |
147 | skip_qmake_build_patch |
| … | |
… | |
| 133 | # Don't let the user go too overboard with flags. |
153 | # Don't let the user go too overboard with flags. |
| 134 | strip-flags |
154 | strip-flags |
| 135 | replace-flags -O3 -O2 |
155 | replace-flags -O3 -O2 |
| 136 | fi |
156 | fi |
| 137 | |
157 | |
|
|
158 | # Bug 178652 |
|
|
159 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
160 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
161 | append-flags -fno-gcse |
|
|
162 | fi |
|
|
163 | |
| 138 | # Unsupported old gcc versions - hardened needs this :( |
164 | # Unsupported old gcc versions - hardened needs this :( |
| 139 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
165 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
| 140 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
166 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 141 | append-cxxflags -fno-stack-protector |
167 | append-cxxflags -fno-stack-protector |
| 142 | fi |
|
|
| 143 | |
|
|
| 144 | # Bug 178652 |
|
|
| 145 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 146 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 147 | append-flags -fno-gcse |
|
|
| 148 | fi |
|
|
| 149 | |
|
|
| 150 | # Bug 253127 |
168 | # Bug 253127 |
| 151 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
| 152 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
169 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 153 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
170 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 154 | fi |
171 | fi |
| 155 | |
172 | |
| 156 | # Bug 172219 |
173 | # Bug 172219 |
| … | |
… | |
| 165 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
182 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 166 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
183 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 167 | |
184 | |
| 168 | } |
185 | } |
| 169 | |
186 | |
|
|
187 | # @FUNCTION: qt4-build_src_configure |
|
|
188 | # @DESCRIPTION: |
|
|
189 | # Default configure phase |
| 170 | qt4-build_src_configure() { |
190 | qt4-build_src_configure() { |
| 171 | |
191 | |
| 172 | myconf="$(standard_configure_options) ${myconf}" |
192 | myconf="$(standard_configure_options) ${myconf}" |
| 173 | |
193 | |
| 174 | echo ./configure ${myconf} |
194 | echo ./configure ${myconf} |
| 175 | ./configure ${myconf} || die "./configure failed" |
195 | ./configure ${myconf} || die "./configure failed" |
| 176 | } |
196 | } |
| 177 | |
197 | |
|
|
198 | # @FUNCTION: qt4-build_src_compile |
|
|
199 | # @DESCRIPTION: Actual compile phase |
| 178 | qt4-build_src_compile() { |
200 | qt4-build_src_compile() { |
| 179 | # Be backwards compatible for now |
201 | # Be backwards compatible for now |
| 180 | if [[ $EAPI != 2 ]]; then |
202 | if [[ $EAPI != 2 ]]; then |
| 181 | qt4-build_src_configure |
203 | qt4-build_src_configure |
| 182 | fi |
204 | fi |
| 183 | |
205 | |
| 184 | build_directories "${QT4_TARGET_DIRECTORIES}" |
206 | build_directories "${QT4_TARGET_DIRECTORIES}" |
| 185 | } |
207 | } |
| 186 | |
208 | |
|
|
209 | # @FUNCTION: qt4-build_src_install |
|
|
210 | # @DESCRIPTION: |
|
|
211 | # Perform the actual installation including some library fixes. |
| 187 | qt4-build_src_install() { |
212 | qt4-build_src_install() { |
| 188 | install_directories "${QT4_TARGET_DIRECTORIES}" |
213 | install_directories "${QT4_TARGET_DIRECTORIES}" |
| 189 | install_qconfigs |
214 | install_qconfigs |
| 190 | fix_library_files |
215 | fix_library_files |
| 191 | } |
216 | } |
| 192 | |
217 | |
|
|
218 | # @FUNCTION: standard_configure_options |
|
|
219 | # @DESCRIPTION: |
|
|
220 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
221 | # debug info is wanted or not. |
| 193 | standard_configure_options() { |
222 | standard_configure_options() { |
| 194 | local myconf="" |
223 | local myconf="" |
| 195 | |
224 | |
| 196 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
225 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 197 | |
226 | |
| … | |
… | |
| 222 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
251 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 223 | hppa|sh) myconf="${myconf} -arch generic" ;; |
252 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 224 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
253 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 225 | esac |
254 | esac |
| 226 | |
255 | |
|
|
256 | # Bug 261412 Qt configure detects archs by uname |
|
|
257 | case "$(tc-arch)" in |
|
|
258 | ppc) myconf="${myconf} -platform linux-g++-32";; |
|
|
259 | esac |
|
|
260 | |
| 227 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
261 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
| 228 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
262 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 229 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
263 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 230 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
264 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 231 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
265 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 232 | -demosdir ${QTDEMOSDIR} -silent -fast |
266 | -demosdir ${QTDEMOSDIR} -silent -fast |
| 233 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
267 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
| 234 | -reduce-relocations -nomake examples -nomake demos" |
268 | -reduce-relocations -nomake examples -nomake demos" |
|
|
269 | |
|
|
270 | # Make eclass 4.5.{1,2} ready |
|
|
271 | case "${MY_PV}" in |
|
|
272 | 4.5.1 | 4.5.2) |
|
|
273 | myconf="${myconf} -opensource" |
|
|
274 | ;; |
|
|
275 | esac |
|
|
276 | |
|
|
277 | # bug 270475 |
|
|
278 | case "${MY_PV}" in |
|
|
279 | 4.5.1 | 4.5.2) |
|
|
280 | myconf="${myconf} -platform $(qt_mkspecs_dir)" |
|
|
281 | ;; |
|
|
282 | esac |
| 235 | |
283 | |
| 236 | echo "${myconf}" |
284 | echo "${myconf}" |
| 237 | } |
285 | } |
| 238 | |
286 | |
|
|
287 | # @FUNCTION: build_directories |
|
|
288 | # @USAGE: < directories > |
|
|
289 | # @DESCRIPTION: |
|
|
290 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 239 | build_directories() { |
291 | build_directories() { |
| 240 | local dirs="$@" |
292 | local dirs="$@" |
| 241 | for x in ${dirs}; do |
293 | for x in ${dirs}; do |
| 242 | cd "${S}"/${x} |
294 | cd "${S}"/${x} |
| 243 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
295 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 244 | emake || die "emake failed" |
296 | emake || die "emake failed" |
| 245 | done |
297 | done |
| 246 | } |
298 | } |
| 247 | |
299 | |
|
|
300 | # @FUNCTION: install_directories |
|
|
301 | # @USAGE: < directories > |
|
|
302 | # @DESCRIPTION: |
|
|
303 | # run emake install in the given directories, which are separated by spaces |
| 248 | install_directories() { |
304 | install_directories() { |
| 249 | local dirs="$@" |
305 | local dirs="$@" |
| 250 | for x in ${dirs}; do |
306 | for x in ${dirs}; do |
| 251 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
307 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 252 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
308 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 267 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
323 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 268 | # @DESCRIPTION: |
324 | # @DESCRIPTION: |
| 269 | # List variables that should be defined at the top of QtCore/qconfig.h |
325 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 270 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
326 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 271 | |
327 | |
|
|
328 | # @FUNCTION: install_qconfigs |
|
|
329 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 272 | install_qconfigs() { |
330 | install_qconfigs() { |
| 273 | local x |
331 | local x |
| 274 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
332 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 275 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
333 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 276 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
334 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 286 | insinto ${QTHEADERDIR}/Gentoo |
344 | insinto ${QTHEADERDIR}/Gentoo |
| 287 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
345 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 288 | fi |
346 | fi |
| 289 | } |
347 | } |
| 290 | |
348 | |
|
|
349 | # @FUNCTION: generate_qconfigs |
|
|
350 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 291 | generate_qconfigs() { |
351 | generate_qconfigs() { |
| 292 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
352 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 293 | local x qconfig_add qconfig_remove qconfig_new |
353 | local x qconfig_add qconfig_remove qconfig_new |
| 294 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
354 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 295 | [[ -f ${x} ]] || continue |
355 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 342 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
402 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 343 | fi |
403 | fi |
| 344 | fi |
404 | fi |
| 345 | } |
405 | } |
| 346 | |
406 | |
|
|
407 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
408 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 347 | qt4-build_pkg_postrm() { |
409 | qt4-build_pkg_postrm() { |
| 348 | generate_qconfigs |
410 | generate_qconfigs |
| 349 | } |
411 | } |
| 350 | |
412 | |
|
|
413 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
414 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
415 | # breakages and proposed solutions. |
| 351 | qt4-build_pkg_postinst() { |
416 | qt4-build_pkg_postinst() { |
| 352 | generate_qconfigs |
417 | generate_qconfigs |
| 353 | echo |
418 | echo |
| 354 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
419 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
| 355 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
420 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| … | |
… | |
| 364 | ewarn |
429 | ewarn |
| 365 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
430 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
| 366 | echo |
431 | echo |
| 367 | } |
432 | } |
| 368 | |
433 | |
|
|
434 | # @FUNCTION: skip_qmake_build_patch |
|
|
435 | # @DESCRIPTION: |
|
|
436 | # Don't need to build qmake, as it's already installed from qt-core |
| 369 | skip_qmake_build_patch() { |
437 | skip_qmake_build_patch() { |
| 370 | # Don't need to build qmake, as it's already installed from qt-core |
438 | # Don't need to build qmake, as it's already installed from qt-core |
| 371 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
439 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 372 | } |
440 | } |
| 373 | |
441 | |
|
|
442 | # @FUNCTION: skip_project_generation_patch |
|
|
443 | # @DESCRIPTION: |
|
|
444 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 374 | skip_project_generation_patch() { |
445 | skip_project_generation_patch() { |
| 375 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
446 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 376 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
447 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 377 | -i "${S}"/configure || die "Sed failed" |
448 | -i "${S}"/configure || die "Sed failed" |
| 378 | } |
449 | } |
| 379 | |
450 | |
|
|
451 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
452 | # @DESCRIPTION: |
|
|
453 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
454 | # time |
| 380 | symlink_binaries_to_buildtree() { |
455 | symlink_binaries_to_buildtree() { |
| 381 | for bin in qmake moc uic rcc; do |
456 | for bin in qmake moc uic rcc; do |
| 382 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
457 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 383 | done |
458 | done |
| 384 | } |
459 | } |
| 385 | |
460 | |
|
|
461 | # @FUNCTION: fix_library_files |
|
|
462 | # @DESCRIPTION: |
|
|
463 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
464 | # moves the *.pc-files into the pkgconfig directory |
| 386 | fix_library_files() { |
465 | fix_library_files() { |
| 387 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
466 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 388 | if [[ -e ${libfile} ]]; then |
467 | if [[ -e ${libfile} ]]; then |
| 389 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
468 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 390 | fi |
469 | fi |
| … | |
… | |
| 394 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
473 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 395 | if [[ -e ${libfile} ]]; then |
474 | if [[ -e ${libfile} ]]; then |
| 396 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
475 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 397 | |
476 | |
| 398 | # Move .pc files into the pkgconfig directory |
477 | # Move .pc files into the pkgconfig directory |
| 399 | |
|
|
| 400 | dodir ${QTPCDIR} |
478 | dodir ${QTPCDIR} |
| 401 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
479 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 402 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
480 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 403 | fi |
481 | fi |
| 404 | done |
482 | done |
| 405 | |
483 | |
| 406 | # Don't install an empty directory |
484 | # Don't install an empty directory |
| 407 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
485 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 408 | } |
486 | } |
| 409 | |
487 | |
|
|
488 | # @FUNCTION: qt_use |
|
|
489 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
490 | # @DESCRIPTION: |
|
|
491 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
492 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
493 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
494 | # assignment-part |
| 410 | qt_use() { |
495 | qt_use() { |
| 411 | local flag="${1}" |
496 | local flag="${1}" |
| 412 | local feature="${1}" |
497 | local feature="${1}" |
| 413 | local enableval= |
498 | local enableval= |
| 414 | |
499 | |
| … | |
… | |
| 436 | # } |
521 | # } |
| 437 | # @CODE |
522 | # @CODE |
| 438 | |
523 | |
| 439 | # Run built_with_use on each flag and print appropriate error messages if any |
524 | # Run built_with_use on each flag and print appropriate error messages if any |
| 440 | # flags are missing |
525 | # flags are missing |
|
|
526 | |
| 441 | _qt_built_with_use() { |
527 | _qt_built_with_use() { |
| 442 | local missing opt pkg flag flags |
528 | local missing opt pkg flag flags |
| 443 | |
529 | |
| 444 | if [[ ${1} = "--missing" ]]; then |
530 | if [[ ${1} = "--missing" ]]; then |
| 445 | missing="${1} ${2}" && shift 2 |
531 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 489 | eerror "Flags marked with an * are missing." |
575 | eerror "Flags marked with an * are missing." |
| 490 | die "Missing USE flags found" |
576 | die "Missing USE flags found" |
| 491 | fi |
577 | fi |
| 492 | } |
578 | } |
| 493 | |
579 | |
|
|
580 | # @FUNCTION: qt_mkspecs_dir |
|
|
581 | # @RETURN: the specs-directory w/o path |
|
|
582 | # @DESCRIPTION: |
|
|
583 | # Allows us to define which mkspecs dir we want to use. |
| 494 | qt_mkspecs_dir() { |
584 | qt_mkspecs_dir() { |
| 495 | # Allows us to define which mkspecs dir we want to use. |
585 | # Allows us to define which mkspecs dir we want to use. |
| 496 | local spec |
586 | local spec |
| 497 | |
587 | |
| 498 | case ${CHOST} in |
588 | case ${CHOST} in |