| 1 | # Copyright 1999-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.86 2010/11/13 20:30:26 wired Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.88 2011/01/20 23:08:09 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>, |
| … | |
… | |
| 26 | |
26 | |
| 27 | HOMEPAGE="http://qt.nokia.com/" |
27 | HOMEPAGE="http://qt.nokia.com/" |
| 28 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
28 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
| 29 | |
29 | |
| 30 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
30 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 31 | IUSE+=" debug" |
|
|
| 32 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
| 33 | IUSE+=" pch aqua" |
31 | IUSE+=" debug pch aqua" |
| 34 | |
32 | |
| 35 | RDEPEND=" |
33 | RDEPEND=" |
| 36 | !<x11-libs/qt-assistant-${PV} |
34 | !<x11-libs/qt-assistant-${PV} |
| 37 | !>x11-libs/qt-assistant-${PV}-r9999 |
35 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 38 | !<x11-libs/qt-core-${PV} |
36 | !<x11-libs/qt-core-${PV} |
| … | |
… | |
| 220 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
218 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 221 | append-flags -mminimal-toc |
219 | append-flags -mminimal-toc |
| 222 | fi |
220 | fi |
| 223 | |
221 | |
| 224 | # Bug 282984 && Bug 295530 |
222 | # Bug 282984 && Bug 295530 |
| 225 | sed -e "s:\(^SYSTEM_VARIABLES\):CC="$(tc-getCC)"\nCXX="$(tc-getCXX)"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
223 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
| 226 | -i configure || die "sed qmake compilers failed" |
224 | -i configure || die "sed qmake compilers failed" |
| 227 | # bug 321335 |
225 | # bug 321335 |
| 228 | if version_is_at_least 4.6; then |
226 | if version_is_at_least 4.6; then |
| 229 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
227 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
| 230 | xargs -0 \ |
228 | xargs -0 \ |
| 231 | sed -e "s:\(\$MAKE\):\1 CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" LINK="$(tc-getCXX)":g" \ |
229 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
| 232 | -i || die "sed test compilers failed" |
230 | -i || die "sed test compilers failed" |
| 233 | fi |
231 | fi |
| 234 | |
232 | |
| 235 | # Bug 172219 |
233 | # Bug 172219 |
| 236 | sed -e "s:X11R6/::" \ |
234 | sed -e "s:X11R6/::" \ |