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