| 1 | # Copyright 2007-2009 Gentoo Foundation |
1 | # Copyright 2007-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.21 2009/02/14 22:25:10 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.40 2009/06/27 18:55:02 yngwin Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ben de Groot <yngwin@gentoo.org> |
7 | # Ben de Groot <yngwin@gentoo.org>, |
| 8 | # Markos Chandras <hwoarang@gentoo.org> |
8 | # Markos Chandras <hwoarang@gentoo.org>, |
| 9 | # Caleb Tennis <caleb@gentoo.org> |
9 | # Caleb Tennis <caleb@gentoo.org> |
| 10 | # @BLURB: Eclass for Qt4 split ebuilds. |
10 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 12 | # This eclass contains various functions that are used when building Qt4 |
12 | # This eclass contains various functions that are used when building Qt4 |
| 13 | |
13 | |
| 14 | inherit eutils multilib toolchain-funcs flag-o-matic versionator |
14 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 15 | |
15 | |
| 16 | IUSE="${IUSE} custom-cxxflags debug pch" |
16 | IUSE="${IUSE} debug pch" |
| 17 | |
17 | RDEPEND=" |
|
|
18 | !<x11-libs/qt-assistant-${PV} |
|
|
19 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
20 | !<x11-libs/qt-core-${PV} |
|
|
21 | !>x11-libs/qt-core-${PV}-r9999 |
|
|
22 | !<x11-libs/qt-dbus-${PV} |
|
|
23 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
24 | !<x11-libs/qt-demo-${PV} |
|
|
25 | !>x11-libs/qt-demo-${PV}-r9999 |
|
|
26 | !<x11-libs/qt-gui-${PV} |
|
|
27 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
28 | !<x11-libs/qt-opengl-${PV} |
|
|
29 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
30 | !<x11-libs/qt-phonon-${PV} |
|
|
31 | !>x11-libs/qt-phonon-${PV}-r9999 |
|
|
32 | !<x11-libs/qt-qt3support-${PV} |
|
|
33 | !>x11-libs/qt-qt3support-${PV}-r9999 |
|
|
34 | !<x11-libs/qt-script-${PV} |
|
|
35 | !>x11-libs/qt-script-${PV}-r9999 |
|
|
36 | !<x11-libs/qt-sql-${PV} |
|
|
37 | !>x11-libs/qt-sql-${PV}-r9999 |
|
|
38 | !<x11-libs/qt-svg-${PV} |
|
|
39 | !>x11-libs/qt-svg-${PV}-r9999 |
|
|
40 | !<x11-libs/qt-test-${PV} |
|
|
41 | !>x11-libs/qt-test-${PV}-r9999 |
|
|
42 | !<x11-libs/qt-webkit-${PV} |
|
|
43 | !>x11-libs/qt-webkit-${PV}-r9999 |
|
|
44 | !<x11-libs/qt-xmlpatterns-${PV} |
|
|
45 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
|
|
46 | " |
| 18 | case "${PV}" in |
47 | case "${PV}" in |
| 19 | 4.?.?_rc*) |
48 | 4.?.?_rc*) |
| 20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
49 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 21 | MY_PV="${PV/_rc/-rc}" |
50 | MY_PV="${PV/_rc/-rc}" |
| 22 | ;; |
51 | ;; |
| … | |
… | |
| 27 | esac |
56 | esac |
| 28 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
57 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
| 29 | S=${WORKDIR}/${MY_P} |
58 | S=${WORKDIR}/${MY_P} |
| 30 | |
59 | |
| 31 | HOMEPAGE="http://www.qtsoftware.com/" |
60 | HOMEPAGE="http://www.qtsoftware.com/" |
| 32 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
61 | SRC_URI="http://get.qtsoftware.com/qt/source/${MY_P}.tar.bz2" |
| 33 | |
62 | |
| 34 | case "${PV}" in |
63 | case "${PV}" in |
| 35 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
64 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
| 36 | *) ;; |
65 | *) ;; |
| 37 | esac |
66 | esac |
| 38 | |
67 | |
|
|
68 | if version_is_at_least 4.5 ${PV} ; then |
|
|
69 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
70 | fi |
|
|
71 | |
|
|
72 | # @FUNCTION: qt4-build_pkg_setup |
|
|
73 | # @DESCRIPTION: |
|
|
74 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 39 | qt4-build_pkg_setup() { |
75 | qt4-build_pkg_setup() { |
| 40 | # EAPI=2 ebuilds set use-deps, others need this: |
76 | # EAPI=2 ebuilds set use-deps, others need this: |
| 41 | if [[ $EAPI != 2 ]]; then |
77 | if [[ $EAPI != 2 ]]; then |
| 42 | # Make sure debug setting corresponds with qt-core (bug 258512) |
78 | # Make sure debug setting corresponds with qt-core (bug 258512) |
| 43 | if [[ $PN != "qt-core" ]]; then |
79 | if [[ $PN != "qt-core" ]]; then |
| … | |
… | |
| 46 | fi |
82 | fi |
| 47 | |
83 | |
| 48 | # Check USE requirements |
84 | # Check USE requirements |
| 49 | qt4-build_check_use |
85 | qt4-build_check_use |
| 50 | fi |
86 | fi |
| 51 | |
|
|
| 52 | # Set up installation directories |
87 | # Set up installation directories |
| 53 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
88 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 54 | QTPREFIXDIR=/usr |
89 | QTPREFIXDIR=/usr |
| 55 | QTBINDIR=/usr/bin |
90 | QTBINDIR=/usr/bin |
| 56 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
91 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
| … | |
… | |
| 70 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
105 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
| 71 | |
106 | |
| 72 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
107 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
| 73 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
108 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 74 | echo |
109 | echo |
| 75 | ebeep 5 |
110 | ebeep 3 |
| 76 | fi |
111 | fi |
| 77 | |
|
|
| 78 | if use custom-cxxflags; then |
|
|
| 79 | echo |
|
|
| 80 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
| 81 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
| 82 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
| 83 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
| 84 | ewarn "for breakfast. ;-) " |
|
|
| 85 | echo |
|
|
| 86 | fi |
|
|
| 87 | |
|
|
| 88 | } |
112 | } |
| 89 | |
113 | |
|
|
114 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
115 | # @DESCRIPTION: |
|
|
116 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
117 | # code should be compiled. This is a space-separated list |
|
|
118 | |
|
|
119 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
120 | # @DESCRIPTION: |
|
|
121 | # Space separated list including the directories that will be extracted from Qt |
|
|
122 | # tarball |
|
|
123 | |
|
|
124 | # @FUNCTION: qt4-build_src_unpack |
|
|
125 | # @DESCRIPTION: |
|
|
126 | # Unpacks the sources |
| 90 | qt4-build_src_unpack() { |
127 | qt4-build_src_unpack() { |
| 91 | local target targets |
128 | local target targets licenses |
|
|
129 | if version_is_at_least 4.5 ${PV} ; then |
|
|
130 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
131 | else |
|
|
132 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
133 | fi |
| 92 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
134 | for target in configure ${licenses} projects.pro \ |
| 93 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
135 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 94 | ${QT4_EXTRACT_DIRECTORIES}; do |
136 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 95 | targets="${targets} ${MY_P}/${target}" |
137 | targets="${targets} ${MY_P}/${target}" |
| 96 | done |
138 | done |
| 97 | |
139 | |
| … | |
… | |
| 109 | if [[ $EAPI != 2 ]]; then |
151 | if [[ $EAPI != 2 ]]; then |
| 110 | qt4-build_src_prepare |
152 | qt4-build_src_prepare |
| 111 | fi |
153 | fi |
| 112 | } |
154 | } |
| 113 | |
155 | |
|
|
156 | # @ECLASS-VARIABLE: PATCHES |
|
|
157 | # @DESCRIPTION: |
|
|
158 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
159 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
160 | # example: |
|
|
161 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
162 | # ${FILESDIR}"/mypatch2.patch" |
|
|
163 | # |
|
|
164 | |
|
|
165 | # @FUNCTION: qt4-build_src_prepare |
|
|
166 | # @DESCRIPTION: |
|
|
167 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
168 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 114 | qt4-build_src_prepare() { |
169 | qt4-build_src_prepare() { |
| 115 | cd "${S}" |
170 | cd "${S}" |
| 116 | |
171 | |
| 117 | if [[ ${PN} != qt-core ]]; then |
172 | if [[ ${PN} != qt-core ]]; then |
| 118 | skip_qmake_build_patch |
173 | skip_qmake_build_patch |
| 119 | skip_project_generation_patch |
174 | skip_project_generation_patch |
| 120 | symlink_binaries_to_buildtree |
175 | symlink_binaries_to_buildtree |
| 121 | fi |
176 | fi |
| 122 | |
|
|
| 123 | # Bug 172219 |
|
|
| 124 | if !use custom-cxxflags;then |
|
|
| 125 | # Don't let the user go too overboard with flags. |
|
|
| 126 | strip-flags |
|
|
| 127 | replace-flags -O3 -O2 |
|
|
| 128 | fi |
|
|
| 129 | |
177 | |
| 130 | # Bug 253127 |
178 | # Bug 178652 |
|
|
179 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
180 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
181 | append-flags -fno-gcse |
|
|
182 | fi |
|
|
183 | |
| 131 | # Unsupported old gcc versions - hardened needs this :( |
184 | # Unsupported old gcc versions - hardened needs this :( |
| 132 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
185 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
| 133 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
186 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 134 | append-cxxflags -fno-stack-protector |
187 | append-cxxflags -fno-stack-protector |
|
|
188 | # Bug 253127 |
|
|
189 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
190 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 135 | fi |
191 | fi |
| 136 | |
192 | |
| 137 | # Bug 178652 |
193 | # Bug 172219 |
| 138 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 139 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 140 | append-flags -fno-gcse |
|
|
| 141 | fi |
|
|
| 142 | |
|
|
| 143 | |
|
|
| 144 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
194 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 145 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
195 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 146 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
196 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 147 | -e "s:X11R6/::" \ |
197 | -e "s:X11R6/::" \ |
| 148 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
198 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| … | |
… | |
| 150 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
200 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 151 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
201 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 152 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
202 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 153 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
203 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 154 | |
204 | |
|
|
205 | base_src_prepare |
| 155 | } |
206 | } |
| 156 | |
207 | |
|
|
208 | # @FUNCTION: qt4-build_src_configure |
|
|
209 | # @DESCRIPTION: |
|
|
210 | # Default configure phase |
| 157 | qt4-build_src_configure() { |
211 | qt4-build_src_configure() { |
| 158 | |
212 | |
| 159 | myconf="$(standard_configure_options) ${myconf}" |
213 | myconf="$(standard_configure_options) ${myconf}" |
| 160 | |
214 | |
| 161 | echo ./configure ${myconf} |
215 | echo ./configure ${myconf} |
| 162 | ./configure ${myconf} || die "./configure failed" |
216 | ./configure ${myconf} || die "./configure failed" |
| 163 | } |
217 | } |
| 164 | |
218 | |
|
|
219 | # @FUNCTION: qt4-build_src_compile |
|
|
220 | # @DESCRIPTION: Actual compile phase |
| 165 | qt4-build_src_compile() { |
221 | qt4-build_src_compile() { |
| 166 | # Be backwards compatible for now |
222 | # Be backwards compatible for now |
| 167 | if [[ $EAPI != 2 ]]; then |
223 | if [[ $EAPI != 2 ]]; then |
| 168 | qt4-build_src_configure |
224 | qt4-build_src_configure |
| 169 | fi |
225 | fi |
| 170 | |
226 | |
| 171 | build_directories "${QT4_TARGET_DIRECTORIES}" |
227 | build_directories "${QT4_TARGET_DIRECTORIES}" |
| 172 | } |
228 | } |
| 173 | |
229 | |
|
|
230 | # @FUNCTION: qt4-build_src_install |
|
|
231 | # @DESCRIPTION: |
|
|
232 | # Perform the actual installation including some library fixes. |
| 174 | qt4-build_src_install() { |
233 | qt4-build_src_install() { |
| 175 | install_directories "${QT4_TARGET_DIRECTORIES}" |
234 | install_directories "${QT4_TARGET_DIRECTORIES}" |
| 176 | install_qconfigs |
235 | install_qconfigs |
| 177 | fix_library_files |
236 | fix_library_files |
| 178 | } |
237 | } |
| 179 | |
238 | |
|
|
239 | # @FUNCTION: standard_configure_options |
|
|
240 | # @DESCRIPTION: |
|
|
241 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
242 | # debug info is wanted or not. |
| 180 | standard_configure_options() { |
243 | standard_configure_options() { |
| 181 | local myconf="" |
244 | local myconf="" |
| 182 | |
245 | |
| 183 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
246 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 184 | |
247 | |
| … | |
… | |
| 199 | else |
262 | else |
| 200 | myconf="${myconf} -release -no-separate-debug-info" |
263 | myconf="${myconf} -release -no-separate-debug-info" |
| 201 | fi |
264 | fi |
| 202 | |
265 | |
| 203 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
266 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 204 | # ${ARCH}. Therefore we convert it to supported values. |
267 | # $(tc-arch). Therefore we convert it to supported values. |
| 205 | case "${ARCH}" in |
268 | case "$(tc-arch)" in |
| 206 | amd64) myconf="${myconf} -arch x86_64" ;; |
269 | amd64) myconf="${myconf} -arch x86_64" ;; |
| 207 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
270 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
| 208 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
271 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
| 209 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
272 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 210 | hppa|sh) myconf="${myconf} -arch generic" ;; |
273 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 211 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
274 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 212 | esac |
275 | esac |
| 213 | |
276 | |
| 214 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
277 | myconf="${myconf} -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license -no-rpath |
| 215 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
278 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 216 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
279 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 217 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
280 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 218 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
281 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 219 | -demosdir ${QTDEMOSDIR} -silent -fast |
282 | -demosdir ${QTDEMOSDIR} -silent -fast |
| 220 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
283 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
| 221 | $(use x86-fbsd || echo -reduce-relocations) |
|
|
| 222 | -nomake examples -nomake demos" |
284 | -reduce-relocations -nomake examples -nomake demos" |
|
|
285 | |
|
|
286 | # Make eclass 4.5.{1,2} ready |
|
|
287 | case "${MY_PV}" in |
|
|
288 | 4.5.1 | 4.5.2) |
|
|
289 | myconf="${myconf} -opensource" |
|
|
290 | ;; |
|
|
291 | esac |
| 223 | |
292 | |
| 224 | echo "${myconf}" |
293 | echo "${myconf}" |
| 225 | } |
294 | } |
| 226 | |
295 | |
|
|
296 | # @FUNCTION: build_directories |
|
|
297 | # @USAGE: < directories > |
|
|
298 | # @DESCRIPTION: |
|
|
299 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 227 | build_directories() { |
300 | build_directories() { |
| 228 | local dirs="$@" |
301 | local dirs="$@" |
| 229 | for x in ${dirs}; do |
302 | for x in ${dirs}; do |
| 230 | cd "${S}"/${x} |
303 | cd "${S}"/${x} |
| 231 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
304 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 232 | emake || die "emake failed" |
305 | emake || die "emake failed" |
| 233 | done |
306 | done |
| 234 | } |
307 | } |
| 235 | |
308 | |
|
|
309 | # @FUNCTION: install_directories |
|
|
310 | # @USAGE: < directories > |
|
|
311 | # @DESCRIPTION: |
|
|
312 | # run emake install in the given directories, which are separated by spaces |
| 236 | install_directories() { |
313 | install_directories() { |
| 237 | local dirs="$@" |
314 | local dirs="$@" |
| 238 | for x in ${dirs}; do |
315 | for x in ${dirs}; do |
| 239 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
316 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 240 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
317 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 255 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
332 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 256 | # @DESCRIPTION: |
333 | # @DESCRIPTION: |
| 257 | # List variables that should be defined at the top of QtCore/qconfig.h |
334 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 258 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
335 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 259 | |
336 | |
|
|
337 | # @FUNCTION: install_qconfigs |
|
|
338 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 260 | install_qconfigs() { |
339 | install_qconfigs() { |
| 261 | local x |
340 | local x |
| 262 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
341 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 263 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
342 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 264 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
343 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 274 | insinto ${QTHEADERDIR}/Gentoo |
353 | insinto ${QTHEADERDIR}/Gentoo |
| 275 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
354 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 276 | fi |
355 | fi |
| 277 | } |
356 | } |
| 278 | |
357 | |
|
|
358 | # @FUNCTION: generate_qconfigs |
|
|
359 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 279 | generate_qconfigs() { |
360 | generate_qconfigs() { |
| 280 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
361 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 281 | local x qconfig_add qconfig_remove qconfig_new |
362 | local x qconfig_add qconfig_remove qconfig_new |
| 282 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
363 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 283 | [[ -f ${x} ]] || continue |
364 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 330 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
411 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 331 | fi |
412 | fi |
| 332 | fi |
413 | fi |
| 333 | } |
414 | } |
| 334 | |
415 | |
|
|
416 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
417 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 335 | qt4-build_pkg_postrm() { |
418 | qt4-build_pkg_postrm() { |
| 336 | generate_qconfigs |
419 | generate_qconfigs |
| 337 | } |
420 | } |
| 338 | |
421 | |
|
|
422 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
423 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
424 | # breakages and proposed solutions. |
| 339 | qt4-build_pkg_postinst() { |
425 | qt4-build_pkg_postinst() { |
| 340 | generate_qconfigs |
426 | generate_qconfigs |
| 341 | echo |
427 | echo |
| 342 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
428 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
| 343 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
429 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| … | |
… | |
| 352 | ewarn |
438 | ewarn |
| 353 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
439 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
| 354 | echo |
440 | echo |
| 355 | } |
441 | } |
| 356 | |
442 | |
|
|
443 | # @FUNCTION: skip_qmake_build_patch |
|
|
444 | # @DESCRIPTION: |
|
|
445 | # Don't need to build qmake, as it's already installed from qt-core |
| 357 | skip_qmake_build_patch() { |
446 | skip_qmake_build_patch() { |
| 358 | # Don't need to build qmake, as it's already installed from qt-core |
447 | # Don't need to build qmake, as it's already installed from qt-core |
| 359 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
448 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 360 | } |
449 | } |
| 361 | |
450 | |
|
|
451 | # @FUNCTION: skip_project_generation_patch |
|
|
452 | # @DESCRIPTION: |
|
|
453 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 362 | skip_project_generation_patch() { |
454 | skip_project_generation_patch() { |
| 363 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
455 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 364 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
456 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 365 | -i "${S}"/configure || die "Sed failed" |
457 | -i "${S}"/configure || die "Sed failed" |
| 366 | } |
458 | } |
| 367 | |
459 | |
|
|
460 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
461 | # @DESCRIPTION: |
|
|
462 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
463 | # time |
| 368 | symlink_binaries_to_buildtree() { |
464 | symlink_binaries_to_buildtree() { |
| 369 | for bin in qmake moc uic rcc; do |
465 | for bin in qmake moc uic rcc; do |
| 370 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
466 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 371 | done |
467 | done |
| 372 | } |
468 | } |
| 373 | |
469 | |
|
|
470 | # @FUNCTION: fix_library_files |
|
|
471 | # @DESCRIPTION: |
|
|
472 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
473 | # moves the *.pc-files into the pkgconfig directory |
| 374 | fix_library_files() { |
474 | fix_library_files() { |
| 375 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
475 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 376 | if [[ -e ${libfile} ]]; then |
476 | if [[ -e ${libfile} ]]; then |
| 377 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
477 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 378 | fi |
478 | fi |
| … | |
… | |
| 382 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
482 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 383 | if [[ -e ${libfile} ]]; then |
483 | if [[ -e ${libfile} ]]; then |
| 384 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
484 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 385 | |
485 | |
| 386 | # Move .pc files into the pkgconfig directory |
486 | # Move .pc files into the pkgconfig directory |
| 387 | |
|
|
| 388 | dodir ${QTPCDIR} |
487 | dodir ${QTPCDIR} |
| 389 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
488 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 390 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
489 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 391 | fi |
490 | fi |
| 392 | done |
491 | done |
| 393 | |
492 | |
| 394 | # Don't install an empty directory |
493 | # Don't install an empty directory |
| 395 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
494 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 396 | } |
495 | } |
| 397 | |
496 | |
|
|
497 | # @FUNCTION: qt_use |
|
|
498 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
499 | # @DESCRIPTION: |
|
|
500 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
501 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
502 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
503 | # assignment-part |
| 398 | qt_use() { |
504 | qt_use() { |
| 399 | local flag="${1}" |
505 | local flag="${1}" |
| 400 | local feature="${1}" |
506 | local feature="${1}" |
| 401 | local enableval= |
507 | local enableval= |
| 402 | |
508 | |
| … | |
… | |
| 424 | # } |
530 | # } |
| 425 | # @CODE |
531 | # @CODE |
| 426 | |
532 | |
| 427 | # Run built_with_use on each flag and print appropriate error messages if any |
533 | # Run built_with_use on each flag and print appropriate error messages if any |
| 428 | # flags are missing |
534 | # flags are missing |
|
|
535 | |
| 429 | _qt_built_with_use() { |
536 | _qt_built_with_use() { |
| 430 | local missing opt pkg flag flags |
537 | local missing opt pkg flag flags |
| 431 | |
538 | |
| 432 | if [[ ${1} = "--missing" ]]; then |
539 | if [[ ${1} = "--missing" ]]; then |
| 433 | missing="${1} ${2}" && shift 2 |
540 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 477 | eerror "Flags marked with an * are missing." |
584 | eerror "Flags marked with an * are missing." |
| 478 | die "Missing USE flags found" |
585 | die "Missing USE flags found" |
| 479 | fi |
586 | fi |
| 480 | } |
587 | } |
| 481 | |
588 | |
|
|
589 | # @FUNCTION: qt_mkspecs_dir |
|
|
590 | # @RETURN: the specs-directory w/o path |
|
|
591 | # @DESCRIPTION: |
|
|
592 | # Allows us to define which mkspecs dir we want to use. |
| 482 | qt_mkspecs_dir() { |
593 | qt_mkspecs_dir() { |
| 483 | # Allows us to define which mkspecs dir we want to use. |
594 | # Allows us to define which mkspecs dir we want to use. |
| 484 | local spec |
595 | local spec |
| 485 | |
596 | |
| 486 | case ${CHOST} in |
597 | case ${CHOST} in |