| 1 | # Copyright 2005 Gentoo Foundation |
1 | # Copyright 2005 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/Attic/qt4.eclass,v 1.21 2007/07/31 13:42:23 caleb Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/qt4.eclass,v 1.22 2007/08/02 11:22:40 caleb Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Caleb Tennis <caleb@gentoo.org> |
5 | # Author Caleb Tennis <caleb@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is simple. Inherit it, and in your depend, do something like this: |
7 | # This eclass is simple. Inherit it, and in your depend, do something like this: |
| 8 | # |
8 | # |
| … | |
… | |
| 13 | # 08.16.06 - Renamed qt_min_* to qt4_min_* to avoid conflicts with the qt3 eclass. |
13 | # 08.16.06 - Renamed qt_min_* to qt4_min_* to avoid conflicts with the qt3 eclass. |
| 14 | # - Caleb Tennis <caleb@gentoo.org> |
14 | # - Caleb Tennis <caleb@gentoo.org> |
| 15 | |
15 | |
| 16 | inherit eutils multilib toolchain-funcs versionator |
16 | inherit eutils multilib toolchain-funcs versionator |
| 17 | |
17 | |
| 18 | IUSE="${IUSE} debug" |
18 | IUSE="${IUSE}" |
| 19 | |
19 | |
| 20 | QTPKG="x11-libs/qt-" |
20 | QTPKG="x11-libs/qt-" |
| 21 | QT4MAJORVERSIONS="4.3 4.2 4.1 4.0" |
21 | QT4MAJORVERSIONS="4.3 4.2 4.1 4.0" |
| 22 | QT4VERSIONS="4.3.0 4.3.0_rc1 4.3.0_beta1 4.2.3-r1 4.2.3 4.2.2 4.2.1 4.2.0-r2 4.2.0-r1 4.2.0 4.1.4-r2 4.1.4-r1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.0.1 4.0.0" |
22 | QT4VERSIONS="4.3.0 4.3.0_rc1 4.3.0_beta1 4.2.3-r1 4.2.3 4.2.2 4.2.1 4.2.0-r2 4.2.0-r1 4.2.0 4.1.4-r2 4.1.4-r1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.0.1 4.0.0" |
| 23 | |
23 | |
| … | |
… | |
| 83 | echo >> ${LOGFILE} |
83 | echo >> ${LOGFILE} |
| 84 | echo "****** qmake ${projprofile} ******" >> ${LOGFILE} |
84 | echo "****** qmake ${projprofile} ******" >> ${LOGFILE} |
| 85 | echo >> ${LOGFILE} |
85 | echo >> ${LOGFILE} |
| 86 | |
86 | |
| 87 | # as a workaround for broken qmake, put everything into file |
87 | # as a workaround for broken qmake, put everything into file |
| 88 | if use debug; then |
88 | if has debug ${IUSE} && use debug; then |
| 89 | echo -e "$CONFIG -= release\nCONFIG += no_fixpath debug" >> ${projprofile} |
89 | echo -e "$CONFIG -= release\nCONFIG += no_fixpath debug" >> ${projprofile} |
| 90 | else |
90 | else |
| 91 | echo -e "$CONFIG -= debug\nCONFIG += no_fixpath release" >> ${projprofile} |
91 | echo -e "$CONFIG -= debug\nCONFIG += no_fixpath release" >> ${projprofile} |
| 92 | fi |
92 | fi |
| 93 | |
93 | |