| 1 | # Copyright 2007-2008 Gentoo Foundation |
1 | # Copyright 2007-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.15 2008/08/11 12:52:10 yngwin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.43 2009/07/31 22:18:31 tommy 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> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
10 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 9 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 10 | # This eclass contains various functions that are used when building Qt4 |
12 | # This eclass contains various functions that are used when building Qt4 |
| 11 | |
13 | |
| 12 | inherit eutils multilib toolchain-funcs flag-o-matic |
14 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 13 | |
15 | |
| 14 | IUSE="${IUSE} debug pch" |
16 | IUSE="${IUSE} debug pch" |
| 15 | |
17 | RDEPEND=" |
|
|
18 | !<x11-libs/qt-assistant-${PV} |
|
|
19 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
20 | !<x11-libs/qt-core-${PV} |
|
|
21 | !>x11-libs/qt-core-${PV}-r9999 |
|
|
22 | !<x11-libs/qt-dbus-${PV} |
|
|
23 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
24 | !<x11-libs/qt-demo-${PV} |
|
|
25 | !>x11-libs/qt-demo-${PV}-r9999 |
|
|
26 | !<x11-libs/qt-gui-${PV} |
|
|
27 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
28 | !<x11-libs/qt-opengl-${PV} |
|
|
29 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
30 | !<x11-libs/qt-phonon-${PV} |
|
|
31 | !>x11-libs/qt-phonon-${PV}-r9999 |
|
|
32 | !<x11-libs/qt-qt3support-${PV} |
|
|
33 | !>x11-libs/qt-qt3support-${PV}-r9999 |
|
|
34 | !<x11-libs/qt-script-${PV} |
|
|
35 | !>x11-libs/qt-script-${PV}-r9999 |
|
|
36 | !<x11-libs/qt-sql-${PV} |
|
|
37 | !>x11-libs/qt-sql-${PV}-r9999 |
|
|
38 | !<x11-libs/qt-svg-${PV} |
|
|
39 | !>x11-libs/qt-svg-${PV}-r9999 |
|
|
40 | !<x11-libs/qt-test-${PV} |
|
|
41 | !>x11-libs/qt-test-${PV}-r9999 |
|
|
42 | !<x11-libs/qt-webkit-${PV} |
|
|
43 | !>x11-libs/qt-webkit-${PV}-r9999 |
|
|
44 | !<x11-libs/qt-xmlpatterns-${PV} |
|
|
45 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
|
|
46 | " |
| 16 | case "${PV}" in |
47 | 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*) |
48 | 4.?.?_rc*) |
| 22 | SRCTYPE="${SRCTYPE:-opensource-src}" |
49 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 23 | MY_PV="${PV/_rc/-rc}" |
50 | MY_PV="${PV/_rc/-rc}" |
| 24 | ;; |
51 | ;; |
| 25 | *) |
52 | *) |
| 26 | SRCTYPE="${SRCTYPE:-opensource-src}" |
53 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| … | |
… | |
| 28 | ;; |
55 | ;; |
| 29 | esac |
56 | esac |
| 30 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
57 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
| 31 | S=${WORKDIR}/${MY_P} |
58 | S=${WORKDIR}/${MY_P} |
| 32 | |
59 | |
|
|
60 | HOMEPAGE="http://www.qtsoftware.com/" |
| 33 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
61 | SRC_URI="http://get.qtsoftware.com/qt/source/${MY_P}.tar.bz2" |
| 34 | |
62 | |
| 35 | case "${PV}" in |
63 | case "${PV}" in |
| 36 | 4.4.1|4.4.0|4.4.0_rc*) |
|
|
| 37 | SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" |
64 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
| 38 | ;; |
65 | *) ;; |
| 39 | *) |
|
|
| 40 | ;; |
|
|
| 41 | esac |
66 | esac |
| 42 | |
67 | |
|
|
68 | if version_is_at_least 4.5 ${PV} ; then |
|
|
69 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
70 | fi |
|
|
71 | |
|
|
72 | # @FUNCTION: qt4-build_pkg_setup |
|
|
73 | # @DESCRIPTION: |
|
|
74 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 43 | qt4-build_pkg_setup() { |
75 | qt4-build_pkg_setup() { |
|
|
76 | # EAPI=2 ebuilds set use-deps, others need this: |
|
|
77 | if [[ $EAPI != 2 ]]; then |
|
|
78 | # Make sure debug setting corresponds with qt-core (bug 258512) |
|
|
79 | if [[ $PN != "qt-core" ]]; then |
|
|
80 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
81 | ~x11-libs/qt-core-${PV} debug" |
|
|
82 | fi |
|
|
83 | |
| 44 | # Check USE requirements |
84 | # Check USE requirements |
| 45 | qt4-build_check_use |
85 | qt4-build_check_use |
|
|
86 | fi |
| 46 | |
87 | |
|
|
88 | PATH="${S}/bin:${PATH}" |
|
|
89 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
90 | |
|
|
91 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
92 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
93 | echo |
|
|
94 | ebeep 3 |
|
|
95 | fi |
|
|
96 | } |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
101 | # code should be compiled. This is a space-separated list |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Space separated list including the directories that will be extracted from Qt |
|
|
106 | # tarball |
|
|
107 | |
|
|
108 | # @FUNCTION: qt4-build_src_unpack |
|
|
109 | # @DESCRIPTION: |
|
|
110 | # Unpacks the sources |
|
|
111 | qt4-build_src_unpack() { |
|
|
112 | setqtenv |
|
|
113 | local target targets licenses |
|
|
114 | if version_is_at_least 4.5 ${PV} ; then |
|
|
115 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
116 | else |
|
|
117 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
118 | fi |
|
|
119 | for target in configure ${licenses} projects.pro \ |
|
|
120 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
|
|
121 | ${QT4_EXTRACT_DIRECTORIES}; do |
|
|
122 | targets="${targets} ${MY_P}/${target}" |
|
|
123 | done |
|
|
124 | |
|
|
125 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
126 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
127 | |
|
|
128 | case "${PV}" in |
|
|
129 | 4.4.?) |
|
|
130 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
131 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
132 | ;; |
|
|
133 | esac |
|
|
134 | |
|
|
135 | # Be backwards compatible for now |
|
|
136 | if [[ $EAPI != 2 ]]; then |
|
|
137 | qt4-build_src_prepare |
|
|
138 | fi |
|
|
139 | } |
|
|
140 | |
|
|
141 | # @ECLASS-VARIABLE: PATCHES |
|
|
142 | # @DESCRIPTION: |
|
|
143 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
144 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
145 | # example: |
|
|
146 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
147 | # ${FILESDIR}"/mypatch2.patch" |
|
|
148 | # |
|
|
149 | |
|
|
150 | # @FUNCTION: qt4-build_src_prepare |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
153 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
|
|
154 | qt4-build_src_prepare() { |
|
|
155 | setqtenv |
|
|
156 | cd "${S}" |
|
|
157 | |
|
|
158 | if [[ ${PN} != qt-core ]]; then |
|
|
159 | skip_qmake_build_patch |
|
|
160 | skip_project_generation_patch |
|
|
161 | symlink_binaries_to_buildtree |
|
|
162 | fi |
|
|
163 | |
|
|
164 | # Bug 178652 |
|
|
165 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
166 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
167 | append-flags -fno-gcse |
|
|
168 | fi |
|
|
169 | |
|
|
170 | # Unsupported old gcc versions - hardened needs this :( |
|
|
171 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
172 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
173 | append-cxxflags -fno-stack-protector |
|
|
174 | # Bug 253127 |
|
|
175 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
176 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
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 | # Be backwards compatible for now |
|
|
211 | if [[ $EAPI != 2 ]]; then |
|
|
212 | qt4-build_src_configure |
|
|
213 | fi |
|
|
214 | |
|
|
215 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
216 | } |
|
|
217 | |
|
|
218 | # @FUNCTION: qt4-build_src_install |
|
|
219 | # @DESCRIPTION: |
|
|
220 | # Perform the actual installation including some library fixes. |
|
|
221 | qt4-build_src_install() { |
|
|
222 | setqtenv |
|
|
223 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
224 | install_qconfigs |
|
|
225 | fix_library_files |
|
|
226 | } |
|
|
227 | |
|
|
228 | # @FUNCTION: setqtenv |
|
|
229 | setqtenv() { |
| 47 | # Set up installation directories |
230 | # Set up installation directories |
| 48 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
231 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 49 | QTPREFIXDIR=/usr |
232 | QTPREFIXDIR=/usr |
| 50 | QTBINDIR=/usr/bin |
233 | QTBINDIR=/usr/bin |
| 51 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
234 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
235 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 52 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
236 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
| 53 | QTDATADIR=/usr/share/qt4 |
237 | QTDATADIR=/usr/share/qt4 |
| 54 | QTDOCDIR=/usr/share/doc/qt-${PV} |
238 | QTDOCDIR=/usr/share/doc/qt-${PV} |
| 55 | QTHEADERDIR=/usr/include/qt4 |
239 | QTHEADERDIR=/usr/include/qt4 |
| 56 | QTPLUGINDIR=${QTLIBDIR}/plugins |
240 | QTPLUGINDIR=${QTLIBDIR}/plugins |
| 57 | QTSYSCONFDIR=/etc/qt4 |
241 | QTSYSCONFDIR=/etc/qt4 |
| 58 | QTTRANSDIR=${QTDATADIR}/translations |
242 | QTTRANSDIR=${QTDATADIR}/translations |
| 59 | QTEXAMPLESDIR=${QTDATADIR}/examples |
243 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 60 | QTDEMOSDIR=${QTDATADIR}/demos |
244 | QTDEMOSDIR=${QTDATADIR}/demos |
| 61 | |
245 | QT_INSTALL_PREFIX=/usr/$(get_libdir)/qt4 |
| 62 | PLATFORM=$(qt_mkspecs_dir) |
246 | PLATFORM=$(qt_mkspecs_dir) |
| 63 | |
247 | |
| 64 | PATH="${S}/bin:${PATH}" |
248 | unset QMAKESPEC |
| 65 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
| 66 | } |
249 | } |
| 67 | |
250 | |
| 68 | qt4_unpack() { |
251 | # @FUNCTION: standard_configure_options |
| 69 | local target targets |
252 | # @DESCRIPTION: |
| 70 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
253 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 71 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
254 | # debug info is wanted or not. |
| 72 | ${QT4_EXTRACT_DIRECTORIES}; do |
|
|
| 73 | targets="${targets} ${MY_P}/${target}" |
|
|
| 74 | done |
|
|
| 75 | |
|
|
| 76 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
| 77 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
|
|
| 78 | |
|
|
| 79 | case "${PV}" in |
|
|
| 80 | 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 | } |
|
|
| 86 | |
|
|
| 87 | qt4-build_src_unpack() { |
|
|
| 88 | qt4_unpack |
|
|
| 89 | if [[ ${PN} != qt-core ]]; then |
|
|
| 90 | cd "${S}" |
|
|
| 91 | skip_qmake_build_patch |
|
|
| 92 | skip_project_generation_patch |
|
|
| 93 | symlink_binaries_to_buildtree |
|
|
| 94 | fi |
|
|
| 95 | |
|
|
| 96 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 97 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 98 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 99 | -e "s:X11R6/::" \ |
|
|
| 100 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 101 | |
|
|
| 102 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 103 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 104 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 105 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
| 106 | } |
|
|
| 107 | |
|
|
| 108 | qt4-build_src_compile() { |
|
|
| 109 | # Don't let the user go too overboard with flags. If you really want to, uncomment |
|
|
| 110 | # out the line below and give 'er a whirl. |
|
|
| 111 | strip-flags |
|
|
| 112 | replace-flags -O3 -O2 |
|
|
| 113 | |
|
|
| 114 | if [[ $(gcc-fullversion) == "3.4.6" && gcc-specs-ssp ]] ; then |
|
|
| 115 | ewarn "Appending -fno-stack-protector to CFLAGS/CXXFLAGS" |
|
|
| 116 | append-flags -fno-stack-protector |
|
|
| 117 | fi |
|
|
| 118 | |
|
|
| 119 | # Bug 178652 |
|
|
| 120 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 121 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 122 | append-flags -fno-gcse |
|
|
| 123 | fi |
|
|
| 124 | |
|
|
| 125 | myconf="$(standard_configure_options) ${myconf}" |
|
|
| 126 | |
|
|
| 127 | echo ./configure ${myconf} |
|
|
| 128 | ./configure ${myconf} || die "./configure failed" |
|
|
| 129 | |
|
|
| 130 | build_target_directories |
|
|
| 131 | } |
|
|
| 132 | |
|
|
| 133 | qt4-build_src_install() { |
|
|
| 134 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 135 | install_qconfigs |
|
|
| 136 | fix_library_files |
|
|
| 137 | } |
|
|
| 138 | |
|
|
| 139 | standard_configure_options() { |
255 | standard_configure_options() { |
| 140 | local myconf="" |
256 | local myconf="" |
| 141 | |
257 | |
| 142 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
258 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 143 | |
259 | |
| … | |
… | |
| 157 | myconf="${myconf} -debug -no-separate-debug-info" |
273 | myconf="${myconf} -debug -no-separate-debug-info" |
| 158 | else |
274 | else |
| 159 | myconf="${myconf} -release -no-separate-debug-info" |
275 | myconf="${myconf} -release -no-separate-debug-info" |
| 160 | fi |
276 | fi |
| 161 | |
277 | |
| 162 | # ARCH is set on Gentoo. QT now falls back to generic on an unsupported |
278 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 163 | # ${ARCH}. Therefore we convert it to supported values. |
279 | # $(tc-arch). Therefore we convert it to supported values. |
| 164 | case "${ARCH}" in |
280 | case "$(tc-arch)" in |
| 165 | amd64) myconf="${myconf} -arch x86_64" ;; |
281 | amd64) myconf="${myconf} -arch x86_64" ;; |
| 166 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
282 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
| 167 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
283 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
| 168 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
284 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 169 | hppa|sh) myconf="${myconf} -arch generic" ;; |
285 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 170 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
286 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 171 | esac |
287 | esac |
| 172 | |
288 | |
| 173 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
289 | myconf="${myconf} -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license -no-rpath |
| 174 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
290 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 175 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
291 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 176 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
292 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 177 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
293 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 178 | -demosdir ${QTDEMOSDIR} -silent -fast -reduce-relocations |
294 | -demosdir ${QTDEMOSDIR} -silent -fast |
|
|
295 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
| 179 | -nomake examples -nomake demos" |
296 | -reduce-relocations -nomake examples -nomake demos" |
|
|
297 | |
|
|
298 | # Make eclass 4.5.{1,2} ready |
|
|
299 | case "${MY_PV}" in |
|
|
300 | 4.5.1 | 4.5.2) |
|
|
301 | myconf="${myconf} -opensource" |
|
|
302 | ;; |
|
|
303 | esac |
| 180 | |
304 | |
| 181 | echo "${myconf}" |
305 | echo "${myconf}" |
| 182 | } |
306 | } |
| 183 | |
307 | |
| 184 | build_target_directories() { |
308 | # @FUNCTION: build_directories |
| 185 | build_directories "${QT4_TARGET_DIRECTORIES}" |
309 | # @USAGE: < directories > |
| 186 | } |
310 | # @DESCRIPTION: |
| 187 | |
311 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 188 | build_directories() { |
312 | build_directories() { |
| 189 | local dirs="$@" |
313 | local dirs="$@" |
| 190 | for x in ${dirs}; do |
314 | for x in ${dirs}; do |
| 191 | cd "${S}"/${x} |
315 | cd "${S}"/${x} |
|
|
316 | sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:/usr/$(get_libdir)/qt4:g" $(find "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/linux.conf || die |
| 192 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
317 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 193 | emake || die "emake failed" |
318 | emake || die "emake failed" |
| 194 | done |
319 | done |
| 195 | } |
320 | } |
| 196 | |
321 | |
|
|
322 | # @FUNCTION: install_directories |
|
|
323 | # @USAGE: < directories > |
|
|
324 | # @DESCRIPTION: |
|
|
325 | # run emake install in the given directories, which are separated by spaces |
| 197 | install_directories() { |
326 | install_directories() { |
| 198 | local dirs="$@" |
327 | local dirs="$@" |
| 199 | for x in ${dirs}; do |
328 | for x in ${dirs}; do |
| 200 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
329 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 201 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
330 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 216 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
345 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 217 | # @DESCRIPTION: |
346 | # @DESCRIPTION: |
| 218 | # List variables that should be defined at the top of QtCore/qconfig.h |
347 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 219 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
348 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 220 | |
349 | |
|
|
350 | # @FUNCTION: install_qconfigs |
|
|
351 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 221 | install_qconfigs() { |
352 | install_qconfigs() { |
| 222 | local x |
353 | local x |
| 223 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
354 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 224 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
355 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 225 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
356 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 235 | insinto ${QTHEADERDIR}/Gentoo |
366 | insinto ${QTHEADERDIR}/Gentoo |
| 236 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
367 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 237 | fi |
368 | fi |
| 238 | } |
369 | } |
| 239 | |
370 | |
| 240 | # Stubs for functions used by the Qt 4.4.0_technical_preview_1. |
371 | # @FUNCTION: generate_qconfigs |
| 241 | qconfig_add_option() { : ; } |
372 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 242 | qconfig_remove_option() { : ; } |
|
|
| 243 | |
|
|
| 244 | generate_qconfigs() { |
373 | generate_qconfigs() { |
| 245 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
374 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 246 | local x qconfig_add qconfig_remove qconfig_new |
375 | local x qconfig_add qconfig_remove qconfig_new |
| 247 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
376 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 248 | [[ -f ${x} ]] || continue |
377 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 295 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
424 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 296 | fi |
425 | fi |
| 297 | fi |
426 | fi |
| 298 | } |
427 | } |
| 299 | |
428 | |
|
|
429 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
430 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 300 | qt4-build_pkg_postrm() { |
431 | qt4-build_pkg_postrm() { |
| 301 | generate_qconfigs |
432 | generate_qconfigs |
| 302 | } |
433 | } |
| 303 | |
434 | |
|
|
435 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
436 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
437 | # breakages and proposed solutions. |
| 304 | qt4-build_pkg_postinst() { |
438 | qt4-build_pkg_postinst() { |
| 305 | generate_qconfigs |
439 | generate_qconfigs |
|
|
440 | echo |
|
|
441 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
|
|
442 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
|
|
443 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
|
|
444 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
|
|
445 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
|
|
446 | ewarn |
|
|
447 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
|
|
448 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
|
|
449 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
|
|
450 | ewarn "configuration." |
|
|
451 | ewarn |
|
|
452 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
|
|
453 | echo |
| 306 | } |
454 | } |
| 307 | |
455 | |
|
|
456 | # @FUNCTION: skip_qmake_build_patch |
|
|
457 | # @DESCRIPTION: |
|
|
458 | # Don't need to build qmake, as it's already installed from qt-core |
| 308 | skip_qmake_build_patch() { |
459 | skip_qmake_build_patch() { |
| 309 | # Don't need to build qmake, as it's already installed from qt-core |
460 | # Don't need to build qmake, as it's already installed from qt-core |
| 310 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
461 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 311 | } |
462 | } |
| 312 | |
463 | |
|
|
464 | # @FUNCTION: skip_project_generation_patch |
|
|
465 | # @DESCRIPTION: |
|
|
466 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 313 | skip_project_generation_patch() { |
467 | skip_project_generation_patch() { |
| 314 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
468 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 315 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
469 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 316 | -i "${S}"/configure || die "Sed failed" |
470 | -i "${S}"/configure || die "Sed failed" |
| 317 | } |
471 | } |
| 318 | |
472 | |
|
|
473 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
474 | # @DESCRIPTION: |
|
|
475 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
476 | # time |
| 319 | symlink_binaries_to_buildtree() { |
477 | symlink_binaries_to_buildtree() { |
| 320 | for bin in qmake moc uic rcc; do |
478 | for bin in qmake moc uic rcc; do |
| 321 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
479 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 322 | done |
480 | done |
| 323 | } |
481 | } |
| 324 | |
482 | |
|
|
483 | # @FUNCTION: fix_library_files |
|
|
484 | # @DESCRIPTION: |
|
|
485 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
486 | # moves the *.pc-files into the pkgconfig directory |
| 325 | fix_library_files() { |
487 | fix_library_files() { |
| 326 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
488 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 327 | if [[ -e ${libfile} ]]; then |
489 | if [[ -e ${libfile} ]]; then |
| 328 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
490 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 329 | fi |
491 | fi |
| … | |
… | |
| 333 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
495 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 334 | if [[ -e ${libfile} ]]; then |
496 | if [[ -e ${libfile} ]]; then |
| 335 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
497 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 336 | |
498 | |
| 337 | # Move .pc files into the pkgconfig directory |
499 | # Move .pc files into the pkgconfig directory |
| 338 | |
|
|
| 339 | dodir ${QTPCDIR} |
500 | dodir ${QTPCDIR} |
| 340 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
501 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 341 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
502 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 342 | fi |
503 | fi |
| 343 | done |
504 | done |
| 344 | |
505 | |
| 345 | # Don't install an empty directory |
506 | # Don't install an empty directory |
| 346 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
507 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 347 | } |
508 | } |
| 348 | |
509 | |
|
|
510 | # @FUNCTION: qt_use |
|
|
511 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
512 | # @DESCRIPTION: |
|
|
513 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
514 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
515 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
516 | # assignment-part |
| 349 | qt_use() { |
517 | qt_use() { |
| 350 | local flag="${1}" |
518 | local flag="${1}" |
| 351 | local feature="${1}" |
519 | local feature="${1}" |
| 352 | local enableval= |
520 | local enableval= |
| 353 | |
521 | |
| … | |
… | |
| 375 | # } |
543 | # } |
| 376 | # @CODE |
544 | # @CODE |
| 377 | |
545 | |
| 378 | # Run built_with_use on each flag and print appropriate error messages if any |
546 | # Run built_with_use on each flag and print appropriate error messages if any |
| 379 | # flags are missing |
547 | # flags are missing |
|
|
548 | |
| 380 | _qt_built_with_use() { |
549 | _qt_built_with_use() { |
| 381 | local missing opt pkg flag flags |
550 | local missing opt pkg flag flags |
| 382 | |
551 | |
| 383 | if [[ ${1} = "--missing" ]]; then |
552 | if [[ ${1} = "--missing" ]]; then |
| 384 | missing="${1} ${2}" && shift 2 |
553 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 428 | eerror "Flags marked with an * are missing." |
597 | eerror "Flags marked with an * are missing." |
| 429 | die "Missing USE flags found" |
598 | die "Missing USE flags found" |
| 430 | fi |
599 | fi |
| 431 | } |
600 | } |
| 432 | |
601 | |
|
|
602 | # @FUNCTION: qt_mkspecs_dir |
|
|
603 | # @RETURN: the specs-directory w/o path |
|
|
604 | # @DESCRIPTION: |
|
|
605 | # Allows us to define which mkspecs dir we want to use. |
| 433 | qt_mkspecs_dir() { |
606 | qt_mkspecs_dir() { |
| 434 | # Allows us to define which mkspecs dir we want to use. |
607 | # Allows us to define which mkspecs dir we want to use. |
| 435 | local spec |
608 | local spec |
| 436 | |
609 | |
| 437 | case ${CHOST} in |
610 | case ${CHOST} in |
| … | |
… | |
| 455 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
628 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
| 456 | spec="${spec}-icc" |
629 | spec="${spec}-icc" |
| 457 | else |
630 | else |
| 458 | die "Unknown compiler ${CXX}." |
631 | die "Unknown compiler ${CXX}." |
| 459 | fi |
632 | fi |
|
|
633 | if [[ -n "${LIBDIR/lib}" ]]; then |
|
|
634 | spec="${spec}-${LIBDIR/lib}" |
|
|
635 | fi |
| 460 | |
636 | |
| 461 | echo "${spec}" |
637 | echo "${spec}" |
| 462 | } |
638 | } |
| 463 | |
639 | |
|
|
640 | case ${EAPI:-0} in |
| 464 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst |
641 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
642 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
643 | esac |