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