| 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.18 2009/01/21 08:55:28 gengor Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.47 2009/10/03 19:29:04 ayoy Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
|
|
7 | # Ben de Groot <yngwin@gentoo.org>, |
|
|
8 | # Markos Chandras <hwoarang@gentoo.org>, |
| 7 | # Caleb Tennis <caleb@gentoo.org> |
9 | # Caleb Tennis <caleb@gentoo.org> |
|
|
10 | # Alex Alexander <wired@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
11 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 9 | # @DESCRIPTION: |
12 | # @DESCRIPTION: |
| 10 | # This eclass contains various functions that are used when building Qt4 |
13 | # This eclass contains various functions that are used when building Qt4 |
| 11 | |
14 | |
| 12 | inherit eutils multilib toolchain-funcs flag-o-matic |
15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 13 | |
16 | |
| 14 | IUSE="${IUSE} debug pch" |
17 | IUSE="${IUSE} debug pch" |
| 15 | |
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 | " |
| 16 | case "${PV}" in |
48 | 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*) |
49 | 4.?.?_rc*) |
| 22 | SRCTYPE="${SRCTYPE:-opensource-src}" |
50 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 23 | MY_PV="${PV/_rc/-rc}" |
51 | MY_PV="${PV/_rc/-rc}" |
| 24 | ;; |
52 | ;; |
| 25 | *) |
53 | *) |
| 26 | SRCTYPE="${SRCTYPE:-opensource-src}" |
54 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| … | |
… | |
| 28 | ;; |
56 | ;; |
| 29 | esac |
57 | esac |
| 30 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
58 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
| 31 | S=${WORKDIR}/${MY_P} |
59 | S=${WORKDIR}/${MY_P} |
| 32 | |
60 | |
|
|
61 | HOMEPAGE="http://qt.nokia.com/" |
| 33 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
62 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.bz2" |
|
|
63 | if version_is_at_least 4.5.3 ${PV} ; then |
|
|
64 | SRC_URI="${SRC_URI/bz2/gz}" |
|
|
65 | fi |
| 34 | |
66 | |
| 35 | case "${PV}" in |
67 | case "${PV}" in |
| 36 | 4.4.2|4.4.1|4.4.0|4.4.0_rc*) |
|
|
| 37 | SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" |
68 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
| 38 | ;; |
69 | *) ;; |
| 39 | *) |
|
|
| 40 | ;; |
|
|
| 41 | esac |
70 | esac |
| 42 | |
71 | |
|
|
72 | if version_is_at_least 4.5 ${PV} ; then |
|
|
73 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
74 | fi |
|
|
75 | |
|
|
76 | # @FUNCTION: qt4-build_pkg_setup |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 43 | qt4-build_pkg_setup() { |
79 | qt4-build_pkg_setup() { |
|
|
80 | # EAPI=2 ebuilds set use-deps, others need this: |
|
|
81 | if [[ $EAPI != 2 ]]; then |
|
|
82 | # Make sure debug setting corresponds with qt-core (bug 258512) |
|
|
83 | if [[ $PN != "qt-core" ]]; then |
|
|
84 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
85 | ~x11-libs/qt-core-${PV} debug" |
|
|
86 | fi |
|
|
87 | |
| 44 | # Check USE requirements |
88 | # Check USE requirements |
| 45 | qt4-build_check_use |
89 | qt4-build_check_use |
|
|
90 | fi |
| 46 | |
91 | |
|
|
92 | PATH="${S}/bin:${PATH}" |
|
|
93 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
94 | |
|
|
95 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
96 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
97 | echo |
|
|
98 | ebeep 3 |
|
|
99 | fi |
|
|
100 | } |
|
|
101 | |
|
|
102 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
103 | # @DESCRIPTION: |
|
|
104 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
105 | # code should be compiled. This is a space-separated list |
|
|
106 | |
|
|
107 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
108 | # @DESCRIPTION: |
|
|
109 | # Space separated list including the directories that will be extracted from Qt |
|
|
110 | # tarball |
|
|
111 | |
|
|
112 | # @FUNCTION: qt4-build_src_unpack |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Unpacks the sources |
|
|
115 | qt4-build_src_unpack() { |
|
|
116 | setqtenv |
|
|
117 | local target targets licenses tar_pkg tar_args |
|
|
118 | if version_is_at_least 4.5 ${PV} ; then |
|
|
119 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
120 | else |
|
|
121 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
122 | fi |
|
|
123 | for target in configure ${licenses} projects.pro \ |
|
|
124 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
|
|
125 | ${QT4_EXTRACT_DIRECTORIES}; do |
|
|
126 | targets="${targets} ${MY_P}/${target}" |
|
|
127 | done |
|
|
128 | |
|
|
129 | tar_pkg=${MY_P}.tar.bz2 |
|
|
130 | tar_args="xjpf" |
|
|
131 | if version_is_at_least 4.5.3 ${PV} ; then |
|
|
132 | tar_pkg=${tar_pkg/bz2/gz} |
|
|
133 | tar_args="xzpf" |
|
|
134 | fi |
|
|
135 | |
|
|
136 | echo tar ${tar_args} "${DISTDIR}"/${tar_pkg} ${targets} |
|
|
137 | tar ${tar_args} "${DISTDIR}"/${tar_pkg} ${targets} |
|
|
138 | |
|
|
139 | case "${PV}" in |
|
|
140 | 4.4.?) |
|
|
141 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
142 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
143 | ;; |
|
|
144 | esac |
|
|
145 | |
|
|
146 | # Be backwards compatible for now |
|
|
147 | if [[ $EAPI != 2 ]]; then |
|
|
148 | qt4-build_src_prepare |
|
|
149 | fi |
|
|
150 | } |
|
|
151 | |
|
|
152 | # @ECLASS-VARIABLE: PATCHES |
|
|
153 | # @DESCRIPTION: |
|
|
154 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
155 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
156 | # example: |
|
|
157 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
158 | # ${FILESDIR}"/mypatch2.patch" |
|
|
159 | # |
|
|
160 | |
|
|
161 | # @FUNCTION: qt4-build_src_prepare |
|
|
162 | # @DESCRIPTION: |
|
|
163 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
164 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
|
|
165 | qt4-build_src_prepare() { |
|
|
166 | setqtenv |
|
|
167 | cd "${S}" |
|
|
168 | |
|
|
169 | if [[ ${PN} != qt-core ]]; then |
|
|
170 | skip_qmake_build_patch |
|
|
171 | skip_project_generation_patch |
|
|
172 | symlink_binaries_to_buildtree |
|
|
173 | fi |
|
|
174 | |
|
|
175 | # Bug 178652 |
|
|
176 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
177 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
178 | append-flags -fno-gcse |
|
|
179 | fi |
|
|
180 | |
|
|
181 | # Unsupported old gcc versions - hardened needs this :( |
|
|
182 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
183 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
184 | append-cxxflags -fno-stack-protector |
|
|
185 | # Bug 253127 |
|
|
186 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
187 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
188 | fi |
|
|
189 | |
|
|
190 | # Bug 172219 |
|
|
191 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
192 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
193 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
194 | -e "s:X11R6/::" \ |
|
|
195 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
196 | |
|
|
197 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
198 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
199 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
200 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
201 | |
|
|
202 | base_src_prepare |
|
|
203 | } |
|
|
204 | |
|
|
205 | # @FUNCTION: qt4-build_src_configure |
|
|
206 | # @DESCRIPTION: |
|
|
207 | # Default configure phase |
|
|
208 | qt4-build_src_configure() { |
|
|
209 | setqtenv |
|
|
210 | myconf="$(standard_configure_options) ${myconf}" |
|
|
211 | |
|
|
212 | echo ./configure ${myconf} |
|
|
213 | ./configure ${myconf} || die "./configure failed" |
|
|
214 | myconf="" |
|
|
215 | } |
|
|
216 | |
|
|
217 | # @FUNCTION: qt4-build_src_compile |
|
|
218 | # @DESCRIPTION: Actual compile phase |
|
|
219 | qt4-build_src_compile() { |
|
|
220 | setqtenv |
|
|
221 | # Be backwards compatible for now |
|
|
222 | if [[ $EAPI != 2 ]]; then |
|
|
223 | qt4-build_src_configure |
|
|
224 | fi |
|
|
225 | |
|
|
226 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
227 | } |
|
|
228 | |
|
|
229 | # @FUNCTION: qt4-build_src_install |
|
|
230 | # @DESCRIPTION: |
|
|
231 | # Perform the actual installation including some library fixes. |
|
|
232 | qt4-build_src_install() { |
|
|
233 | setqtenv |
|
|
234 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
235 | install_qconfigs |
|
|
236 | fix_library_files |
|
|
237 | } |
|
|
238 | |
|
|
239 | # @FUNCTION: setqtenv |
|
|
240 | setqtenv() { |
| 47 | # Set up installation directories |
241 | # Set up installation directories |
| 48 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
242 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 49 | QTPREFIXDIR=/usr |
243 | QTPREFIXDIR=/usr |
| 50 | QTBINDIR=/usr/bin |
244 | QTBINDIR=/usr/bin |
| 51 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
245 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
246 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 52 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
247 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
| 53 | QTDATADIR=/usr/share/qt4 |
248 | QTDATADIR=/usr/share/qt4 |
| 54 | QTDOCDIR=/usr/share/doc/qt-${PV} |
249 | QTDOCDIR=/usr/share/doc/qt-${PV} |
| 55 | QTHEADERDIR=/usr/include/qt4 |
250 | QTHEADERDIR=/usr/include/qt4 |
| 56 | QTPLUGINDIR=${QTLIBDIR}/plugins |
251 | QTPLUGINDIR=${QTLIBDIR}/plugins |
| 57 | QTSYSCONFDIR=/etc/qt4 |
252 | QTSYSCONFDIR=/etc/qt4 |
| 58 | QTTRANSDIR=${QTDATADIR}/translations |
253 | QTTRANSDIR=${QTDATADIR}/translations |
| 59 | QTEXAMPLESDIR=${QTDATADIR}/examples |
254 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 60 | QTDEMOSDIR=${QTDATADIR}/demos |
255 | QTDEMOSDIR=${QTDATADIR}/demos |
| 61 | |
256 | QT_INSTALL_PREFIX=/usr/$(get_libdir)/qt4 |
| 62 | PLATFORM=$(qt_mkspecs_dir) |
257 | PLATFORM=$(qt_mkspecs_dir) |
| 63 | |
258 | |
| 64 | PATH="${S}/bin:${PATH}" |
259 | unset QMAKESPEC |
| 65 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
|
|
| 66 | } |
260 | } |
| 67 | |
261 | |
| 68 | qt4_unpack() { |
262 | # @FUNCTION: standard_configure_options |
| 69 | local target targets |
263 | # @DESCRIPTION: |
| 70 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
264 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 71 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
265 | # 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.2|4.4.1|4.4.0|4.4.0_rc*) |
|
|
| 81 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 82 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 83 | ;; |
|
|
| 84 | esac |
|
|
| 85 | } |
|
|
| 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 | # Bug 253127 |
|
|
| 97 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
| 98 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
|
|
| 99 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
| 100 | fi |
|
|
| 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 | -e "s:X11R6/::" \ |
|
|
| 106 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 107 | |
|
|
| 108 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 109 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 110 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 111 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
|
|
| 112 | } |
|
|
| 113 | |
|
|
| 114 | qt4-build_src_compile() { |
|
|
| 115 | # Don't let the user go too overboard with flags. If you really want to, uncomment |
|
|
| 116 | # out the line below and give 'er a whirl. |
|
|
| 117 | strip-flags |
|
|
| 118 | replace-flags -O3 -O2 |
|
|
| 119 | |
|
|
| 120 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
|
|
| 121 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
|
|
| 122 | append-cxxflags -fno-stack-protector |
|
|
| 123 | fi |
|
|
| 124 | |
|
|
| 125 | # Bug 178652 |
|
|
| 126 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
|
|
| 127 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
|
|
| 128 | append-flags -fno-gcse |
|
|
| 129 | fi |
|
|
| 130 | |
|
|
| 131 | myconf="$(standard_configure_options) ${myconf}" |
|
|
| 132 | |
|
|
| 133 | echo ./configure ${myconf} |
|
|
| 134 | ./configure ${myconf} || die "./configure failed" |
|
|
| 135 | |
|
|
| 136 | build_target_directories |
|
|
| 137 | } |
|
|
| 138 | |
|
|
| 139 | qt4-build_src_install() { |
|
|
| 140 | install_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 141 | install_qconfigs |
|
|
| 142 | fix_library_files |
|
|
| 143 | } |
|
|
| 144 | |
|
|
| 145 | standard_configure_options() { |
266 | standard_configure_options() { |
| 146 | local myconf="" |
267 | local myconf="" |
| 147 | |
268 | |
| 148 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
269 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 149 | |
270 | |
| … | |
… | |
| 163 | myconf="${myconf} -debug -no-separate-debug-info" |
284 | myconf="${myconf} -debug -no-separate-debug-info" |
| 164 | else |
285 | else |
| 165 | myconf="${myconf} -release -no-separate-debug-info" |
286 | myconf="${myconf} -release -no-separate-debug-info" |
| 166 | fi |
287 | fi |
| 167 | |
288 | |
| 168 | # ARCH is set on Gentoo. QT now falls back to generic on an unsupported |
289 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 169 | # ${ARCH}. Therefore we convert it to supported values. |
290 | # $(tc-arch). Therefore we convert it to supported values. |
| 170 | case "${ARCH}" in |
291 | case "$(tc-arch)" in |
| 171 | amd64) myconf="${myconf} -arch x86_64" ;; |
292 | amd64) myconf="${myconf} -arch x86_64" ;; |
| 172 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
293 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
| 173 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
294 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
| 174 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
295 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 175 | hppa|sh) myconf="${myconf} -arch generic" ;; |
296 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 176 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
297 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 177 | esac |
298 | esac |
| 178 | |
299 | |
| 179 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
300 | myconf="${myconf} -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license -no-rpath |
| 180 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
301 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 181 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
302 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 182 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
303 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 183 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
304 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 184 | -demosdir ${QTDEMOSDIR} -silent -fast -reduce-relocations |
305 | -demosdir ${QTDEMOSDIR} -silent -fast |
|
|
306 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
| 185 | -nomake examples -nomake demos" |
307 | -reduce-relocations -nomake examples -nomake demos" |
|
|
308 | |
|
|
309 | # Make eclass 4.5.x ready |
|
|
310 | case "${MY_PV}" in |
|
|
311 | 4.5.?) |
|
|
312 | myconf="${myconf} -opensource" |
|
|
313 | ;; |
|
|
314 | esac |
| 186 | |
315 | |
| 187 | echo "${myconf}" |
316 | echo "${myconf}" |
| 188 | } |
317 | } |
| 189 | |
318 | |
| 190 | build_target_directories() { |
319 | # @FUNCTION: build_directories |
| 191 | build_directories "${QT4_TARGET_DIRECTORIES}" |
320 | # @USAGE: < directories > |
| 192 | } |
321 | # @DESCRIPTION: |
| 193 | |
322 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 194 | build_directories() { |
323 | build_directories() { |
| 195 | local dirs="$@" |
324 | local dirs="$@" |
| 196 | for x in ${dirs}; do |
325 | for x in ${dirs}; do |
| 197 | cd "${S}"/${x} |
326 | cd "${S}"/${x} |
|
|
327 | sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:/usr/$(get_libdir)/qt4:g" $(find "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/linux.conf || die |
| 198 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
328 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 199 | emake || die "emake failed" |
329 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
|
|
330 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
|
|
331 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
| 200 | done |
332 | done |
| 201 | } |
333 | } |
| 202 | |
334 | |
|
|
335 | # @FUNCTION: install_directories |
|
|
336 | # @USAGE: < directories > |
|
|
337 | # @DESCRIPTION: |
|
|
338 | # run emake install in the given directories, which are separated by spaces |
| 203 | install_directories() { |
339 | install_directories() { |
| 204 | local dirs="$@" |
340 | local dirs="$@" |
| 205 | for x in ${dirs}; do |
341 | for x in ${dirs}; do |
| 206 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
342 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 207 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
343 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 222 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
358 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 223 | # @DESCRIPTION: |
359 | # @DESCRIPTION: |
| 224 | # List variables that should be defined at the top of QtCore/qconfig.h |
360 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 225 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
361 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 226 | |
362 | |
|
|
363 | # @FUNCTION: install_qconfigs |
|
|
364 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 227 | install_qconfigs() { |
365 | install_qconfigs() { |
| 228 | local x |
366 | local x |
| 229 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
367 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 230 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
368 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 231 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
369 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 241 | insinto ${QTHEADERDIR}/Gentoo |
379 | insinto ${QTHEADERDIR}/Gentoo |
| 242 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
380 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 243 | fi |
381 | fi |
| 244 | } |
382 | } |
| 245 | |
383 | |
| 246 | # Stubs for functions used by the Qt 4.4.0_technical_preview_1. |
384 | # @FUNCTION: generate_qconfigs |
| 247 | qconfig_add_option() { : ; } |
385 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 248 | qconfig_remove_option() { : ; } |
|
|
| 249 | |
|
|
| 250 | generate_qconfigs() { |
386 | generate_qconfigs() { |
| 251 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
387 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 252 | local x qconfig_add qconfig_remove qconfig_new |
388 | local x qconfig_add qconfig_remove qconfig_new |
| 253 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
389 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 254 | [[ -f ${x} ]] || continue |
390 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 301 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
437 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 302 | fi |
438 | fi |
| 303 | fi |
439 | fi |
| 304 | } |
440 | } |
| 305 | |
441 | |
|
|
442 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
443 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 306 | qt4-build_pkg_postrm() { |
444 | qt4-build_pkg_postrm() { |
| 307 | generate_qconfigs |
445 | generate_qconfigs |
| 308 | } |
446 | } |
| 309 | |
447 | |
|
|
448 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
449 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
450 | # breakages and proposed solutions. |
| 310 | qt4-build_pkg_postinst() { |
451 | qt4-build_pkg_postinst() { |
| 311 | generate_qconfigs |
452 | generate_qconfigs |
| 312 | echo |
453 | echo |
| 313 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
454 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
| 314 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
455 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
| … | |
… | |
| 319 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
460 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
| 320 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
461 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
| 321 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
462 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
| 322 | ewarn "configuration." |
463 | ewarn "configuration." |
| 323 | ewarn |
464 | ewarn |
| 324 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
465 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
| 325 | echo |
466 | echo |
| 326 | } |
467 | } |
| 327 | |
468 | |
|
|
469 | # @FUNCTION: skip_qmake_build_patch |
|
|
470 | # @DESCRIPTION: |
|
|
471 | # Don't need to build qmake, as it's already installed from qt-core |
| 328 | skip_qmake_build_patch() { |
472 | skip_qmake_build_patch() { |
| 329 | # Don't need to build qmake, as it's already installed from qt-core |
473 | # Don't need to build qmake, as it's already installed from qt-core |
| 330 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
474 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 331 | } |
475 | } |
| 332 | |
476 | |
|
|
477 | # @FUNCTION: skip_project_generation_patch |
|
|
478 | # @DESCRIPTION: |
|
|
479 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 333 | skip_project_generation_patch() { |
480 | skip_project_generation_patch() { |
| 334 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
481 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 335 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
482 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 336 | -i "${S}"/configure || die "Sed failed" |
483 | -i "${S}"/configure || die "Sed failed" |
| 337 | } |
484 | } |
| 338 | |
485 | |
|
|
486 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
487 | # @DESCRIPTION: |
|
|
488 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
489 | # time |
| 339 | symlink_binaries_to_buildtree() { |
490 | symlink_binaries_to_buildtree() { |
| 340 | for bin in qmake moc uic rcc; do |
491 | for bin in qmake moc uic rcc; do |
| 341 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
492 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 342 | done |
493 | done |
| 343 | } |
494 | } |
| 344 | |
495 | |
|
|
496 | # @FUNCTION: fix_library_files |
|
|
497 | # @DESCRIPTION: |
|
|
498 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
499 | # moves the *.pc-files into the pkgconfig directory |
| 345 | fix_library_files() { |
500 | fix_library_files() { |
| 346 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
501 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 347 | if [[ -e ${libfile} ]]; then |
502 | if [[ -e ${libfile} ]]; then |
| 348 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
503 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 349 | fi |
504 | fi |
| … | |
… | |
| 353 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
508 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 354 | if [[ -e ${libfile} ]]; then |
509 | if [[ -e ${libfile} ]]; then |
| 355 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
510 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 356 | |
511 | |
| 357 | # Move .pc files into the pkgconfig directory |
512 | # Move .pc files into the pkgconfig directory |
| 358 | |
|
|
| 359 | dodir ${QTPCDIR} |
513 | dodir ${QTPCDIR} |
| 360 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
514 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 361 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
515 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 362 | fi |
516 | fi |
| 363 | done |
517 | done |
| 364 | |
518 | |
| 365 | # Don't install an empty directory |
519 | # Don't install an empty directory |
| 366 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
520 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 367 | } |
521 | } |
| 368 | |
522 | |
|
|
523 | # @FUNCTION: qt_use |
|
|
524 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
525 | # @DESCRIPTION: |
|
|
526 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
527 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
528 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
529 | # assignment-part |
| 369 | qt_use() { |
530 | qt_use() { |
| 370 | local flag="${1}" |
531 | local flag="${1}" |
| 371 | local feature="${1}" |
532 | local feature="${1}" |
| 372 | local enableval= |
533 | local enableval= |
| 373 | |
534 | |
| … | |
… | |
| 395 | # } |
556 | # } |
| 396 | # @CODE |
557 | # @CODE |
| 397 | |
558 | |
| 398 | # Run built_with_use on each flag and print appropriate error messages if any |
559 | # Run built_with_use on each flag and print appropriate error messages if any |
| 399 | # flags are missing |
560 | # flags are missing |
|
|
561 | |
| 400 | _qt_built_with_use() { |
562 | _qt_built_with_use() { |
| 401 | local missing opt pkg flag flags |
563 | local missing opt pkg flag flags |
| 402 | |
564 | |
| 403 | if [[ ${1} = "--missing" ]]; then |
565 | if [[ ${1} = "--missing" ]]; then |
| 404 | missing="${1} ${2}" && shift 2 |
566 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 448 | eerror "Flags marked with an * are missing." |
610 | eerror "Flags marked with an * are missing." |
| 449 | die "Missing USE flags found" |
611 | die "Missing USE flags found" |
| 450 | fi |
612 | fi |
| 451 | } |
613 | } |
| 452 | |
614 | |
|
|
615 | # @FUNCTION: qt_mkspecs_dir |
|
|
616 | # @RETURN: the specs-directory w/o path |
|
|
617 | # @DESCRIPTION: |
|
|
618 | # Allows us to define which mkspecs dir we want to use. |
| 453 | qt_mkspecs_dir() { |
619 | qt_mkspecs_dir() { |
| 454 | # Allows us to define which mkspecs dir we want to use. |
620 | # Allows us to define which mkspecs dir we want to use. |
| 455 | local spec |
621 | local spec |
| 456 | |
622 | |
| 457 | case ${CHOST} in |
623 | case ${CHOST} in |
| … | |
… | |
| 475 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
641 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
| 476 | spec="${spec}-icc" |
642 | spec="${spec}-icc" |
| 477 | else |
643 | else |
| 478 | die "Unknown compiler ${CXX}." |
644 | die "Unknown compiler ${CXX}." |
| 479 | fi |
645 | fi |
|
|
646 | if [[ -n "${LIBDIR/lib}" ]]; then |
|
|
647 | spec="${spec}-${LIBDIR/lib}" |
|
|
648 | fi |
| 480 | |
649 | |
| 481 | echo "${spec}" |
650 | echo "${spec}" |
| 482 | } |
651 | } |
| 483 | |
652 | |
|
|
653 | case ${EAPI:-0} in |
| 484 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst |
654 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
655 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
656 | esac |