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.27 2009/03/11 23:58:31 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.60 2010/01/13 19:35:01 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>, |
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 | else |
25 | MY_PV="${PV}" |
21 | MY_P=qt-x11-opensource-src-${MY_PV} |
26 | ;; |
22 | fi |
27 | esac |
23 | |
28 | 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 | |
29 | S=${WORKDIR}/${MY_P} |
61 | S=${WORKDIR}/${MY_P} |
30 | |
62 | |
31 | HOMEPAGE="http://www.qtsoftware.com/" |
63 | # @FUNCTION: qt4-build_pkg_setup |
32 | SRC_URI="http://download.qtsoftware.com/qt/source/${MY_P}.tar.bz2" |
64 | # @DESCRIPTION: |
33 | |
65 | # 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() { |
66 | qt4-build_pkg_setup() { |
44 | # EAPI=2 ebuilds set use-deps, others need this: |
67 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
45 | if [[ $EAPI != 2 ]]; then |
68 | |
46 | # Make sure debug setting corresponds with qt-core (bug 258512) |
69 | |
47 | if [[ $PN != "qt-core" ]]; then |
70 | PATH="${S}/bin${PATH:+:}${PATH}" |
48 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
71 | if [[ ${CHOST} != *-darwin* ]]; then |
49 | ~x11-libs/qt-core-${PV} debug" |
72 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
|
|
73 | else |
|
|
74 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
|
|
75 | # on 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" |
|
|
80 | |
|
|
81 | if [[ ${PN} == qt-demo || ${PN} == qt-qt3support || ${PN} == qt-webkit ]]; then |
|
|
82 | QT4_EXTRACT_DIRECTORIES+=" tools" |
50 | fi |
83 | fi |
51 | |
|
|
52 | # Check USE requirements |
|
|
53 | qt4-build_check_use |
|
|
54 | fi |
84 | fi |
55 | |
85 | |
56 | # Set up installation directories |
86 | # Make sure ebuilds use the required EAPI |
57 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
87 | if [[ ${EAPI} != [23] ]]; then |
58 | QTPREFIXDIR=/usr |
88 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
59 | QTBINDIR=/usr/bin |
89 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
60 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
90 | eerror "fixed. Using qt4-build eclass without EAPI=2 or EAPI=3 will fail." |
61 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
91 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
62 | QTDATADIR=/usr/share/qt4 |
92 | fi |
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 | |
93 | |
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 |
94 | if ! version_is_at_least 4.1 $(gcc-version); then |
77 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
95 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
78 | echo |
96 | echo |
79 | ebeep 5 |
97 | ebeep 3 |
80 | fi |
98 | 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 | } |
99 | } |
93 | |
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 |
94 | qt4-build_src_unpack() { |
114 | qt4-build_src_unpack() { |
|
|
115 | setqtenv |
95 | local target targets licenses |
116 | local target targets= |
96 | if version_is_at_least 4.5 ${PV} ; then |
117 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
97 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
98 | else |
|
|
99 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
100 | fi |
|
|
101 | for target in configure ${licenses} projects.pro \ |
|
|
102 | 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 \ |
103 | ${QT4_EXTRACT_DIRECTORIES}; do |
119 | ${QT4_EXTRACT_DIRECTORIES}; do |
104 | targets="${targets} ${MY_P}/${target}" |
120 | targets+=" ${MY_P}/${target}" |
105 | done |
121 | done |
106 | |
122 | |
107 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
123 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
108 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
124 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
109 | |
|
|
110 | case "${PV}" in |
|
|
111 | 4.4.?) |
|
|
112 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
113 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
114 | ;; |
|
|
115 | esac |
|
|
116 | |
|
|
117 | # Be backwards compatible for now |
|
|
118 | if [[ $EAPI != 2 ]]; then |
|
|
119 | qt4-build_src_prepare |
|
|
120 | fi |
|
|
121 | } |
125 | } |
122 | |
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. |
123 | qt4-build_src_prepare() { |
140 | qt4-build_src_prepare() { |
|
|
141 | setqtenv |
124 | cd "${S}" |
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 |
125 | |
152 | |
126 | if [[ ${PN} != qt-core ]]; then |
153 | if [[ ${PN} != qt-core ]]; then |
127 | skip_qmake_build_patch |
154 | skip_qmake_build_patch |
128 | skip_project_generation_patch |
155 | skip_project_generation_patch |
129 | symlink_binaries_to_buildtree |
156 | symlink_binaries_to_buildtree |
130 | fi |
157 | fi |
131 | |
158 | |
132 | if ! use custom-cxxflags;then |
159 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
133 | # Don't let the user go too overboard with flags. |
160 | # qmake bus errors with -O2 but -O3 works |
134 | strip-flags |
|
|
135 | replace-flags -O3 -O2 |
161 | replace-flags -O2 -O3 |
136 | fi |
162 | fi |
137 | |
163 | |
138 | # Bug 253127 |
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 | |
139 | # Unsupported old gcc versions - hardened needs this :( |
176 | # Unsupported old gcc versions - hardened needs this :( |
140 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
177 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
141 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
178 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
142 | append-cxxflags -fno-stack-protector |
179 | append-cxxflags -fno-stack-protector |
|
|
180 | # Bug 253127 |
|
|
181 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
182 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
143 | fi |
183 | fi |
144 | |
184 | |
145 | # Bug 178652 |
185 | # Bug 261632 |
146 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
186 | if use ppc64; then |
147 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
187 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
148 | append-flags -fno-gcse |
188 | append-flags -mminimal-toc |
149 | fi |
189 | fi |
150 | |
190 | |
151 | # Bug 172219 |
191 | # Bug 172219 |
152 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
192 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
153 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
193 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
154 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
194 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
155 | -e "s:X11R6/::" \ |
195 | -e "s:X11R6/::" \ |
156 | -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" |
157 | |
197 | |
|
|
198 | if [[ ${CHOST} != *-darwin* ]]; then |
158 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
199 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
159 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
200 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
160 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
201 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
161 | -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" |
|
|
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" |
162 | |
211 | |
163 | } |
212 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
|
|
213 | # fix arch handling (automagically duplicates our -arch arg and breaks |
|
|
214 | # pch). Additionally disable Xarch support. |
|
|
215 | sed \ |
|
|
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" |
164 | |
226 | |
|
|
227 | # On Snow Leopard don't fall back to 10.5 deployment target. |
|
|
228 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
|
|
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" |
|
|
232 | fi |
|
|
233 | fi |
|
|
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 |
165 | qt4-build_src_configure() { |
260 | qt4-build_src_configure() { |
166 | |
261 | setqtenv |
167 | 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 |
168 | |
299 | |
169 | echo ./configure ${myconf} |
300 | echo ./configure ${myconf} |
170 | ./configure ${myconf} || die "./configure failed" |
301 | ./configure ${myconf} || die "./configure failed" |
|
|
302 | myconf="" |
171 | } |
303 | } |
172 | |
304 | |
|
|
305 | # @FUNCTION: qt4-build_src_compile |
|
|
306 | # @DESCRIPTION: Actual compile phase |
173 | qt4-build_src_compile() { |
307 | qt4-build_src_compile() { |
174 | # Be backwards compatible for now |
308 | setqtenv |
175 | if [[ $EAPI != 2 ]]; then |
|
|
176 | qt4-build_src_configure |
|
|
177 | fi |
|
|
178 | |
309 | |
179 | build_directories "${QT4_TARGET_DIRECTORIES}" |
310 | build_directories ${QT4_TARGET_DIRECTORIES} |
180 | } |
311 | } |
181 | |
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 && [[ ${CHOST##*-darwin} -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. |
182 | qt4-build_src_install() { |
342 | qt4-build_src_install() { |
|
|
343 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
|
|
344 | setqtenv |
183 | install_directories "${QT4_TARGET_DIRECTORIES}" |
345 | install_directories ${QT4_TARGET_DIRECTORIES} |
184 | install_qconfigs |
346 | install_qconfigs |
185 | fix_library_files |
347 | fix_library_files |
|
|
348 | fix_includes |
186 | } |
349 | } |
187 | |
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. |
188 | standard_configure_options() { |
378 | standard_configure_options() { |
189 | local myconf="" |
379 | local myconf= |
190 | |
380 | |
191 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
381 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
192 | |
382 | |
193 | # Disable visibility explicitly if gcc version isn't 4 |
383 | # Disable visibility explicitly if gcc version isn't 4 |
194 | if [[ "$(gcc-major-version)" -lt "4" ]]; then |
384 | if [[ $(gcc-major-version) -lt 4 ]]; then |
195 | myconf="${myconf} -no-reduce-exports" |
385 | myconf+=" -no-reduce-exports" |
196 | fi |
386 | fi |
197 | |
387 | |
198 | # 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 | |
199 | if use pch; then |
391 | if use debug; then |
200 | myconf="${myconf} -pch" |
392 | myconf+=" -debug" |
201 | else |
393 | else |
202 | myconf="${myconf} -no-pch" |
394 | myconf+=" -release" |
203 | fi |
395 | fi |
204 | |
|
|
205 | if use debug; then |
|
|
206 | myconf="${myconf} -debug -no-separate-debug-info" |
396 | myconf+=" -no-separate-debug-info" |
207 | else |
397 | |
208 | myconf="${myconf} -release -no-separate-debug-info" |
398 | use aqua && myconf+=" -no-framework" |
209 | fi |
|
|
210 | |
399 | |
211 | # 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 |
212 | # $(tc-arch). Therefore we convert it to supported values. |
401 | # $(tc-arch). Therefore we convert it to supported values. |
213 | case "$(tc-arch)" in |
402 | case "$(tc-arch)" in |
214 | amd64) myconf="${myconf} -arch x86_64" ;; |
403 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
|
|
404 | ppc-macos) myconf+=" -arch ppc" ;; |
215 | 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" ;; |
216 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
408 | x86|x86-*) myconf+=" -arch i386" ;; |
217 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
409 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
218 | hppa|sh) myconf="${myconf} -arch generic" ;; |
410 | hppa|sh) myconf+=" -arch generic" ;; |
219 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
411 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
220 | esac |
412 | esac |
221 | |
413 | |
222 | 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 |
223 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
443 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
224 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
444 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
225 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
445 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
226 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
446 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
227 | -demosdir ${QTDEMOSDIR} -silent -fast |
447 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
228 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
448 | ${exceptions} |
229 | $(use x86-fbsd || echo -reduce-relocations) |
|
|
230 | -nomake examples -nomake demos" |
449 | -nomake examples -nomake demos" |
231 | |
450 | |
232 | echo "${myconf}" |
451 | echo "${myconf}" |
233 | } |
452 | } |
234 | |
453 | |
|
|
454 | # @FUNCTION: build_directories |
|
|
455 | # @USAGE: < directories > |
|
|
456 | # @DESCRIPTION: |
|
|
457 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
235 | build_directories() { |
458 | build_directories() { |
236 | local dirs="$@" |
|
|
237 | for x in ${dirs}; do |
459 | for x in "$@"; do |
238 | cd "${S}"/${x} |
460 | pushd "${S}"/${x} >/dev/null |
|
|
461 | # avoid running over the maximum argument number, bug #299810 |
|
|
462 | { |
|
|
463 | echo "${S}"/mkspecs/common/*.conf |
|
|
464 | find "${S}" -name '*.pr[io]' |
|
|
465 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
239 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
466 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
240 | emake || die "emake failed" |
467 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
|
|
468 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
|
|
469 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
|
|
470 | popd >/dev/null |
241 | done |
471 | done |
242 | } |
472 | } |
243 | |
473 | |
|
|
474 | # @FUNCTION: install_directories |
|
|
475 | # @USAGE: < directories > |
|
|
476 | # @DESCRIPTION: |
|
|
477 | # run emake install in the given directories, which are separated by spaces |
244 | install_directories() { |
478 | install_directories() { |
245 | local dirs="$@" |
|
|
246 | for x in ${dirs}; do |
479 | for x in "$@"; do |
247 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
480 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
248 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
481 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
249 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
482 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
250 | done |
483 | done |
251 | } |
484 | } |
252 | |
485 | |
253 | # @ECLASS-VARIABLE: QCONFIG_ADD |
486 | # @ECLASS-VARIABLE: QCONFIG_ADD |
254 | # @DESCRIPTION: |
487 | # @DESCRIPTION: |
255 | # List options that need to be added to QT_CONFIG in qconfig.pri |
488 | # List options that need to be added to QT_CONFIG in qconfig.pri |
256 | QCONFIG_ADD="${QCONFIG_ADD:-}" |
489 | : ${QCONFIG_ADD:=} |
257 | |
490 | |
258 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
491 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
259 | # @DESCRIPTION: |
492 | # @DESCRIPTION: |
260 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
493 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
261 | QCONFIG_REMOVE="${QCONFIG_REMOVE:-}" |
494 | : ${QCONFIG_REMOVE:=} |
262 | |
495 | |
263 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
496 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
264 | # @DESCRIPTION: |
497 | # @DESCRIPTION: |
265 | # List variables that should be defined at the top of QtCore/qconfig.h |
498 | # List variables that should be defined at the top of QtCore/qconfig.h |
266 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
499 | : ${QCONFIG_DEFINE:=} |
267 | |
500 | |
|
|
501 | # @FUNCTION: install_qconfigs |
|
|
502 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
268 | install_qconfigs() { |
503 | install_qconfigs() { |
269 | local x |
504 | local x |
270 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
505 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
271 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
506 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
272 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
507 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
273 | done |
508 | done |
274 | insinto ${QTDATADIR}/mkspecs/gentoo |
509 | insinto ${QTDATADIR#${EPREFIX}}/mkspecs/gentoo |
275 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
510 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
276 | fi |
511 | fi |
277 | |
512 | |
278 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
513 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
279 | for x in ${QCONFIG_DEFINE}; do |
514 | for x in ${QCONFIG_DEFINE}; do |
280 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
515 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
281 | done |
516 | done |
282 | insinto ${QTHEADERDIR}/Gentoo |
517 | insinto ${QTHEADERDIR#${EPREFIX}}/Gentoo |
283 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
518 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
284 | fi |
519 | fi |
285 | } |
520 | } |
286 | |
521 | |
|
|
522 | # @FUNCTION: generate_qconfigs |
|
|
523 | # @DESCRIPTION: Generates gentoo-specific configurations |
287 | generate_qconfigs() { |
524 | generate_qconfigs() { |
288 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
525 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
289 | local x qconfig_add qconfig_remove qconfig_new |
526 | local x qconfig_add qconfig_remove qconfig_new |
290 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
527 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
291 | [[ -f ${x} ]] || continue |
528 | [[ -f ${x} ]] || continue |
292 | qconfig_add="${qconfig_add} $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
529 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
293 | qconfig_remove="${qconfig_remove} $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
530 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
294 | done |
531 | done |
295 | |
532 | |
296 | # these error checks do not use die because dying in pkg_post{inst,rm} |
533 | # these error checks do not use die because dying in pkg_post{inst,rm} |
297 | # just makes things worse. |
534 | # just makes things worse. |
298 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
535 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
… | |
… | |
305 | |
542 | |
306 | # generate list of QT_CONFIG entries from the existing list |
543 | # generate list of QT_CONFIG entries from the existing list |
307 | # including qconfig_add and excluding qconfig_remove |
544 | # including qconfig_add and excluding qconfig_remove |
308 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
545 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
309 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
546 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
310 | hasq ${x} ${qconfig_remove} || qconfig_new="${qconfig_new} ${x}" |
547 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
311 | done |
548 | done |
312 | |
549 | |
313 | # replace the existing QT_CONFIG list with qconfig_new |
550 | # replace the existing QT_CONFIG list with qconfig_new |
314 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
551 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
315 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
552 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
… | |
… | |
338 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
575 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
339 | fi |
576 | fi |
340 | fi |
577 | fi |
341 | } |
578 | } |
342 | |
579 | |
|
|
580 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
581 | # @DESCRIPTION: Generate configurations when the package is completely removed |
343 | qt4-build_pkg_postrm() { |
582 | qt4-build_pkg_postrm() { |
344 | generate_qconfigs |
583 | generate_qconfigs |
345 | } |
584 | } |
346 | |
585 | |
|
|
586 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
587 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
588 | # breakages and proposed solutions. |
347 | qt4-build_pkg_postinst() { |
589 | qt4-build_pkg_postinst() { |
348 | generate_qconfigs |
590 | generate_qconfigs |
|
|
591 | |
|
|
592 | if [[ "${PN}" == "qt-core" ]]; then |
349 | echo |
593 | echo |
350 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
594 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
351 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
595 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
352 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
596 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
353 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
597 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
354 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
598 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
355 | ewarn |
599 | ewarn |
356 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
600 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
357 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
601 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
358 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
602 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
359 | ewarn "configuration." |
603 | ewarn "configuration." |
360 | ewarn |
604 | ewarn |
361 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
605 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
362 | echo |
606 | echo |
|
|
607 | fi |
363 | } |
608 | } |
364 | |
609 | |
|
|
610 | # @FUNCTION: skip_qmake_build_patch |
|
|
611 | # @DESCRIPTION: |
|
|
612 | # Don't need to build qmake, as it's already installed from qt-core |
365 | skip_qmake_build_patch() { |
613 | skip_qmake_build_patch() { |
366 | # Don't need to build qmake, as it's already installed from qt-core |
614 | # Don't need to build qmake, as it's already installed from qt-core |
367 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
615 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
368 | } |
616 | } |
369 | |
617 | |
|
|
618 | # @FUNCTION: skip_project_generation_patch |
|
|
619 | # @DESCRIPTION: |
|
|
620 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
370 | skip_project_generation_patch() { |
621 | skip_project_generation_patch() { |
371 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
622 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
372 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
623 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
373 | -i "${S}"/configure || die "Sed failed" |
624 | -i "${S}"/configure || die "Sed failed" |
374 | } |
625 | } |
375 | |
626 | |
|
|
627 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
628 | # @DESCRIPTION: |
|
|
629 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
630 | # time |
376 | symlink_binaries_to_buildtree() { |
631 | symlink_binaries_to_buildtree() { |
377 | for bin in qmake moc uic rcc; do |
632 | for bin in qmake moc uic rcc; do |
378 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
633 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
379 | done |
634 | done |
380 | } |
635 | } |
381 | |
636 | |
|
|
637 | # @FUNCTION: fix_library_files |
|
|
638 | # @DESCRIPTION: |
|
|
639 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
640 | # moves the *.pc-files into the pkgconfig directory |
382 | fix_library_files() { |
641 | fix_library_files() { |
383 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
642 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
384 | if [[ -e ${libfile} ]]; then |
643 | if [[ -e ${libfile} ]]; then |
385 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
644 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
386 | fi |
645 | fi |
… | |
… | |
389 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
648 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
390 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
649 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
391 | if [[ -e ${libfile} ]]; then |
650 | if [[ -e ${libfile} ]]; then |
392 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
651 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
393 | |
652 | |
394 | # Move .pc files into the pkgconfig directory |
653 | # Move .pc files into the pkgconfig directory |
395 | |
|
|
396 | dodir ${QTPCDIR} |
654 | dodir ${QTPCDIR#${EPREFIX}} |
397 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
655 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
398 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
656 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
399 | fi |
657 | fi |
400 | done |
658 | done |
401 | |
659 | |
402 | # Don't install an empty directory |
660 | # Don't install an empty directory |
403 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
661 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
404 | } |
662 | } |
405 | |
663 | |
|
|
664 | # @FUNCTION: qt_use |
|
|
665 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
666 | # @DESCRIPTION: |
|
|
667 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
668 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
669 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
670 | # assignment-part |
406 | qt_use() { |
671 | qt_use() { |
407 | local flag="${1}" |
672 | local flag=$1 |
408 | local feature="${1}" |
673 | local feature=$1 |
409 | local enableval= |
674 | local enableval= |
410 | |
675 | |
411 | [[ -n ${2} ]] && feature=${2} |
676 | [[ -n $2 ]] && feature=$2 |
412 | [[ -n ${3} ]] && enableval="-${3}" |
677 | [[ -n $3 ]] && enableval=-$3 |
413 | |
678 | |
414 | if use ${flag}; then |
679 | if use ${flag}; then |
415 | echo "${enableval}-${feature}" |
680 | echo "${enableval}-${feature}" |
416 | else |
681 | else |
417 | echo "-no-${feature}" |
682 | echo "-no-${feature}" |
418 | fi |
683 | fi |
419 | } |
684 | } |
420 | |
685 | |
421 | # @ECLASS-VARIABLE: QT4_BUILT_WITH_USE_CHECK |
686 | # @FUNCTION: qt_mkspecs_dir |
|
|
687 | # @RETURN: the specs-directory w/o path |
422 | # @DESCRIPTION: |
688 | # @DESCRIPTION: |
423 | # The contents of $QT4_BUILT_WITH_USE_CHECK gets fed to built_with_use |
689 | # Allows us to define which mkspecs dir we want to use. |
424 | # (eutils.eclass), line per line. |
|
|
425 | # |
|
|
426 | # Example: |
|
|
427 | # @CODE |
|
|
428 | # pkg_setup() { |
|
|
429 | # use qt3support && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
430 | # ~x11-libs/qt-gui-${PV} qt3support" |
|
|
431 | # qt4-build_check_use |
|
|
432 | # } |
|
|
433 | # @CODE |
|
|
434 | |
|
|
435 | # Run built_with_use on each flag and print appropriate error messages if any |
|
|
436 | # flags are missing |
|
|
437 | _qt_built_with_use() { |
|
|
438 | local missing opt pkg flag flags |
|
|
439 | |
|
|
440 | if [[ ${1} = "--missing" ]]; then |
|
|
441 | missing="${1} ${2}" && shift 2 |
|
|
442 | fi |
|
|
443 | if [[ ${1:0:1} = "-" ]]; then |
|
|
444 | opt=${1} && shift |
|
|
445 | fi |
|
|
446 | |
|
|
447 | pkg=${1} && shift |
|
|
448 | |
|
|
449 | for flag in "${@}"; do |
|
|
450 | flags="${flags} ${flag}" |
|
|
451 | if ! built_with_use ${missing} ${opt} ${pkg} ${flag}; then |
|
|
452 | flags="${flags}*" |
|
|
453 | else |
|
|
454 | [[ ${opt} = "-o" ]] && return 0 |
|
|
455 | fi |
|
|
456 | done |
|
|
457 | if [[ "${flags# }" = "${@}" ]]; then |
|
|
458 | return 0 |
|
|
459 | fi |
|
|
460 | if [[ ${opt} = "-o" ]]; then |
|
|
461 | eerror "This package requires '${pkg}' to be built with any of the following USE flags: '$*'." |
|
|
462 | else |
|
|
463 | eerror "This package requires '${pkg}' to be built with the following USE flags: '${flags# }'." |
|
|
464 | fi |
|
|
465 | return 1 |
|
|
466 | } |
|
|
467 | |
|
|
468 | # @FUNCTION: qt4-build_check_use |
|
|
469 | # @DESCRIPTION: |
|
|
470 | # Check if the listed packages in $QT4_BUILT_WITH_USE_CHECK are built with the |
|
|
471 | # USE flags listed. |
|
|
472 | # |
|
|
473 | # If any of the required USE flags are missing, an eerror will be printed for |
|
|
474 | # each package with missing USE flags. |
|
|
475 | qt4-build_check_use() { |
|
|
476 | local line missing |
|
|
477 | while read line; do |
|
|
478 | [[ -z ${line} ]] && continue |
|
|
479 | if ! _qt_built_with_use ${line}; then |
|
|
480 | missing=true |
|
|
481 | fi |
|
|
482 | done <<< "${QT4_BUILT_WITH_USE_CHECK}" |
|
|
483 | if [[ -n ${missing} ]]; then |
|
|
484 | echo |
|
|
485 | eerror "Flags marked with an * are missing." |
|
|
486 | die "Missing USE flags found" |
|
|
487 | fi |
|
|
488 | } |
|
|
489 | |
|
|
490 | qt_mkspecs_dir() { |
690 | qt_mkspecs_dir() { |
491 | # Allows us to define which mkspecs dir we want to use. |
691 | # Allows us to define which mkspecs dir we want to use. |
492 | local spec |
692 | local spec |
493 | |
693 | |
494 | case ${CHOST} in |
694 | case ${CHOST} in |
495 | *-freebsd*|*-dragonfly*) |
695 | *-freebsd*|*-dragonfly*) |
496 | spec="freebsd" ;; |
696 | spec=freebsd ;; |
497 | *-openbsd*) |
697 | *-openbsd*) |
498 | spec="openbsd" ;; |
698 | spec=openbsd ;; |
499 | *-netbsd*) |
699 | *-netbsd*) |
500 | spec="netbsd" ;; |
700 | spec=netbsd ;; |
501 | *-darwin*) |
701 | *-darwin*) |
|
|
702 | if use aqua; then |
|
|
703 | # mac with carbon/cocoa |
|
|
704 | spec=macx |
|
|
705 | else |
|
|
706 | # darwin/mac with x11 |
502 | spec="darwin" ;; |
707 | spec=darwin |
|
|
708 | fi |
|
|
709 | ;; |
|
|
710 | *-solaris*) |
|
|
711 | spec=solaris ;; |
503 | *-linux-*|*-linux) |
712 | *-linux-*|*-linux) |
504 | spec="linux" ;; |
713 | spec=linux ;; |
505 | *) |
714 | *) |
506 | die "Unknown CHOST, no platform choosen." |
715 | die "Unknown CHOST, no platform choosen." |
507 | esac |
716 | esac |
508 | |
717 | |
509 | CXX=$(tc-getCXX) |
718 | CXX=$(tc-getCXX) |
510 | if [[ ${CXX/g++/} != ${CXX} ]]; then |
719 | if [[ ${CXX} == *g++* ]]; then |
511 | spec="${spec}-g++" |
720 | spec+=-g++ |
512 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
721 | elif [[ ${CXX} == *icpc* ]]; then |
513 | spec="${spec}-icc" |
722 | spec+=-icc |
514 | else |
723 | else |
515 | die "Unknown compiler ${CXX}." |
724 | die "Unknown compiler ${CXX}." |
516 | fi |
725 | fi |
|
|
726 | if [[ -n ${LIBDIR/lib} ]]; then |
|
|
727 | spec+=-${LIBDIR/lib} |
|
|
728 | fi |
|
|
729 | |
|
|
730 | # Add -64 for 64bit profiles |
|
|
731 | if use x64-freebsd || |
|
|
732 | use amd64-linux || |
|
|
733 | use x64-macos || |
|
|
734 | use x64-solaris || |
|
|
735 | use sparc64-solaris |
|
|
736 | then |
|
|
737 | spec+=-64 |
|
|
738 | fi |
517 | |
739 | |
518 | echo "${spec}" |
740 | echo "${spec}" |
519 | } |
741 | } |
520 | |
742 | |
521 | case ${EAPI:-0} in |
|
|
522 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
523 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
743 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
524 | esac |
|
|