| 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.24 2009/02/15 00:11:50 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.56 2009/12/22 17:04:07 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 | IUSE="debug pch" |
|
|
18 | RDEPEND=" |
|
|
19 | !<x11-libs/qt-assistant-${PV} |
|
|
20 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
21 | !<x11-libs/qt-core-${PV} |
|
|
22 | !>x11-libs/qt-core-${PV}-r9999 |
|
|
23 | !<x11-libs/qt-dbus-${PV} |
|
|
24 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
25 | !<x11-libs/qt-demo-${PV} |
|
|
26 | !>x11-libs/qt-demo-${PV}-r9999 |
|
|
27 | !<x11-libs/qt-gui-${PV} |
|
|
28 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
29 | !<x11-libs/qt-opengl-${PV} |
|
|
30 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
31 | !<x11-libs/qt-phonon-${PV} |
|
|
32 | !>x11-libs/qt-phonon-${PV}-r9999 |
|
|
33 | !<x11-libs/qt-qt3support-${PV} |
|
|
34 | !>x11-libs/qt-qt3support-${PV}-r9999 |
|
|
35 | !<x11-libs/qt-script-${PV} |
|
|
36 | !>x11-libs/qt-script-${PV}-r9999 |
|
|
37 | !<x11-libs/qt-sql-${PV} |
|
|
38 | !>x11-libs/qt-sql-${PV}-r9999 |
|
|
39 | !<x11-libs/qt-svg-${PV} |
|
|
40 | !>x11-libs/qt-svg-${PV}-r9999 |
|
|
41 | !<x11-libs/qt-test-${PV} |
|
|
42 | !>x11-libs/qt-test-${PV}-r9999 |
|
|
43 | !<x11-libs/qt-webkit-${PV} |
|
|
44 | !>x11-libs/qt-webkit-${PV}-r9999 |
|
|
45 | !<x11-libs/qt-xmlpatterns-${PV} |
|
|
46 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
|
|
47 | " |
| 17 | |
48 | |
| 18 | case "${PV}" in |
|
|
| 19 | 4.?.?_rc*) |
|
|
| 20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
|
|
| 21 | MY_PV="${PV/_rc/-rc}" |
49 | MY_PV=${PV/_/-} |
| 22 | ;; |
50 | |
| 23 | *) |
51 | if version_is_at_least 4.5.99999999 ${PV} ; then |
| 24 | SRCTYPE="${SRCTYPE:-opensource-src}" |
52 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 25 | MY_PV="${PV}" |
53 | else |
| 26 | ;; |
54 | MY_P=qt-x11-opensource-src-${MY_PV} |
| 27 | esac |
55 | fi |
| 28 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
56 | |
| 29 | S=${WORKDIR}/${MY_P} |
57 | S=${WORKDIR}/${MY_P} |
| 30 | |
58 | |
| 31 | HOMEPAGE="http://www.qtsoftware.com/" |
59 | HOMEPAGE="http://qt.nokia.com/" |
| 32 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
60 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
| 33 | |
61 | |
| 34 | case "${PV}" in |
62 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 35 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
|
|
| 36 | *) ;; |
|
|
| 37 | esac |
|
|
| 38 | |
63 | |
|
|
64 | # @FUNCTION: qt4-build_pkg_setup |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Sets up PATH and LD_LIBRARY_PATH |
| 39 | qt4-build_pkg_setup() { |
67 | qt4-build_pkg_setup() { |
| 40 | # EAPI=2 ebuilds set use-deps, others need this: |
68 | PATH="${S}/bin${PATH:+:}${PATH}" |
|
|
69 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
|
|
70 | |
|
|
71 | # Make sure ebuilds use the required EAPI |
| 41 | if [[ $EAPI != 2 ]]; then |
72 | if [[ ${EAPI} != 2 ]]; then |
| 42 | # Make sure debug setting corresponds with qt-core (bug 258512) |
73 | eerror "The qt4-build eclass requires EAPI=2, but this ebuild does not" |
|
|
74 | eerror "have EAPI=2 set. The ebuild author or editor failed. This ebuild needs" |
|
|
75 | eerror "to be fixed. Using qt4-build eclass without EAPI=2 will fail." |
|
|
76 | die "qt4-build eclass requires EAPI=2" |
|
|
77 | fi |
|
|
78 | |
|
|
79 | if ! version_is_at_least 4.1 $(gcc-version); then |
|
|
80 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
81 | echo |
|
|
82 | ebeep 3 |
|
|
83 | fi |
|
|
84 | |
|
|
85 | if [[ ${P} == qt-core-4.6.0_rc1 ]]; then |
|
|
86 | ewarn |
|
|
87 | ewarn "Binary compatibility broke between 4.6.0_beta1 and 4.6.0_rc1." |
|
|
88 | ewarn "If you are upgrading from 4.6.0_beta1, you'll have to" |
|
|
89 | ewarn "re-emerge everything that depends on Qt." |
|
|
90 | ewarn "Use the following command:" |
|
|
91 | ewarn |
|
|
92 | ewarn " emerge -av1 \$(for i in \$(qlist -IC x11-libs/qt-);" |
|
|
93 | ewarn " do equery -q d \$i | grep -v 'x11-libs/qt-' |" |
|
|
94 | ewarn " sed \"s/^/=/\"; done)" |
|
|
95 | ewarn |
|
|
96 | ewarn "YOU'VE BEEN WARNED" |
|
|
97 | ewarn |
|
|
98 | ebeep 3 |
|
|
99 | fi |
|
|
100 | |
|
|
101 | } |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
106 | # code should be compiled. This is a space-separated list |
|
|
107 | |
|
|
108 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
109 | # @DESCRIPTION: |
|
|
110 | # Space separated list including the directories that will be extracted from Qt |
|
|
111 | # tarball |
|
|
112 | |
|
|
113 | # @FUNCTION: qt4-build_src_unpack |
|
|
114 | # @DESCRIPTION: |
|
|
115 | # Unpacks the sources |
|
|
116 | qt4-build_src_unpack() { |
|
|
117 | setqtenv |
|
|
118 | local target targets= |
|
|
119 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
|
|
120 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
|
|
121 | ${QT4_EXTRACT_DIRECTORIES}; do |
|
|
122 | targets+=" ${MY_P}/${target}" |
|
|
123 | done |
|
|
124 | |
|
|
125 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
|
|
126 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
|
|
127 | } |
|
|
128 | |
|
|
129 | # @ECLASS-VARIABLE: PATCHES |
|
|
130 | # @DESCRIPTION: |
|
|
131 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
132 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
133 | # example: |
|
|
134 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
135 | # ${FILESDIR}"/mypatch2.patch" |
|
|
136 | # |
|
|
137 | |
|
|
138 | # @FUNCTION: qt4-build_src_prepare |
|
|
139 | # @DESCRIPTION: |
|
|
140 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
141 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
|
|
142 | qt4-build_src_prepare() { |
|
|
143 | setqtenv |
|
|
144 | cd "${S}" |
|
|
145 | |
| 43 | if [[ $PN != "qt-core" ]]; then |
146 | if [[ ${PN} != qt-core ]]; then |
| 44 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
147 | skip_qmake_build_patch |
| 45 | ~x11-libs/qt-core-${PV} debug" |
148 | skip_project_generation_patch |
|
|
149 | symlink_binaries_to_buildtree |
| 46 | fi |
150 | fi |
| 47 | |
151 | |
| 48 | # Check USE requirements |
152 | # Bug 282984 && Bug 295530 |
| 49 | qt4-build_check_use |
153 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1:" \ |
| 50 | fi |
154 | -i configure || die "sed qmake compilers failed" |
|
|
155 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX):" \ |
|
|
156 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
| 51 | |
157 | |
|
|
158 | # Bug 178652 |
|
|
159 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
|
|
160 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
161 | append-flags -fno-gcse |
|
|
162 | fi |
|
|
163 | |
|
|
164 | # Unsupported old gcc versions - hardened needs this :( |
|
|
165 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
|
|
166 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
167 | append-cxxflags -fno-stack-protector |
|
|
168 | # Bug 253127 |
|
|
169 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
170 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
171 | fi |
|
|
172 | |
|
|
173 | # Bug 261632 |
|
|
174 | if use ppc64; then |
|
|
175 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
|
|
176 | append-flags -mminimal-toc |
|
|
177 | fi |
|
|
178 | |
|
|
179 | # Bug 172219 |
|
|
180 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
181 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
182 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
183 | -e "s:X11R6/::" \ |
|
|
184 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
185 | |
|
|
186 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
187 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
188 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
189 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
190 | |
|
|
191 | base_src_prepare |
|
|
192 | } |
|
|
193 | |
|
|
194 | # @FUNCTION: qt4-build_src_configure |
|
|
195 | # @DESCRIPTION: |
|
|
196 | # Default configure phase |
|
|
197 | qt4-build_src_configure() { |
|
|
198 | setqtenv |
|
|
199 | myconf="$(standard_configure_options) ${myconf}" |
|
|
200 | |
|
|
201 | echo ./configure ${myconf} |
|
|
202 | ./configure ${myconf} || die "./configure failed" |
|
|
203 | myconf="" |
|
|
204 | } |
|
|
205 | |
|
|
206 | # @FUNCTION: qt4-build_src_compile |
|
|
207 | # @DESCRIPTION: Actual compile phase |
|
|
208 | qt4-build_src_compile() { |
|
|
209 | setqtenv |
|
|
210 | |
|
|
211 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
212 | } |
|
|
213 | |
|
|
214 | # @FUNCTION: qt4-build_src_install |
|
|
215 | # @DESCRIPTION: |
|
|
216 | # Perform the actual installation including some library fixes. |
|
|
217 | qt4-build_src_install() { |
|
|
218 | setqtenv |
|
|
219 | install_directories ${QT4_TARGET_DIRECTORIES} |
|
|
220 | install_qconfigs |
|
|
221 | fix_library_files |
|
|
222 | } |
|
|
223 | |
|
|
224 | # @FUNCTION: setqtenv |
|
|
225 | setqtenv() { |
| 52 | # Set up installation directories |
226 | # Set up installation directories |
| 53 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
227 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 54 | QTPREFIXDIR=/usr |
228 | QTPREFIXDIR=/usr |
| 55 | QTBINDIR=/usr/bin |
229 | QTBINDIR=/usr/bin |
| 56 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
230 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
231 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 57 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
232 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
| 58 | QTDATADIR=/usr/share/qt4 |
233 | QTDATADIR=/usr/share/qt4 |
| 59 | QTDOCDIR=/usr/share/doc/qt-${PV} |
234 | QTDOCDIR=/usr/share/doc/qt-${PV} |
| 60 | QTHEADERDIR=/usr/include/qt4 |
235 | QTHEADERDIR=/usr/include/qt4 |
| 61 | QTPLUGINDIR=${QTLIBDIR}/plugins |
236 | QTPLUGINDIR=${QTLIBDIR}/plugins |
| 62 | QTSYSCONFDIR=/etc/qt4 |
237 | QTSYSCONFDIR=/etc/qt4 |
| 63 | QTTRANSDIR=${QTDATADIR}/translations |
238 | QTTRANSDIR=${QTDATADIR}/translations |
| 64 | QTEXAMPLESDIR=${QTDATADIR}/examples |
239 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 65 | QTDEMOSDIR=${QTDATADIR}/demos |
240 | QTDEMOSDIR=${QTDATADIR}/demos |
| 66 | |
241 | QT_INSTALL_PREFIX=/usr/$(get_libdir)/qt4 |
| 67 | PLATFORM=$(qt_mkspecs_dir) |
242 | PLATFORM=$(qt_mkspecs_dir) |
| 68 | |
243 | |
| 69 | PATH="${S}/bin:${PATH}" |
244 | unset QMAKESPEC |
| 70 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
| 71 | |
|
|
| 72 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
| 73 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
| 74 | echo |
|
|
| 75 | ebeep 5 |
|
|
| 76 | fi |
|
|
| 77 | |
|
|
| 78 | if use custom-cxxflags; then |
|
|
| 79 | echo |
|
|
| 80 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
| 81 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
| 82 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
| 83 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
| 84 | ewarn "for breakfast. ;-) " |
|
|
| 85 | echo |
|
|
| 86 | fi |
|
|
| 87 | |
|
|
| 88 | } |
245 | } |
| 89 | |
246 | |
| 90 | qt4-build_src_unpack() { |
247 | # @FUNCTION: standard_configure_options |
| 91 | local target targets |
248 | # @DESCRIPTION: |
| 92 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
249 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 93 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
250 | # debug info is wanted or not. |
| 94 | ${QT4_EXTRACT_DIRECTORIES}; do |
251 | standard_configure_options() { |
| 95 | targets="${targets} ${MY_P}/${target}" |
252 | local myconf= |
| 96 | done |
|
|
| 97 | |
253 | |
| 98 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
254 | [[ $(get_libdir) != lib ]] && myconf+=" -L/usr/$(get_libdir)" |
| 99 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
| 100 | |
255 | |
|
|
256 | # Disable visibility explicitly if gcc version isn't 4 |
|
|
257 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
258 | myconf+=" -no-reduce-exports" |
|
|
259 | fi |
|
|
260 | |
|
|
261 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
262 | myconf+=" $(qt_use pch)" |
|
|
263 | |
|
|
264 | if use debug; then |
|
|
265 | myconf+=" -debug" |
|
|
266 | else |
|
|
267 | myconf+=" -release" |
|
|
268 | fi |
|
|
269 | myconf+=" -no-separate-debug-info" |
|
|
270 | |
|
|
271 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
|
|
272 | # $(tc-arch). Therefore we convert it to supported values. |
|
|
273 | case "$(tc-arch)" in |
|
|
274 | amd64) myconf+=" -arch x86_64" ;; |
|
|
275 | ppc|ppc64) myconf+=" -arch powerpc" ;; |
|
|
276 | x86|x86-*) myconf+=" -arch i386" ;; |
|
|
277 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
|
|
278 | hppa|sh) myconf+=" -arch generic" ;; |
|
|
279 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
|
|
280 | esac |
|
|
281 | |
|
|
282 | # 4.6: build qt-core with exceptions or qt-xmlpatterns won't build |
|
|
283 | local exceptions= |
| 101 | case "${PV}" in |
284 | case "${PV}" in |
| 102 | 4.4.?) |
285 | 4.6.*) |
| 103 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
286 | if [[ ${PN} != "qt-core" ]] && [[ ${PN} != "qt-xmlpatterns" ]]; then |
| 104 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
287 | exceptions="-no-exceptions" |
|
|
288 | fi |
| 105 | ;; |
289 | ;; |
|
|
290 | *) |
|
|
291 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
292 | ;; |
| 106 | esac |
293 | esac |
| 107 | |
294 | |
| 108 | # Be backwards compatible for now |
295 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
| 109 | if [[ $EAPI != 2 ]]; then |
|
|
| 110 | qt4-build_src_prepare |
|
|
| 111 | fi |
|
|
| 112 | } |
|
|
| 113 | |
|
|
| 114 | qt4-build_src_prepare() { |
|
|
| 115 | cd "${S}" |
|
|
| 116 | |
|
|
| 117 | if [[ ${PN} != qt-core ]]; then |
|
|
| 118 | skip_qmake_build_patch |
|
|
| 119 | skip_project_generation_patch |
|
|
| 120 | symlink_binaries_to_buildtree |
|
|
| 121 | fi |
|
|
| 122 | |
|
|
| 123 | if ! use custom-cxxflags;then |
|
|
| 124 | # Don't let the user go too overboard with flags. |
|
|
| 125 | strip-flags |
|
|
| 126 | replace-flags -O3 -O2 |
|
|
| 127 | fi |
|
|
| 128 | |
|
|
| 129 | # Bug 253127 |
|
|
| 130 | # Unsupported old gcc versions - hardened needs this :( |
|
|
| 131 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
| 132 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
| 133 | append-cxxflags -fno-stack-protector |
|
|
| 134 | fi |
|
|
| 135 | |
|
|
| 136 | # Bug 178652 |
|
|
| 137 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 138 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 139 | append-flags -fno-gcse |
|
|
| 140 | fi |
|
|
| 141 | |
|
|
| 142 | # Bug 172219 |
|
|
| 143 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 144 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 145 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 146 | -e "s:X11R6/::" \ |
|
|
| 147 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 148 | |
|
|
| 149 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 150 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 151 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 152 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
| 153 | |
|
|
| 154 | } |
|
|
| 155 | |
|
|
| 156 | qt4-build_src_configure() { |
|
|
| 157 | |
|
|
| 158 | myconf="$(standard_configure_options) ${myconf}" |
|
|
| 159 | |
|
|
| 160 | echo ./configure ${myconf} |
|
|
| 161 | ./configure ${myconf} || die "./configure failed" |
|
|
| 162 | } |
|
|
| 163 | |
|
|
| 164 | qt4-build_src_compile() { |
|
|
| 165 | # Be backwards compatible for now |
|
|
| 166 | if [[ $EAPI != 2 ]]; then |
|
|
| 167 | qt4-build_src_configure |
|
|
| 168 | fi |
|
|
| 169 | |
|
|
| 170 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 171 | } |
|
|
| 172 | |
|
|
| 173 | qt4-build_src_install() { |
|
|
| 174 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 175 | install_qconfigs |
|
|
| 176 | fix_library_files |
|
|
| 177 | } |
|
|
| 178 | |
|
|
| 179 | standard_configure_options() { |
|
|
| 180 | local myconf="" |
|
|
| 181 | |
|
|
| 182 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
|
|
| 183 | |
|
|
| 184 | # Disable visibility explicitly if gcc version isn't 4 |
|
|
| 185 | if [[ "$(gcc-major-version)" -lt "4" ]]; then |
|
|
| 186 | myconf="${myconf} -no-reduce-exports" |
|
|
| 187 | fi |
|
|
| 188 | |
|
|
| 189 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
| 190 | if use pch; then |
|
|
| 191 | myconf="${myconf} -pch" |
|
|
| 192 | else |
|
|
| 193 | myconf="${myconf} -no-pch" |
|
|
| 194 | fi |
|
|
| 195 | |
|
|
| 196 | if use debug; then |
|
|
| 197 | myconf="${myconf} -debug -no-separate-debug-info" |
|
|
| 198 | else |
|
|
| 199 | myconf="${myconf} -release -no-separate-debug-info" |
|
|
| 200 | fi |
|
|
| 201 | |
|
|
| 202 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
|
|
| 203 | # ${ARCH}. Therefore we convert it to supported values. |
|
|
| 204 | case "${ARCH}" in |
|
|
| 205 | amd64) myconf="${myconf} -arch x86_64" ;; |
|
|
| 206 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
|
|
| 207 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
|
|
| 208 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
|
|
| 209 | hppa|sh) myconf="${myconf} -arch generic" ;; |
|
|
| 210 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
|
|
| 211 | esac |
|
|
| 212 | |
|
|
| 213 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
|
|
| 214 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
296 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 215 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
297 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 216 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
298 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 217 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
299 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 218 | -demosdir ${QTDEMOSDIR} -silent -fast |
300 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
| 219 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
301 | ${exceptions} |
| 220 | $(use x86-fbsd || echo -reduce-relocations) |
|
|
| 221 | -nomake examples -nomake demos" |
302 | -reduce-relocations -nomake examples -nomake demos" |
| 222 | |
303 | |
| 223 | echo "${myconf}" |
304 | echo "${myconf}" |
| 224 | } |
305 | } |
| 225 | |
306 | |
|
|
307 | # @FUNCTION: build_directories |
|
|
308 | # @USAGE: < directories > |
|
|
309 | # @DESCRIPTION: |
|
|
310 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 226 | build_directories() { |
311 | build_directories() { |
| 227 | local dirs="$@" |
|
|
| 228 | for x in ${dirs}; do |
312 | for x in "$@"; do |
| 229 | cd "${S}"/${x} |
313 | cd "${S}"/${x} |
|
|
314 | sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:/usr/$(get_libdir)/qt4:g" $(find "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/linux.conf || die |
| 230 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
315 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 231 | emake || die "emake failed" |
316 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
|
|
317 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
|
|
318 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
| 232 | done |
319 | done |
| 233 | } |
320 | } |
| 234 | |
321 | |
|
|
322 | # @FUNCTION: install_directories |
|
|
323 | # @USAGE: < directories > |
|
|
324 | # @DESCRIPTION: |
|
|
325 | # run emake install in the given directories, which are separated by spaces |
| 235 | install_directories() { |
326 | install_directories() { |
| 236 | local dirs="$@" |
|
|
| 237 | for x in ${dirs}; do |
327 | for x in "$@"; do |
| 238 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
328 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 239 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
329 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 240 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
330 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
| 241 | done |
331 | done |
| 242 | } |
332 | } |
| 243 | |
333 | |
| 244 | # @ECLASS-VARIABLE: QCONFIG_ADD |
334 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 245 | # @DESCRIPTION: |
335 | # @DESCRIPTION: |
| 246 | # List options that need to be added to QT_CONFIG in qconfig.pri |
336 | # List options that need to be added to QT_CONFIG in qconfig.pri |
| 247 | QCONFIG_ADD="${QCONFIG_ADD:-}" |
337 | : ${QCONFIG_ADD:=} |
| 248 | |
338 | |
| 249 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
339 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
| 250 | # @DESCRIPTION: |
340 | # @DESCRIPTION: |
| 251 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
341 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
| 252 | QCONFIG_REMOVE="${QCONFIG_REMOVE:-}" |
342 | : ${QCONFIG_REMOVE:=} |
| 253 | |
343 | |
| 254 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
344 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 255 | # @DESCRIPTION: |
345 | # @DESCRIPTION: |
| 256 | # List variables that should be defined at the top of QtCore/qconfig.h |
346 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 257 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
347 | : ${QCONFIG_DEFINE:=} |
| 258 | |
348 | |
|
|
349 | # @FUNCTION: install_qconfigs |
|
|
350 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 259 | install_qconfigs() { |
351 | install_qconfigs() { |
| 260 | local x |
352 | local x |
| 261 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
353 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 262 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
354 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 263 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
355 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 273 | insinto ${QTHEADERDIR}/Gentoo |
365 | insinto ${QTHEADERDIR}/Gentoo |
| 274 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
366 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 275 | fi |
367 | fi |
| 276 | } |
368 | } |
| 277 | |
369 | |
|
|
370 | # @FUNCTION: generate_qconfigs |
|
|
371 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 278 | generate_qconfigs() { |
372 | generate_qconfigs() { |
| 279 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
373 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 280 | local x qconfig_add qconfig_remove qconfig_new |
374 | local x qconfig_add qconfig_remove qconfig_new |
| 281 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
375 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 282 | [[ -f ${x} ]] || continue |
376 | [[ -f ${x} ]] || continue |
| 283 | qconfig_add="${qconfig_add} $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
377 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
| 284 | qconfig_remove="${qconfig_remove} $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
378 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
| 285 | done |
379 | done |
| 286 | |
380 | |
| 287 | # these error checks do not use die because dying in pkg_post{inst,rm} |
381 | # these error checks do not use die because dying in pkg_post{inst,rm} |
| 288 | # just makes things worse. |
382 | # just makes things worse. |
| 289 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
383 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
| … | |
… | |
| 296 | |
390 | |
| 297 | # generate list of QT_CONFIG entries from the existing list |
391 | # generate list of QT_CONFIG entries from the existing list |
| 298 | # including qconfig_add and excluding qconfig_remove |
392 | # including qconfig_add and excluding qconfig_remove |
| 299 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
393 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 300 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
394 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 301 | hasq ${x} ${qconfig_remove} || qconfig_new="${qconfig_new} ${x}" |
395 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 302 | done |
396 | done |
| 303 | |
397 | |
| 304 | # replace the existing QT_CONFIG list with qconfig_new |
398 | # replace the existing QT_CONFIG list with qconfig_new |
| 305 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
399 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 306 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
400 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 329 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
423 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 330 | fi |
424 | fi |
| 331 | fi |
425 | fi |
| 332 | } |
426 | } |
| 333 | |
427 | |
|
|
428 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
429 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 334 | qt4-build_pkg_postrm() { |
430 | qt4-build_pkg_postrm() { |
| 335 | generate_qconfigs |
431 | generate_qconfigs |
| 336 | } |
432 | } |
| 337 | |
433 | |
|
|
434 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
435 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
436 | # breakages and proposed solutions. |
| 338 | qt4-build_pkg_postinst() { |
437 | qt4-build_pkg_postinst() { |
| 339 | generate_qconfigs |
438 | generate_qconfigs |
|
|
439 | |
|
|
440 | if [[ "${PN}" == "qt-core" ]]; then |
| 340 | echo |
441 | echo |
| 341 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
442 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
| 342 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
443 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| 343 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
444 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
| 344 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
445 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
| 345 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
446 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
| 346 | ewarn |
447 | ewarn |
| 347 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
448 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
| 348 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
449 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
| 349 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
450 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
| 350 | ewarn "configuration." |
451 | ewarn "configuration." |
| 351 | ewarn |
452 | ewarn |
| 352 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
453 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
| 353 | echo |
454 | echo |
|
|
455 | fi |
| 354 | } |
456 | } |
| 355 | |
457 | |
|
|
458 | # @FUNCTION: skip_qmake_build_patch |
|
|
459 | # @DESCRIPTION: |
|
|
460 | # Don't need to build qmake, as it's already installed from qt-core |
| 356 | skip_qmake_build_patch() { |
461 | skip_qmake_build_patch() { |
| 357 | # Don't need to build qmake, as it's already installed from qt-core |
462 | # Don't need to build qmake, as it's already installed from qt-core |
| 358 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
463 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 359 | } |
464 | } |
| 360 | |
465 | |
|
|
466 | # @FUNCTION: skip_project_generation_patch |
|
|
467 | # @DESCRIPTION: |
|
|
468 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 361 | skip_project_generation_patch() { |
469 | skip_project_generation_patch() { |
| 362 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
470 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 363 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
471 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 364 | -i "${S}"/configure || die "Sed failed" |
472 | -i "${S}"/configure || die "Sed failed" |
| 365 | } |
473 | } |
| 366 | |
474 | |
|
|
475 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
476 | # @DESCRIPTION: |
|
|
477 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
478 | # time |
| 367 | symlink_binaries_to_buildtree() { |
479 | symlink_binaries_to_buildtree() { |
| 368 | for bin in qmake moc uic rcc; do |
480 | for bin in qmake moc uic rcc; do |
| 369 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
481 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 370 | done |
482 | done |
| 371 | } |
483 | } |
| 372 | |
484 | |
|
|
485 | # @FUNCTION: fix_library_files |
|
|
486 | # @DESCRIPTION: |
|
|
487 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
488 | # moves the *.pc-files into the pkgconfig directory |
| 373 | fix_library_files() { |
489 | fix_library_files() { |
| 374 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
490 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 375 | if [[ -e ${libfile} ]]; then |
491 | if [[ -e ${libfile} ]]; then |
| 376 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
492 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 377 | fi |
493 | fi |
| … | |
… | |
| 380 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
496 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
| 381 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
497 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 382 | if [[ -e ${libfile} ]]; then |
498 | if [[ -e ${libfile} ]]; then |
| 383 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
499 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 384 | |
500 | |
| 385 | # Move .pc files into the pkgconfig directory |
501 | # Move .pc files into the pkgconfig directory |
| 386 | |
|
|
| 387 | dodir ${QTPCDIR} |
502 | dodir ${QTPCDIR} |
| 388 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
503 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 389 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
504 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 390 | fi |
505 | fi |
| 391 | done |
506 | done |
| 392 | |
507 | |
| 393 | # Don't install an empty directory |
508 | # Don't install an empty directory |
| 394 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
509 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 395 | } |
510 | } |
| 396 | |
511 | |
|
|
512 | # @FUNCTION: qt_use |
|
|
513 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
514 | # @DESCRIPTION: |
|
|
515 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
516 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
517 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
518 | # assignment-part |
| 397 | qt_use() { |
519 | qt_use() { |
| 398 | local flag="${1}" |
520 | local flag=$1 |
| 399 | local feature="${1}" |
521 | local feature=$1 |
| 400 | local enableval= |
522 | local enableval= |
| 401 | |
523 | |
| 402 | [[ -n ${2} ]] && feature=${2} |
524 | [[ -n $2 ]] && feature=$2 |
| 403 | [[ -n ${3} ]] && enableval="-${3}" |
525 | [[ -n $3 ]] && enableval=-$3 |
| 404 | |
526 | |
| 405 | if use ${flag}; then |
527 | if use ${flag}; then |
| 406 | echo "${enableval}-${feature}" |
528 | echo "${enableval}-${feature}" |
| 407 | else |
529 | else |
| 408 | echo "-no-${feature}" |
530 | echo "-no-${feature}" |
| 409 | fi |
531 | fi |
| 410 | } |
532 | } |
| 411 | |
533 | |
| 412 | # @ECLASS-VARIABLE: QT4_BUILT_WITH_USE_CHECK |
534 | # @FUNCTION: qt_mkspecs_dir |
|
|
535 | # @RETURN: the specs-directory w/o path |
| 413 | # @DESCRIPTION: |
536 | # @DESCRIPTION: |
| 414 | # The contents of $QT4_BUILT_WITH_USE_CHECK gets fed to built_with_use |
537 | # Allows us to define which mkspecs dir we want to use. |
| 415 | # (eutils.eclass), line per line. |
|
|
| 416 | # |
|
|
| 417 | # Example: |
|
|
| 418 | # @CODE |
|
|
| 419 | # pkg_setup() { |
|
|
| 420 | # use qt3support && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
| 421 | # ~x11-libs/qt-gui-${PV} qt3support" |
|
|
| 422 | # qt4-build_check_use |
|
|
| 423 | # } |
|
|
| 424 | # @CODE |
|
|
| 425 | |
|
|
| 426 | # Run built_with_use on each flag and print appropriate error messages if any |
|
|
| 427 | # flags are missing |
|
|
| 428 | _qt_built_with_use() { |
|
|
| 429 | local missing opt pkg flag flags |
|
|
| 430 | |
|
|
| 431 | if [[ ${1} = "--missing" ]]; then |
|
|
| 432 | missing="${1} ${2}" && shift 2 |
|
|
| 433 | fi |
|
|
| 434 | if [[ ${1:0:1} = "-" ]]; then |
|
|
| 435 | opt=${1} && shift |
|
|
| 436 | fi |
|
|
| 437 | |
|
|
| 438 | pkg=${1} && shift |
|
|
| 439 | |
|
|
| 440 | for flag in "${@}"; do |
|
|
| 441 | flags="${flags} ${flag}" |
|
|
| 442 | if ! built_with_use ${missing} ${opt} ${pkg} ${flag}; then |
|
|
| 443 | flags="${flags}*" |
|
|
| 444 | else |
|
|
| 445 | [[ ${opt} = "-o" ]] && return 0 |
|
|
| 446 | fi |
|
|
| 447 | done |
|
|
| 448 | if [[ "${flags# }" = "${@}" ]]; then |
|
|
| 449 | return 0 |
|
|
| 450 | fi |
|
|
| 451 | if [[ ${opt} = "-o" ]]; then |
|
|
| 452 | eerror "This package requires '${pkg}' to be built with any of the following USE flags: '$*'." |
|
|
| 453 | else |
|
|
| 454 | eerror "This package requires '${pkg}' to be built with the following USE flags: '${flags# }'." |
|
|
| 455 | fi |
|
|
| 456 | return 1 |
|
|
| 457 | } |
|
|
| 458 | |
|
|
| 459 | # @FUNCTION: qt4-build_check_use |
|
|
| 460 | # @DESCRIPTION: |
|
|
| 461 | # Check if the listed packages in $QT4_BUILT_WITH_USE_CHECK are built with the |
|
|
| 462 | # USE flags listed. |
|
|
| 463 | # |
|
|
| 464 | # If any of the required USE flags are missing, an eerror will be printed for |
|
|
| 465 | # each package with missing USE flags. |
|
|
| 466 | qt4-build_check_use() { |
|
|
| 467 | local line missing |
|
|
| 468 | while read line; do |
|
|
| 469 | [[ -z ${line} ]] && continue |
|
|
| 470 | if ! _qt_built_with_use ${line}; then |
|
|
| 471 | missing=true |
|
|
| 472 | fi |
|
|
| 473 | done <<< "${QT4_BUILT_WITH_USE_CHECK}" |
|
|
| 474 | if [[ -n ${missing} ]]; then |
|
|
| 475 | echo |
|
|
| 476 | eerror "Flags marked with an * are missing." |
|
|
| 477 | die "Missing USE flags found" |
|
|
| 478 | fi |
|
|
| 479 | } |
|
|
| 480 | |
|
|
| 481 | qt_mkspecs_dir() { |
538 | qt_mkspecs_dir() { |
| 482 | # Allows us to define which mkspecs dir we want to use. |
539 | # Allows us to define which mkspecs dir we want to use. |
| 483 | local spec |
540 | local spec |
| 484 | |
541 | |
| 485 | case ${CHOST} in |
542 | case ${CHOST} in |
| 486 | *-freebsd*|*-dragonfly*) |
543 | *-freebsd*|*-dragonfly*) |
| 487 | spec="freebsd" ;; |
544 | spec=freebsd ;; |
| 488 | *-openbsd*) |
545 | *-openbsd*) |
| 489 | spec="openbsd" ;; |
546 | spec=openbsd ;; |
| 490 | *-netbsd*) |
547 | *-netbsd*) |
| 491 | spec="netbsd" ;; |
548 | spec=netbsd ;; |
| 492 | *-darwin*) |
549 | *-darwin*) |
| 493 | spec="darwin" ;; |
550 | spec=darwin ;; |
| 494 | *-linux-*|*-linux) |
551 | *-linux-*|*-linux) |
| 495 | spec="linux" ;; |
552 | spec=linux ;; |
| 496 | *) |
553 | *) |
| 497 | die "Unknown CHOST, no platform choosen." |
554 | die "Unknown CHOST, no platform choosen." |
| 498 | esac |
555 | esac |
| 499 | |
556 | |
| 500 | CXX=$(tc-getCXX) |
557 | CXX=$(tc-getCXX) |
| 501 | if [[ ${CXX/g++/} != ${CXX} ]]; then |
558 | if [[ ${CXX} == *g++* ]]; then |
| 502 | spec="${spec}-g++" |
559 | spec+=-g++ |
| 503 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
560 | elif [[ ${CXX} == *icpc* ]]; then |
| 504 | spec="${spec}-icc" |
561 | spec+=-icc |
| 505 | else |
562 | else |
| 506 | die "Unknown compiler ${CXX}." |
563 | die "Unknown compiler ${CXX}." |
| 507 | fi |
564 | fi |
|
|
565 | if [[ -n ${LIBDIR/lib} ]]; then |
|
|
566 | spec+=-${LIBDIR/lib} |
|
|
567 | fi |
| 508 | |
568 | |
| 509 | echo "${spec}" |
569 | echo "${spec}" |
| 510 | } |
570 | } |
| 511 | |
571 | |
| 512 | case ${EAPI:-0} in |
|
|
| 513 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
| 514 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
572 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
| 515 | esac |
|
|