| 1 | # Copyright 2007-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.36 2009/05/29 14:48:00 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.63 2010/02/10 20:34:17 yngwin 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 | MY_PV=${PV/_/-} |
|
|
18 | if version_is_at_least 4.5.99999999; then |
|
|
19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
|
|
20 | else |
|
|
21 | MY_P=qt-x11-opensource-src-${MY_PV} |
|
|
22 | fi |
|
|
23 | |
|
|
24 | HOMEPAGE="http://qt.nokia.com/" |
|
|
25 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
26 | |
|
|
27 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
28 | IUSE="debug pch aqua" |
|
|
29 | |
| 17 | RDEPEND=" |
30 | RDEPEND=" |
| 18 | !<x11-libs/qt-assistant-${PV} |
31 | !<x11-libs/qt-assistant-${PV} |
| 19 | !>x11-libs/qt-assistant-${PV}-r9999 |
32 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 20 | !<x11-libs/qt-core-${PV} |
33 | !<x11-libs/qt-core-${PV} |
| 21 | !>x11-libs/qt-core-${PV}-r9999 |
34 | !>x11-libs/qt-core-${PV}-r9999 |
| … | |
… | |
| 42 | !<x11-libs/qt-webkit-${PV} |
55 | !<x11-libs/qt-webkit-${PV} |
| 43 | !>x11-libs/qt-webkit-${PV}-r9999 |
56 | !>x11-libs/qt-webkit-${PV}-r9999 |
| 44 | !<x11-libs/qt-xmlpatterns-${PV} |
57 | !<x11-libs/qt-xmlpatterns-${PV} |
| 45 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
58 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
| 46 | " |
59 | " |
| 47 | case "${PV}" in |
60 | |
| 48 | 4.?.?_rc*) |
|
|
| 49 | SRCTYPE="${SRCTYPE:-opensource-src}" |
|
|
| 50 | MY_PV="${PV/_rc/-rc}" |
|
|
| 51 | ;; |
|
|
| 52 | *) |
|
|
| 53 | SRCTYPE="${SRCTYPE:-opensource-src}" |
|
|
| 54 | MY_PV="${PV}" |
|
|
| 55 | ;; |
|
|
| 56 | esac |
|
|
| 57 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
|
|
| 58 | S=${WORKDIR}/${MY_P} |
61 | S=${WORKDIR}/${MY_P} |
| 59 | |
62 | |
| 60 | HOMEPAGE="http://www.qtsoftware.com/" |
|
|
| 61 | SRC_URI="http://download.qtsoftware.com/qt/source/${MY_P}.tar.bz2" |
|
|
| 62 | |
|
|
| 63 | case "${PV}" in |
|
|
| 64 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
|
|
| 65 | *) ;; |
|
|
| 66 | esac |
|
|
| 67 | |
|
|
| 68 | if version_is_at_least 4.5 ${PV} ; then |
|
|
| 69 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
| 70 | fi |
|
|
| 71 | |
|
|
| 72 | # @FUNCTION: qt4-build_pkg_setup |
63 | # @FUNCTION: qt4-build_pkg_setup |
| 73 | # @DESCRIPTION: |
64 | # @DESCRIPTION: |
| 74 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
65 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
| 75 | qt4-build_pkg_setup() { |
66 | qt4-build_pkg_setup() { |
| 76 | # EAPI=2 ebuilds set use-deps, others need this: |
67 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
|
|
68 | |
|
|
69 | |
|
|
70 | PATH="${S}/bin${PATH:+:}${PATH}" |
|
|
71 | if [[ ${CHOST} != *-darwin* ]]; then |
|
|
72 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
|
|
73 | else |
|
|
74 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
|
|
75 | # On MacOS we *need* at least src/gui/kernel/qapplication_mac.mm for |
|
|
76 | # platform detection. Note: needs to come before any directories to |
|
|
77 | # avoid extract failure. |
|
|
78 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
|
|
79 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm ${QT4_EXTRACT_DIRECTORIES}" |
|
|
80 | fi |
|
|
81 | |
|
|
82 | # Make sure ebuilds use the required EAPI |
| 77 | if [[ $EAPI != 2 ]]; then |
83 | if [[ ${EAPI} != [23] ]]; then |
| 78 | # Make sure debug setting corresponds with qt-core (bug 258512) |
84 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
| 79 | if [[ $PN != "qt-core" ]]; then |
85 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
| 80 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
86 | eerror "fixed. Using qt4-build eclass without EAPI=2 or EAPI=3 will fail." |
| 81 | ~x11-libs/qt-core-${PV} debug" |
87 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
| 82 | fi |
88 | fi |
| 83 | |
89 | |
| 84 | # Check USE requirements |
|
|
| 85 | qt4-build_check_use |
|
|
| 86 | fi |
|
|
| 87 | # Set up installation directories |
|
|
| 88 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
|
|
| 89 | QTPREFIXDIR=/usr |
|
|
| 90 | QTBINDIR=/usr/bin |
|
|
| 91 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
| 92 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
|
|
| 93 | QTDATADIR=/usr/share/qt4 |
|
|
| 94 | QTDOCDIR=/usr/share/doc/qt-${PV} |
|
|
| 95 | QTHEADERDIR=/usr/include/qt4 |
|
|
| 96 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
| 97 | QTSYSCONFDIR=/etc/qt4 |
|
|
| 98 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 99 | QTEXAMPLESDIR=${QTDATADIR}/examples |
|
|
| 100 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
| 101 | |
|
|
| 102 | PLATFORM=$(qt_mkspecs_dir) |
|
|
| 103 | |
|
|
| 104 | PATH="${S}/bin:${PATH}" |
|
|
| 105 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
| 106 | |
|
|
| 107 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
90 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 108 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
91 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 109 | echo |
92 | echo |
| 110 | ebeep 3 |
93 | ebeep 3 |
| 111 | fi |
94 | fi |
| 112 | |
|
|
| 113 | if use custom-cxxflags; then |
|
|
| 114 | echo |
|
|
| 115 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
| 116 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
| 117 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
| 118 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
| 119 | ewarn "for breakfast. ;-) " |
|
|
| 120 | echo |
|
|
| 121 | fi |
|
|
| 122 | |
|
|
| 123 | } |
95 | } |
| 124 | |
96 | |
| 125 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
97 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 126 | # @DESCRIPTION: |
98 | # @DESCRIPTION: |
| 127 | # Arguments for build_target_directories. Takes the directories, in which the |
99 | # Arguments for build_target_directories. Takes the directories, in which the |
| … | |
… | |
| 134 | |
106 | |
| 135 | # @FUNCTION: qt4-build_src_unpack |
107 | # @FUNCTION: qt4-build_src_unpack |
| 136 | # @DESCRIPTION: |
108 | # @DESCRIPTION: |
| 137 | # Unpacks the sources |
109 | # Unpacks the sources |
| 138 | qt4-build_src_unpack() { |
110 | qt4-build_src_unpack() { |
|
|
111 | setqtenv |
| 139 | local target targets licenses |
112 | local target targets= |
| 140 | if version_is_at_least 4.5 ${PV} ; then |
113 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 141 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
| 142 | else |
|
|
| 143 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
| 144 | fi |
|
|
| 145 | for target in configure ${licenses} projects.pro \ |
|
|
| 146 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
114 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 147 | ${QT4_EXTRACT_DIRECTORIES}; do |
115 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 148 | targets="${targets} ${MY_P}/${target}" |
116 | targets+=" ${MY_P}/${target}" |
| 149 | done |
117 | done |
| 150 | |
118 | |
| 151 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
119 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 152 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
120 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 153 | |
|
|
| 154 | case "${PV}" in |
|
|
| 155 | 4.4.?) |
|
|
| 156 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 157 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 158 | ;; |
|
|
| 159 | esac |
|
|
| 160 | |
|
|
| 161 | # Be backwards compatible for now |
|
|
| 162 | if [[ $EAPI != 2 ]]; then |
|
|
| 163 | qt4-build_src_prepare |
|
|
| 164 | fi |
|
|
| 165 | } |
121 | } |
| 166 | |
122 | |
|
|
123 | # @ECLASS-VARIABLE: PATCHES |
|
|
124 | # @DESCRIPTION: |
|
|
125 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
126 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
127 | # example: |
|
|
128 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
129 | # ${FILESDIR}"/mypatch2.patch" |
|
|
130 | # |
| 167 | |
131 | |
| 168 | # @FUNCTION: qt4-build_src_prepare |
132 | # @FUNCTION: qt4-build_src_prepare |
| 169 | # @DESCRIPTION: |
133 | # @DESCRIPTION: |
| 170 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
134 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 171 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
135 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 172 | qt4-build_src_prepare() { |
136 | qt4-build_src_prepare() { |
|
|
137 | setqtenv |
| 173 | cd "${S}" |
138 | cd "${S}" |
|
|
139 | |
|
|
140 | if use aqua; then |
|
|
141 | # provide a proper macx-g++-64 |
|
|
142 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
|
|
143 | |
|
|
144 | sed -e '/^CONFIG/s:app_bundle::' \ |
|
|
145 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
|
|
146 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed failed" |
|
|
147 | fi |
| 174 | |
148 | |
| 175 | if [[ ${PN} != qt-core ]]; then |
149 | if [[ ${PN} != qt-core ]]; then |
| 176 | skip_qmake_build_patch |
150 | skip_qmake_build_patch |
| 177 | skip_project_generation_patch |
151 | skip_project_generation_patch |
| 178 | symlink_binaries_to_buildtree |
152 | symlink_binaries_to_buildtree |
| 179 | fi |
153 | fi |
| 180 | |
154 | |
| 181 | if ! use custom-cxxflags;then |
155 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 182 | # Don't let the user go too overboard with flags. |
156 | # qmake bus errors with -O2 but -O3 works |
| 183 | strip-flags |
|
|
| 184 | replace-flags -O3 -O2 |
157 | replace-flags -O2 -O3 |
| 185 | fi |
158 | fi |
|
|
159 | |
|
|
160 | # Bug 282984 && Bug 295530 |
|
|
161 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1:" \ |
|
|
162 | -i configure || die "sed qmake compilers failed" |
|
|
163 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX):" \ |
|
|
164 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
| 186 | |
165 | |
| 187 | # Bug 178652 |
166 | # Bug 178652 |
| 188 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
167 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 189 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
168 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 190 | append-flags -fno-gcse |
169 | append-flags -fno-gcse |
| 191 | fi |
170 | fi |
| 192 | |
171 | |
| 193 | # Unsupported old gcc versions - hardened needs this :( |
172 | # Unsupported old gcc versions - hardened needs this :( |
| 194 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
173 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 195 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
174 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 196 | append-cxxflags -fno-stack-protector |
175 | append-cxxflags -fno-stack-protector |
| 197 | # Bug 253127 |
176 | # Bug 253127 |
| 198 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
177 | 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" |
178 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
179 | fi |
|
|
180 | |
|
|
181 | # Bug 261632 |
|
|
182 | if use ppc64; then |
|
|
183 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
|
|
184 | append-flags -mminimal-toc |
| 200 | fi |
185 | fi |
| 201 | |
186 | |
| 202 | # Bug 172219 |
187 | # Bug 172219 |
| 203 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
188 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 204 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
189 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 205 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
190 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 206 | -e "s:X11R6/::" \ |
191 | -e "s:X11R6/::" \ |
| 207 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
192 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 208 | |
193 | |
|
|
194 | if [[ ${CHOST} != *-darwin* ]]; then |
| 209 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
195 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 210 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
196 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 211 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
197 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 212 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
198 | -i mkspecs/common/g++.conf || die "sed mkspecs/common/g++.conf failed" |
|
|
199 | else |
|
|
200 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
|
|
201 | # crippled (by design) :/ |
|
|
202 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
203 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
204 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
|
|
205 | -e "s:-arch\s\w*::g" \ |
|
|
206 | -i mkspecs/common/mac-g++.conf || die "sed mkspecs/common/mac-g++.conf failed" |
| 213 | |
207 | |
|
|
208 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
|
|
209 | # fix arch handling (automagically duplicates our -arch arg and breaks |
|
|
210 | # pch). Additionally disable Xarch support. |
|
|
211 | sed \ |
|
|
212 | -e "s:-arch i386::" \ |
|
|
213 | -e "s:-arch ppc::" \ |
|
|
214 | -e "s:-arch x86_64::" \ |
|
|
215 | -e "s:-arch ppc64::" \ |
|
|
216 | -e "s:-arch \$i::" \ |
|
|
217 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
|
|
218 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
|
|
219 | -e "s:-Xarch_x86_64::g" \ |
|
|
220 | -e "s:-Xarch_ppc64::g" \ |
|
|
221 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
|
|
222 | |
|
|
223 | # On Snow Leopard don't fall back to 10.5 deployment target. |
|
|
224 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
|
|
225 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
|
|
226 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
|
|
227 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
|
|
228 | fi |
|
|
229 | fi |
|
|
230 | |
|
|
231 | # this one is needed for all systems with a separate -liconv, apart from |
|
|
232 | # Darwin, for which the sources already cater for -liconv |
|
|
233 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
|
|
234 | sed \ |
|
|
235 | -e "s|mac:LIBS += -liconv|LIBS += -liconv|g" \ |
|
|
236 | -i config.tests/unix/iconv/iconv.pro \ |
|
|
237 | || die "sed on iconv.pro failed" |
|
|
238 | fi |
|
|
239 | |
|
|
240 | # we need some patches for Solaris |
|
|
241 | sed -i \ |
|
|
242 | -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,' \ |
|
|
243 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
244 | # use GCC over SunStudio |
|
|
245 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
|
|
246 | # don't flirt with non-Prefix stuff, we're quite possessive |
|
|
247 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
|
|
248 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
249 | |
|
|
250 | base_src_prepare |
| 214 | } |
251 | } |
| 215 | |
252 | |
| 216 | # @FUNCTION: qt4-build_src_configure |
253 | # @FUNCTION: qt4-build_src_configure |
| 217 | # @DESCRIPTION: |
254 | # @DESCRIPTION: |
| 218 | # Default configure phase |
255 | # Default configure phase |
| 219 | qt4-build_src_configure() { |
256 | qt4-build_src_configure() { |
| 220 | |
257 | setqtenv |
| 221 | myconf="$(standard_configure_options) ${myconf}" |
258 | myconf="$(standard_configure_options) ${myconf}" |
|
|
259 | |
|
|
260 | # this one is needed for all systems with a separate -liconv, apart from |
|
|
261 | # Darwin, for which the sources already cater for -liconv |
|
|
262 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
|
|
263 | myconf+=" -liconv" |
|
|
264 | |
|
|
265 | if has glib ${IUSE//+} && use glib; then |
|
|
266 | # use -I, -L and -l from configure |
|
|
267 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
|
|
268 | # avoid the -pthread argument |
|
|
269 | myconf+=" ${glibflags//-pthread}" |
|
|
270 | unset glibflags |
|
|
271 | fi |
|
|
272 | |
|
|
273 | if use aqua ; then |
|
|
274 | # On (snow) leopard use the new (frameworked) cocoa code. |
|
|
275 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
|
|
276 | myconf+=" -cocoa -framework" |
|
|
277 | |
|
|
278 | # We are crazy and build cocoa + qt3support :-) |
|
|
279 | if use qt3support; then |
|
|
280 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
|
|
281 | -i configure |
|
|
282 | fi |
|
|
283 | |
|
|
284 | # We need the source's headers, not the installed ones. |
|
|
285 | myconf+=" -I${S}/include" |
|
|
286 | |
|
|
287 | # Add hint for the framework location. |
|
|
288 | myconf+=" -F${QTLIBDIR}" |
|
|
289 | fi |
|
|
290 | else |
|
|
291 | # freetype2 include dir is non-standard, thus include it on configure |
|
|
292 | # use -I from configure |
|
|
293 | myconf+=" $(pkg-config --cflags freetype2)" |
|
|
294 | fi |
| 222 | |
295 | |
| 223 | echo ./configure ${myconf} |
296 | echo ./configure ${myconf} |
| 224 | ./configure ${myconf} || die "./configure failed" |
297 | ./configure ${myconf} || die "./configure failed" |
|
|
298 | myconf="" |
| 225 | } |
299 | } |
| 226 | |
300 | |
| 227 | # @FUNCTION: qt4-build_src_compile |
301 | # @FUNCTION: qt4-build_src_compile |
| 228 | # @DESCRIPTION: Actual compile phase |
302 | # @DESCRIPTION: Actual compile phase |
| 229 | qt4-build_src_compile() { |
303 | qt4-build_src_compile() { |
| 230 | # Be backwards compatible for now |
304 | setqtenv |
| 231 | if [[ $EAPI != 2 ]]; then |
|
|
| 232 | qt4-build_src_configure |
|
|
| 233 | fi |
|
|
| 234 | |
305 | |
| 235 | build_directories "${QT4_TARGET_DIRECTORIES}" |
306 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
307 | } |
|
|
308 | |
|
|
309 | # @FUNCTION: fix_includes |
|
|
310 | # @DESCRIPTION: |
|
|
311 | # For MacOSX we need to add some symlinks when frameworks are |
|
|
312 | # being used, to avoid complications with some more or less stupid packages. |
|
|
313 | fix_includes() { |
|
|
314 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
|
|
315 | # Some packages tend to include <Qt/...> |
|
|
316 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
|
|
317 | |
|
|
318 | # Fake normal headers when frameworks are installed... eases life later on |
|
|
319 | local dest f |
|
|
320 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
|
|
321 | [[ -e "${frw}"/Headers ]] || continue |
|
|
322 | f=$(basename ${frw}) |
|
|
323 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
|
|
324 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
|
|
325 | |
|
|
326 | # Link normal headers as well. |
|
|
327 | for hdr in "${D}/${QTLIBDIR}/${f}"/Headers/*; do |
|
|
328 | h=$(basename ${hdr}) |
|
|
329 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers/${h} "${QTHEADERDIR#${EPREFIX}}"/Qt/${h} |
|
|
330 | done |
|
|
331 | done |
|
|
332 | fi |
| 236 | } |
333 | } |
| 237 | |
334 | |
| 238 | # @FUNCTION: qt4-build_src_install |
335 | # @FUNCTION: qt4-build_src_install |
| 239 | # @DESCRIPTION: |
336 | # @DESCRIPTION: |
| 240 | # Perform the actual installation including some library fixes. |
337 | # Perform the actual installation including some library fixes. |
| 241 | qt4-build_src_install() { |
338 | qt4-build_src_install() { |
|
|
339 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
|
|
340 | setqtenv |
| 242 | install_directories "${QT4_TARGET_DIRECTORIES}" |
341 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 243 | install_qconfigs |
342 | install_qconfigs |
| 244 | fix_library_files |
343 | fix_library_files |
|
|
344 | fix_includes |
|
|
345 | } |
|
|
346 | |
|
|
347 | # @FUNCTION: setqtenv |
|
|
348 | setqtenv() { |
|
|
349 | # Set up installation directories |
|
|
350 | QTBASEDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
351 | QTPREFIXDIR=${EPREFIX}/usr |
|
|
352 | QTBINDIR=${EPREFIX}/usr/bin |
|
|
353 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
354 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
|
|
355 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
|
|
356 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
357 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
|
|
358 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
|
|
359 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
360 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
|
|
361 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
362 | QTEXAMPLESDIR=${QTDATADIR}/examples |
|
|
363 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
364 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
365 | PLATFORM=$(qt_mkspecs_dir) |
|
|
366 | |
|
|
367 | unset QMAKESPEC |
| 245 | } |
368 | } |
| 246 | |
369 | |
| 247 | # @FUNCTION: standard_configure_options |
370 | # @FUNCTION: standard_configure_options |
| 248 | # @DESCRIPTION: |
371 | # @DESCRIPTION: |
| 249 | # Sets up some standard configure options, like libdir (if necessary), whether |
372 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 250 | # debug info is wanted or not. |
373 | # debug info is wanted or not. |
| 251 | standard_configure_options() { |
374 | standard_configure_options() { |
| 252 | local myconf="" |
375 | local myconf= |
| 253 | |
376 | |
| 254 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
377 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 255 | |
378 | |
| 256 | # Disable visibility explicitly if gcc version isn't 4 |
379 | # Disable visibility explicitly if gcc version isn't 4 |
| 257 | if [[ "$(gcc-major-version)" -lt "4" ]]; then |
380 | if [[ $(gcc-major-version) -lt 4 ]]; then |
| 258 | myconf="${myconf} -no-reduce-exports" |
381 | myconf+=" -no-reduce-exports" |
| 259 | fi |
382 | fi |
| 260 | |
383 | |
| 261 | # precompiled headers doesn't work on hardened, where the flag is masked. |
384 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
385 | myconf+=" $(qt_use pch)" |
|
|
386 | |
| 262 | if use pch; then |
387 | if use debug; then |
| 263 | myconf="${myconf} -pch" |
388 | myconf+=" -debug" |
| 264 | else |
389 | else |
| 265 | myconf="${myconf} -no-pch" |
390 | myconf+=" -release" |
| 266 | fi |
391 | fi |
| 267 | |
|
|
| 268 | if use debug; then |
|
|
| 269 | myconf="${myconf} -debug -no-separate-debug-info" |
392 | myconf+=" -no-separate-debug-info" |
| 270 | else |
393 | |
| 271 | myconf="${myconf} -release -no-separate-debug-info" |
394 | use aqua && myconf+=" -no-framework" |
| 272 | fi |
|
|
| 273 | |
395 | |
| 274 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
396 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 275 | # $(tc-arch). Therefore we convert it to supported values. |
397 | # $(tc-arch). Therefore we convert it to supported values. |
| 276 | case "$(tc-arch)" in |
398 | case "$(tc-arch)" in |
| 277 | amd64) myconf="${myconf} -arch x86_64" ;; |
399 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
|
|
400 | ppc-macos) myconf+=" -arch ppc" ;; |
| 278 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
401 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
|
|
402 | sparc|sparc-*) myconf+=" -arch sparc" ;; |
|
|
403 | x86-macos) myconf+=" -arch x86" ;; |
| 279 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
404 | x86|x86-*) myconf+=" -arch i386" ;; |
| 280 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
405 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
| 281 | hppa|sh) myconf="${myconf} -arch generic" ;; |
406 | hppa|sh) myconf+=" -arch generic" ;; |
| 282 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
407 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 283 | esac |
408 | esac |
| 284 | |
409 | |
| 285 | # Bug 261412 Qt configure detects archs by uname |
410 | # 4.6: build qt-core with exceptions or qt-xmlpatterns won't build |
| 286 | case "$(tc-arch)" in |
411 | local exceptions= |
| 287 | ppc) myconf="${myconf} -platform linux-g++-32";; |
412 | case "${PV}" in |
|
|
413 | 4.6.*) |
|
|
414 | if [[ ${PN} != "qt-core" ]] && [[ ${PN} != "qt-xmlpatterns" ]]; then |
|
|
415 | case "${PV}:${CHOST}" in |
|
|
416 | 4.6.0*:*-darwin*) |
|
|
417 | : # http://bugreports.qt.nokia.com/browse/QTBUG-5909 |
|
|
418 | # workaround for compilation error on OSX (qt-gui) |
|
|
419 | ;; |
|
|
420 | *) |
|
|
421 | exceptions="-no-exceptions" |
|
|
422 | ;; |
|
|
423 | esac |
|
|
424 | fi |
|
|
425 | ;; |
|
|
426 | *) |
|
|
427 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
428 | ;; |
| 288 | esac |
429 | esac |
| 289 | |
430 | |
| 290 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
431 | # note about -reduce-relocations: |
|
|
432 | # That flag seems to introduce major breakage to applications, |
|
|
433 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
434 | # construct a QApplication before a QPaintDevice" on Solaris |
|
|
435 | # -- Daniel Vergien |
|
|
436 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
437 | |
|
|
438 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
| 291 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
439 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 292 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
440 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 293 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
441 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 294 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
442 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 295 | -demosdir ${QTDEMOSDIR} -silent -fast |
443 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
| 296 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
444 | ${exceptions} |
| 297 | -reduce-relocations -nomake examples -nomake demos" |
445 | -nomake examples -nomake demos" |
| 298 | |
|
|
| 299 | # Make eclass 4.5.{1,2} ready |
|
|
| 300 | case "${MY_PV}" in |
|
|
| 301 | 4.5.1 | 4.5.2) |
|
|
| 302 | myconf="${myconf} -opensource" |
|
|
| 303 | ;; |
|
|
| 304 | esac |
|
|
| 305 | |
446 | |
| 306 | echo "${myconf}" |
447 | echo "${myconf}" |
| 307 | } |
448 | } |
| 308 | |
449 | |
| 309 | # @FUNCTION: build_directories |
450 | # @FUNCTION: build_directories |
| 310 | # @USAGE: < directories > |
451 | # @USAGE: < directories > |
| 311 | # @DESCRIPTION: |
452 | # @DESCRIPTION: |
| 312 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
453 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 313 | build_directories() { |
454 | build_directories() { |
| 314 | local dirs="$@" |
|
|
| 315 | for x in ${dirs}; do |
455 | for x in "$@"; do |
| 316 | cd "${S}"/${x} |
456 | pushd "${S}"/${x} >/dev/null |
|
|
457 | # avoid running over the maximum argument number, bug #299810 |
|
|
458 | { |
|
|
459 | echo "${S}"/mkspecs/common/*.conf |
|
|
460 | find "${S}" -name '*.pr[io]' |
|
|
461 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
| 317 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
462 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 318 | emake || die "emake failed" |
463 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
|
|
464 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
|
|
465 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
|
|
466 | popd >/dev/null |
| 319 | done |
467 | done |
| 320 | } |
468 | } |
| 321 | |
469 | |
| 322 | # @FUNCTION: install_directories |
470 | # @FUNCTION: install_directories |
| 323 | # @USAGE: < directories > |
471 | # @USAGE: < directories > |
| 324 | # @DESCRIPTION: |
472 | # @DESCRIPTION: |
| 325 | # run emake install in the given directories, which are separated by spaces |
473 | # run emake install in the given directories, which are separated by spaces |
| 326 | install_directories() { |
474 | install_directories() { |
| 327 | local dirs="$@" |
|
|
| 328 | for x in ${dirs}; do |
475 | for x in "$@"; do |
| 329 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
476 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 330 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
477 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 331 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
478 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
| 332 | done |
479 | done |
| 333 | } |
480 | } |
| 334 | |
481 | |
| 335 | # @ECLASS-VARIABLE: QCONFIG_ADD |
482 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 336 | # @DESCRIPTION: |
483 | # @DESCRIPTION: |
| 337 | # List options that need to be added to QT_CONFIG in qconfig.pri |
484 | # List options that need to be added to QT_CONFIG in qconfig.pri |
| 338 | QCONFIG_ADD="${QCONFIG_ADD:-}" |
485 | : ${QCONFIG_ADD:=} |
| 339 | |
486 | |
| 340 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
487 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
| 341 | # @DESCRIPTION: |
488 | # @DESCRIPTION: |
| 342 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
489 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
| 343 | QCONFIG_REMOVE="${QCONFIG_REMOVE:-}" |
490 | : ${QCONFIG_REMOVE:=} |
| 344 | |
491 | |
| 345 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
492 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 346 | # @DESCRIPTION: |
493 | # @DESCRIPTION: |
| 347 | # List variables that should be defined at the top of QtCore/qconfig.h |
494 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 348 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
495 | : ${QCONFIG_DEFINE:=} |
| 349 | |
496 | |
| 350 | # @FUNCTION: install_qconfigs |
497 | # @FUNCTION: install_qconfigs |
| 351 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
498 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 352 | install_qconfigs() { |
499 | install_qconfigs() { |
| 353 | local x |
500 | local x |
| 354 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
501 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 355 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
502 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 356 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
503 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| 357 | done |
504 | done |
| 358 | insinto ${QTDATADIR}/mkspecs/gentoo |
505 | insinto ${QTDATADIR#${EPREFIX}}/mkspecs/gentoo |
| 359 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
506 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
| 360 | fi |
507 | fi |
| 361 | |
508 | |
| 362 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
509 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
| 363 | for x in ${QCONFIG_DEFINE}; do |
510 | for x in ${QCONFIG_DEFINE}; do |
| 364 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
511 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
| 365 | done |
512 | done |
| 366 | insinto ${QTHEADERDIR}/Gentoo |
513 | insinto ${QTHEADERDIR#${EPREFIX}}/Gentoo |
| 367 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
514 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 368 | fi |
515 | fi |
| 369 | } |
516 | } |
| 370 | |
517 | |
| 371 | # @FUNCTION: generate_qconfigs |
518 | # @FUNCTION: generate_qconfigs |
| … | |
… | |
| 373 | generate_qconfigs() { |
520 | generate_qconfigs() { |
| 374 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
521 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 375 | local x qconfig_add qconfig_remove qconfig_new |
522 | local x qconfig_add qconfig_remove qconfig_new |
| 376 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
523 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 377 | [[ -f ${x} ]] || continue |
524 | [[ -f ${x} ]] || continue |
| 378 | qconfig_add="${qconfig_add} $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
525 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
| 379 | qconfig_remove="${qconfig_remove} $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
526 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
| 380 | done |
527 | done |
| 381 | |
528 | |
| 382 | # these error checks do not use die because dying in pkg_post{inst,rm} |
529 | # these error checks do not use die because dying in pkg_post{inst,rm} |
| 383 | # just makes things worse. |
530 | # just makes things worse. |
| 384 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
531 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
| … | |
… | |
| 391 | |
538 | |
| 392 | # generate list of QT_CONFIG entries from the existing list |
539 | # generate list of QT_CONFIG entries from the existing list |
| 393 | # including qconfig_add and excluding qconfig_remove |
540 | # including qconfig_add and excluding qconfig_remove |
| 394 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
541 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 395 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
542 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 396 | hasq ${x} ${qconfig_remove} || qconfig_new="${qconfig_new} ${x}" |
543 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 397 | done |
544 | done |
| 398 | |
545 | |
| 399 | # replace the existing QT_CONFIG list with qconfig_new |
546 | # replace the existing QT_CONFIG list with qconfig_new |
| 400 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
547 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 401 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
548 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 435 | # @FUNCTION: qt4-build_pkg_postinst |
582 | # @FUNCTION: qt4-build_pkg_postinst |
| 436 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
583 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
| 437 | # breakages and proposed solutions. |
584 | # breakages and proposed solutions. |
| 438 | qt4-build_pkg_postinst() { |
585 | qt4-build_pkg_postinst() { |
| 439 | generate_qconfigs |
586 | generate_qconfigs |
|
|
587 | |
|
|
588 | if [[ "${PN}" == "qt-core" ]]; then |
| 440 | echo |
589 | echo |
| 441 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
590 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
| 442 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
591 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| 443 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
592 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
| 444 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
593 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
| 445 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
594 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
| 446 | ewarn |
595 | ewarn |
| 447 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
596 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
| 448 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
597 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
| 449 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
598 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
| 450 | ewarn "configuration." |
599 | ewarn "configuration." |
| 451 | ewarn |
600 | ewarn |
| 452 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
601 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
| 453 | echo |
602 | echo |
|
|
603 | fi |
| 454 | } |
604 | } |
| 455 | |
605 | |
| 456 | # @FUNCTION: skip_qmake_build_patch |
606 | # @FUNCTION: skip_qmake_build_patch |
| 457 | # @DESCRIPTION: |
607 | # @DESCRIPTION: |
| 458 | # Don't need to build qmake, as it's already installed from qt-core |
608 | # Don't need to build qmake, as it's already installed from qt-core |
| … | |
… | |
| 494 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
644 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
| 495 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
645 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 496 | if [[ -e ${libfile} ]]; then |
646 | if [[ -e ${libfile} ]]; then |
| 497 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
647 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 498 | |
648 | |
| 499 | # Move .pc files into the pkgconfig directory |
649 | # Move .pc files into the pkgconfig directory |
| 500 | dodir ${QTPCDIR} |
650 | dodir ${QTPCDIR#${EPREFIX}} |
| 501 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
651 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 502 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
652 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 503 | fi |
653 | fi |
| 504 | done |
654 | done |
| 505 | |
655 | |
| … | |
… | |
| 507 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
657 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 508 | } |
658 | } |
| 509 | |
659 | |
| 510 | # @FUNCTION: qt_use |
660 | # @FUNCTION: qt_use |
| 511 | # @USAGE: < flag > [ feature ] [ enableval ] |
661 | # @USAGE: < flag > [ feature ] [ enableval ] |
| 512 | # @DESCRIPTION: |
662 | # @DESCRIPTION: |
| 513 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
663 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
| 514 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
664 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
| 515 | # will be used for that. If [enableval] is not specified, it omits the |
665 | # will be used for that. If [enableval] is not specified, it omits the |
| 516 | # assignment-part |
666 | # assignment-part |
| 517 | qt_use() { |
667 | qt_use() { |
| 518 | local flag="${1}" |
668 | local flag=$1 |
| 519 | local feature="${1}" |
669 | local feature=$1 |
| 520 | local enableval= |
670 | local enableval= |
| 521 | |
671 | |
| 522 | [[ -n ${2} ]] && feature=${2} |
672 | [[ -n $2 ]] && feature=$2 |
| 523 | [[ -n ${3} ]] && enableval="-${3}" |
673 | [[ -n $3 ]] && enableval=-$3 |
| 524 | |
674 | |
| 525 | if use ${flag}; then |
675 | if use ${flag}; then |
| 526 | echo "${enableval}-${feature}" |
676 | echo "${enableval}-${feature}" |
| 527 | else |
677 | else |
| 528 | echo "-no-${feature}" |
678 | echo "-no-${feature}" |
| 529 | fi |
679 | fi |
| 530 | } |
680 | } |
| 531 | |
681 | |
| 532 | # @ECLASS-VARIABLE: QT4_BUILT_WITH_USE_CHECK |
|
|
| 533 | # @DESCRIPTION: |
|
|
| 534 | # The contents of $QT4_BUILT_WITH_USE_CHECK gets fed to built_with_use |
|
|
| 535 | # (eutils.eclass), line per line. |
|
|
| 536 | # |
|
|
| 537 | # Example: |
|
|
| 538 | # @CODE |
|
|
| 539 | # pkg_setup() { |
|
|
| 540 | # use qt3support && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
| 541 | # ~x11-libs/qt-gui-${PV} qt3support" |
|
|
| 542 | # qt4-build_check_use |
|
|
| 543 | # } |
|
|
| 544 | # @CODE |
|
|
| 545 | |
|
|
| 546 | # Run built_with_use on each flag and print appropriate error messages if any |
|
|
| 547 | # flags are missing |
|
|
| 548 | |
|
|
| 549 | _qt_built_with_use() { |
|
|
| 550 | local missing opt pkg flag flags |
|
|
| 551 | |
|
|
| 552 | if [[ ${1} = "--missing" ]]; then |
|
|
| 553 | missing="${1} ${2}" && shift 2 |
|
|
| 554 | fi |
|
|
| 555 | if [[ ${1:0:1} = "-" ]]; then |
|
|
| 556 | opt=${1} && shift |
|
|
| 557 | fi |
|
|
| 558 | |
|
|
| 559 | pkg=${1} && shift |
|
|
| 560 | |
|
|
| 561 | for flag in "${@}"; do |
|
|
| 562 | flags="${flags} ${flag}" |
|
|
| 563 | if ! built_with_use ${missing} ${opt} ${pkg} ${flag}; then |
|
|
| 564 | flags="${flags}*" |
|
|
| 565 | else |
|
|
| 566 | [[ ${opt} = "-o" ]] && return 0 |
|
|
| 567 | fi |
|
|
| 568 | done |
|
|
| 569 | if [[ "${flags# }" = "${@}" ]]; then |
|
|
| 570 | return 0 |
|
|
| 571 | fi |
|
|
| 572 | if [[ ${opt} = "-o" ]]; then |
|
|
| 573 | eerror "This package requires '${pkg}' to be built with any of the following USE flags: '$*'." |
|
|
| 574 | else |
|
|
| 575 | eerror "This package requires '${pkg}' to be built with the following USE flags: '${flags# }'." |
|
|
| 576 | fi |
|
|
| 577 | return 1 |
|
|
| 578 | } |
|
|
| 579 | |
|
|
| 580 | # @FUNCTION: qt4-build_check_use |
|
|
| 581 | # @DESCRIPTION: |
|
|
| 582 | # Check if the listed packages in $QT4_BUILT_WITH_USE_CHECK are built with the |
|
|
| 583 | # USE flags listed. |
|
|
| 584 | # |
|
|
| 585 | # If any of the required USE flags are missing, an eerror will be printed for |
|
|
| 586 | # each package with missing USE flags. |
|
|
| 587 | qt4-build_check_use() { |
|
|
| 588 | local line missing |
|
|
| 589 | while read line; do |
|
|
| 590 | [[ -z ${line} ]] && continue |
|
|
| 591 | if ! _qt_built_with_use ${line}; then |
|
|
| 592 | missing=true |
|
|
| 593 | fi |
|
|
| 594 | done <<< "${QT4_BUILT_WITH_USE_CHECK}" |
|
|
| 595 | if [[ -n ${missing} ]]; then |
|
|
| 596 | echo |
|
|
| 597 | eerror "Flags marked with an * are missing." |
|
|
| 598 | die "Missing USE flags found" |
|
|
| 599 | fi |
|
|
| 600 | } |
|
|
| 601 | |
|
|
| 602 | # @FUNCTION: qt_mkspecs_dir |
682 | # @FUNCTION: qt_mkspecs_dir |
| 603 | # @RETURN: the specs-directory w/o path |
683 | # @RETURN: the specs-directory w/o path |
| 604 | # @DESCRIPTION: |
684 | # @DESCRIPTION: |
| 605 | # Allows us to define which mkspecs dir we want to use. |
685 | # Allows us to define which mkspecs dir we want to use. |
| 606 | qt_mkspecs_dir() { |
686 | qt_mkspecs_dir() { |
| 607 | # Allows us to define which mkspecs dir we want to use. |
687 | # Allows us to define which mkspecs dir we want to use. |
| 608 | local spec |
688 | local spec |
| 609 | |
689 | |
| 610 | case ${CHOST} in |
690 | case ${CHOST} in |
| 611 | *-freebsd*|*-dragonfly*) |
691 | *-freebsd*|*-dragonfly*) |
| 612 | spec="freebsd" ;; |
692 | spec=freebsd ;; |
| 613 | *-openbsd*) |
693 | *-openbsd*) |
| 614 | spec="openbsd" ;; |
694 | spec=openbsd ;; |
| 615 | *-netbsd*) |
695 | *-netbsd*) |
| 616 | spec="netbsd" ;; |
696 | spec=netbsd ;; |
| 617 | *-darwin*) |
697 | *-darwin*) |
|
|
698 | if use aqua; then |
|
|
699 | # mac with carbon/cocoa |
|
|
700 | spec=macx |
|
|
701 | else |
|
|
702 | # darwin/mac with x11 |
| 618 | spec="darwin" ;; |
703 | spec=darwin |
|
|
704 | fi |
|
|
705 | ;; |
|
|
706 | *-solaris*) |
|
|
707 | spec=solaris ;; |
| 619 | *-linux-*|*-linux) |
708 | *-linux-*|*-linux) |
| 620 | spec="linux" ;; |
709 | spec=linux ;; |
| 621 | *) |
710 | *) |
| 622 | die "Unknown CHOST, no platform choosen." |
711 | die "Unknown CHOST, no platform choosen." |
| 623 | esac |
712 | esac |
| 624 | |
713 | |
| 625 | CXX=$(tc-getCXX) |
714 | CXX=$(tc-getCXX) |
| 626 | if [[ ${CXX/g++/} != ${CXX} ]]; then |
715 | if [[ ${CXX} == *g++* ]]; then |
| 627 | spec="${spec}-g++" |
716 | spec+=-g++ |
| 628 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
717 | elif [[ ${CXX} == *icpc* ]]; then |
| 629 | spec="${spec}-icc" |
718 | spec+=-icc |
| 630 | else |
719 | else |
| 631 | die "Unknown compiler ${CXX}." |
720 | die "Unknown compiler ${CXX}." |
| 632 | fi |
721 | fi |
|
|
722 | if [[ -n ${LIBDIR/lib} ]]; then |
|
|
723 | spec+=-${LIBDIR/lib} |
|
|
724 | fi |
|
|
725 | |
|
|
726 | # Add -64 for 64bit profiles |
|
|
727 | if use x64-freebsd || |
|
|
728 | use amd64-linux || |
|
|
729 | use x64-macos || |
|
|
730 | use x64-solaris || |
|
|
731 | use sparc64-solaris |
|
|
732 | then |
|
|
733 | spec+=-64 |
|
|
734 | fi |
| 633 | |
735 | |
| 634 | echo "${spec}" |
736 | echo "${spec}" |
| 635 | } |
737 | } |
| 636 | |
738 | |
| 637 | case ${EAPI:-0} in |
|
|
| 638 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
| 639 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
739 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
| 640 | esac |
|
|