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