| 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.34 2009/05/22 22:21:38 hwoarang 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 eutils multilib toolchain-funcs flag-o-matic versionator |
| 13 | |
15 | |
| 14 | IUSE="${IUSE} debug pch" |
16 | IUSE="${IUSE} custom-cxxflags debug pch" |
| 15 | |
17 | |
| 16 | case "${PV}" in |
18 | 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*) |
19 | 4.?.?_rc*) |
| 22 | SRCTYPE="${SRCTYPE:-opensource-src}" |
20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 23 | MY_PV="${PV/_rc/-rc}" |
21 | MY_PV="${PV/_rc/-rc}" |
| 24 | ;; |
22 | ;; |
| 25 | *) |
23 | *) |
| 26 | SRCTYPE="${SRCTYPE:-opensource-src}" |
24 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| … | |
… | |
| 28 | ;; |
26 | ;; |
| 29 | esac |
27 | esac |
| 30 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
28 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
| 31 | S=${WORKDIR}/${MY_P} |
29 | S=${WORKDIR}/${MY_P} |
| 32 | |
30 | |
|
|
31 | HOMEPAGE="http://www.qtsoftware.com/" |
| 33 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
32 | SRC_URI="http://download.qtsoftware.com/qt/source/${MY_P}.tar.bz2" |
| 34 | |
33 | |
| 35 | case "${PV}" in |
34 | 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" |
35 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
| 38 | ;; |
36 | *) ;; |
| 39 | *) |
|
|
| 40 | ;; |
|
|
| 41 | esac |
37 | esac |
| 42 | |
38 | |
|
|
39 | if version_is_at_least 4.5 ${PV} ; then |
|
|
40 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
41 | fi |
|
|
42 | |
|
|
43 | # @FUNCTION: qt4-build_pkg_setup |
|
|
44 | # @DESCRIPTION: |
|
|
45 | # Sets up installation directories, PLATFORM, PATH, and LD_LIBRARY_PATH |
| 43 | qt4-build_pkg_setup() { |
46 | qt4-build_pkg_setup() { |
|
|
47 | # EAPI=2 ebuilds set use-deps, others need this: |
|
|
48 | if [[ $EAPI != 2 ]]; then |
|
|
49 | # Make sure debug setting corresponds with qt-core (bug 258512) |
|
|
50 | if [[ $PN != "qt-core" ]]; then |
|
|
51 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
52 | ~x11-libs/qt-core-${PV} debug" |
|
|
53 | fi |
|
|
54 | |
| 44 | # Check USE requirements |
55 | # Check USE requirements |
| 45 | qt4-build_check_use |
56 | qt4-build_check_use |
| 46 | |
57 | fi |
| 47 | # Set up installation directories |
58 | # Set up installation directories |
| 48 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
59 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 49 | QTPREFIXDIR=/usr |
60 | QTPREFIXDIR=/usr |
| 50 | QTBINDIR=/usr/bin |
61 | QTBINDIR=/usr/bin |
| 51 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
62 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
| … | |
… | |
| 61 | |
72 | |
| 62 | PLATFORM=$(qt_mkspecs_dir) |
73 | PLATFORM=$(qt_mkspecs_dir) |
| 63 | |
74 | |
| 64 | PATH="${S}/bin:${PATH}" |
75 | PATH="${S}/bin:${PATH}" |
| 65 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
76 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
| 66 | } |
|
|
| 67 | |
77 | |
| 68 | qt4_unpack() { |
78 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
79 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
80 | echo |
|
|
81 | ebeep 3 |
|
|
82 | fi |
|
|
83 | |
|
|
84 | if use custom-cxxflags; then |
|
|
85 | echo |
|
|
86 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
87 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
88 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
89 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
90 | ewarn "for breakfast. ;-) " |
|
|
91 | echo |
|
|
92 | fi |
|
|
93 | |
|
|
94 | } |
|
|
95 | |
|
|
96 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
97 | # @DESCRIPTION: |
|
|
98 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
99 | # code should be compiled. This is a space-separated list |
|
|
100 | |
|
|
101 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
102 | # @DESCRIPTION: |
|
|
103 | # Space separated list including the directories that will be extracted from Qt |
|
|
104 | # tarball |
|
|
105 | |
|
|
106 | # @FUNCTION: qt4-build_src_unpack |
|
|
107 | # @DESCRIPTION: |
|
|
108 | # Unpacks the sources |
|
|
109 | qt4-build_src_unpack() { |
| 69 | local target targets |
110 | local target targets licenses |
|
|
111 | if version_is_at_least 4.5 ${PV} ; then |
|
|
112 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
113 | else |
|
|
114 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
115 | fi |
| 70 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
116 | for target in configure ${licenses} projects.pro \ |
| 71 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
117 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 72 | ${QT4_EXTRACT_DIRECTORIES}; do |
118 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 73 | targets="${targets} ${MY_P}/${target}" |
119 | targets="${targets} ${MY_P}/${target}" |
| 74 | done |
120 | done |
| 75 | |
121 | |
| 76 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
122 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
| 77 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
123 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
| 78 | |
124 | |
| 79 | case "${PV}" in |
125 | case "${PV}" in |
| 80 | 4.4.1|4.4.0|4.4.0_rc*) |
126 | 4.4.?) |
| 81 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
127 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
| 82 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
128 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
| 83 | ;; |
129 | ;; |
| 84 | esac |
130 | esac |
| 85 | } |
|
|
| 86 | |
131 | |
|
|
132 | # Be backwards compatible for now |
|
|
133 | if [[ $EAPI != 2 ]]; then |
|
|
134 | qt4-build_src_prepare |
|
|
135 | fi |
|
|
136 | } |
|
|
137 | |
|
|
138 | |
|
|
139 | # @FUNCTION: qt4-build_src_prepare |
|
|
140 | # @DESCRIPTION: |
|
|
141 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
142 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 87 | qt4-build_src_unpack() { |
143 | qt4-build_src_prepare() { |
| 88 | qt4_unpack |
144 | cd "${S}" |
|
|
145 | |
| 89 | if [[ ${PN} != qt-core ]]; then |
146 | if [[ ${PN} != qt-core ]]; then |
| 90 | cd "${S}" |
|
|
| 91 | skip_qmake_build_patch |
147 | skip_qmake_build_patch |
| 92 | skip_project_generation_patch |
148 | skip_project_generation_patch |
| 93 | symlink_binaries_to_buildtree |
149 | symlink_binaries_to_buildtree |
| 94 | fi |
150 | fi |
| 95 | |
151 | |
|
|
152 | if ! use custom-cxxflags;then |
|
|
153 | # Don't let the user go too overboard with flags. |
|
|
154 | strip-flags |
|
|
155 | replace-flags -O3 -O2 |
|
|
156 | fi |
|
|
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 172219 |
| 96 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
174 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 97 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
175 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 98 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
176 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 99 | -e "s:X11R6/::" \ |
177 | -e "s:X11R6/::" \ |
| 100 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
178 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 101 | |
179 | |
| 102 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
180 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 103 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
181 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 104 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
182 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 105 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
183 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 106 | } |
|
|
| 107 | |
184 | |
|
|
185 | } |
|
|
186 | |
|
|
187 | # @FUNCTION: qt4-build_src_configure |
|
|
188 | # @DESCRIPTION: |
|
|
189 | # Default configure phase |
| 108 | qt4-build_src_compile() { |
190 | qt4-build_src_configure() { |
| 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 | |
191 | |
| 125 | myconf="$(standard_configure_options) ${myconf}" |
192 | myconf="$(standard_configure_options) ${myconf}" |
| 126 | |
193 | |
| 127 | echo ./configure ${myconf} |
194 | echo ./configure ${myconf} |
| 128 | ./configure ${myconf} || die "./configure failed" |
195 | ./configure ${myconf} || die "./configure failed" |
| 129 | |
|
|
| 130 | build_target_directories |
|
|
| 131 | } |
196 | } |
| 132 | |
197 | |
|
|
198 | # @FUNCTION: qt4-build_src_compile |
|
|
199 | # @DESCRIPTION: Actual compile phase |
|
|
200 | qt4-build_src_compile() { |
|
|
201 | # Be backwards compatible for now |
|
|
202 | if [[ $EAPI != 2 ]]; then |
|
|
203 | qt4-build_src_configure |
|
|
204 | fi |
|
|
205 | |
|
|
206 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
207 | } |
|
|
208 | |
|
|
209 | # @FUNCTION: qt4-build_src_install |
|
|
210 | # @DESCRIPTION: |
|
|
211 | # Perform the actual installation including some library fixes. |
| 133 | qt4-build_src_install() { |
212 | qt4-build_src_install() { |
| 134 | install_directories "${QT4_TARGET_DIRECTORIES}" |
213 | install_directories "${QT4_TARGET_DIRECTORIES}" |
| 135 | install_qconfigs |
214 | install_qconfigs |
| 136 | fix_library_files |
215 | fix_library_files |
| 137 | } |
216 | } |
| 138 | |
217 | |
|
|
218 | # @FUNCTION: standard_configure_options |
|
|
219 | # @DESCRIPTION: |
|
|
220 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
221 | # debug info is wanted or not. |
| 139 | standard_configure_options() { |
222 | standard_configure_options() { |
| 140 | local myconf="" |
223 | local myconf="" |
| 141 | |
224 | |
| 142 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
225 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
| 143 | |
226 | |
| … | |
… | |
| 157 | myconf="${myconf} -debug -no-separate-debug-info" |
240 | myconf="${myconf} -debug -no-separate-debug-info" |
| 158 | else |
241 | else |
| 159 | myconf="${myconf} -release -no-separate-debug-info" |
242 | myconf="${myconf} -release -no-separate-debug-info" |
| 160 | fi |
243 | fi |
| 161 | |
244 | |
| 162 | # ARCH is set on Gentoo. QT now falls back to generic on an unsupported |
245 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 163 | # ${ARCH}. Therefore we convert it to supported values. |
246 | # $(tc-arch). Therefore we convert it to supported values. |
| 164 | case "${ARCH}" in |
247 | case "$(tc-arch)" in |
| 165 | amd64) myconf="${myconf} -arch x86_64" ;; |
248 | amd64) myconf="${myconf} -arch x86_64" ;; |
| 166 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
249 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
| 167 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
250 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
| 168 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; |
251 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
| 169 | hppa|sh) myconf="${myconf} -arch generic" ;; |
252 | hppa|sh) myconf="${myconf} -arch generic" ;; |
| 170 | *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |
253 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
|
|
254 | esac |
|
|
255 | |
|
|
256 | # Bug 261412 Qt configure detects archs by uname |
|
|
257 | case "$(tc-arch)" in |
|
|
258 | ppc) myconf="${myconf} -platform linux-g++-32";; |
| 171 | esac |
259 | esac |
| 172 | |
260 | |
| 173 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
261 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
| 174 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
262 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 175 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
263 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 176 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
264 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 177 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
265 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 178 | -demosdir ${QTDEMOSDIR} -silent -fast -reduce-relocations |
266 | -demosdir ${QTDEMOSDIR} -silent -fast |
|
|
267 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
| 179 | -nomake examples -nomake demos" |
268 | -reduce-relocations -nomake examples -nomake demos" |
|
|
269 | |
|
|
270 | # Make eclass 4.5.{1,2} ready |
|
|
271 | case "${MY_PV}" in |
|
|
272 | 4.5.1 | 4.5.2) |
|
|
273 | myconf="${myconf} -opensource" |
|
|
274 | ;; |
|
|
275 | esac |
|
|
276 | |
|
|
277 | # bug 270475 |
|
|
278 | case "${MY_PV}" in |
|
|
279 | 4.5.1 | 4.5.2) |
|
|
280 | myconf="${myconf} -platform $(qt_mkspecs_dir)" |
|
|
281 | ;; |
|
|
282 | esac |
| 180 | |
283 | |
| 181 | echo "${myconf}" |
284 | echo "${myconf}" |
| 182 | } |
285 | } |
| 183 | |
286 | |
| 184 | build_target_directories() { |
287 | # @FUNCTION: build_directories |
| 185 | build_directories "${QT4_TARGET_DIRECTORIES}" |
288 | # @USAGE: < directories > |
| 186 | } |
289 | # @DESCRIPTION: |
| 187 | |
290 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 188 | build_directories() { |
291 | build_directories() { |
| 189 | local dirs="$@" |
292 | local dirs="$@" |
| 190 | for x in ${dirs}; do |
293 | for x in ${dirs}; do |
| 191 | cd "${S}"/${x} |
294 | cd "${S}"/${x} |
| 192 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
295 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 193 | emake || die "emake failed" |
296 | emake || die "emake failed" |
| 194 | done |
297 | done |
| 195 | } |
298 | } |
| 196 | |
299 | |
|
|
300 | # @FUNCTION: install_directories |
|
|
301 | # @USAGE: < directories > |
|
|
302 | # @DESCRIPTION: |
|
|
303 | # run emake install in the given directories, which are separated by spaces |
| 197 | install_directories() { |
304 | install_directories() { |
| 198 | local dirs="$@" |
305 | local dirs="$@" |
| 199 | for x in ${dirs}; do |
306 | for x in ${dirs}; do |
| 200 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
307 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 201 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
308 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| … | |
… | |
| 216 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
323 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 217 | # @DESCRIPTION: |
324 | # @DESCRIPTION: |
| 218 | # List variables that should be defined at the top of QtCore/qconfig.h |
325 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 219 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
326 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
| 220 | |
327 | |
|
|
328 | # @FUNCTION: install_qconfigs |
|
|
329 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 221 | install_qconfigs() { |
330 | install_qconfigs() { |
| 222 | local x |
331 | local x |
| 223 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
332 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 224 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
333 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 225 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
334 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 235 | insinto ${QTHEADERDIR}/Gentoo |
344 | insinto ${QTHEADERDIR}/Gentoo |
| 236 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
345 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 237 | fi |
346 | fi |
| 238 | } |
347 | } |
| 239 | |
348 | |
| 240 | # Stubs for functions used by the Qt 4.4.0_technical_preview_1. |
349 | # @FUNCTION: generate_qconfigs |
| 241 | qconfig_add_option() { : ; } |
350 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 242 | qconfig_remove_option() { : ; } |
|
|
| 243 | |
|
|
| 244 | generate_qconfigs() { |
351 | generate_qconfigs() { |
| 245 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
352 | 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 |
353 | local x qconfig_add qconfig_remove qconfig_new |
| 247 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
354 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 248 | [[ -f ${x} ]] || continue |
355 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 295 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
402 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 296 | fi |
403 | fi |
| 297 | fi |
404 | fi |
| 298 | } |
405 | } |
| 299 | |
406 | |
|
|
407 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
408 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 300 | qt4-build_pkg_postrm() { |
409 | qt4-build_pkg_postrm() { |
| 301 | generate_qconfigs |
410 | generate_qconfigs |
| 302 | } |
411 | } |
| 303 | |
412 | |
|
|
413 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
414 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
415 | # breakages and proposed solutions. |
| 304 | qt4-build_pkg_postinst() { |
416 | qt4-build_pkg_postinst() { |
| 305 | generate_qconfigs |
417 | generate_qconfigs |
|
|
418 | echo |
|
|
419 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
|
|
420 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
|
|
421 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
|
|
422 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
|
|
423 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
|
|
424 | ewarn |
|
|
425 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
|
|
426 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
|
|
427 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
|
|
428 | ewarn "configuration." |
|
|
429 | ewarn |
|
|
430 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
|
|
431 | echo |
| 306 | } |
432 | } |
| 307 | |
433 | |
|
|
434 | # @FUNCTION: skip_qmake_build_patch |
|
|
435 | # @DESCRIPTION: |
|
|
436 | # Don't need to build qmake, as it's already installed from qt-core |
| 308 | skip_qmake_build_patch() { |
437 | skip_qmake_build_patch() { |
| 309 | # Don't need to build qmake, as it's already installed from qt-core |
438 | # 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" |
439 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 311 | } |
440 | } |
| 312 | |
441 | |
|
|
442 | # @FUNCTION: skip_project_generation_patch |
|
|
443 | # @DESCRIPTION: |
|
|
444 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 313 | skip_project_generation_patch() { |
445 | skip_project_generation_patch() { |
| 314 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
446 | # 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" \ |
447 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 316 | -i "${S}"/configure || die "Sed failed" |
448 | -i "${S}"/configure || die "Sed failed" |
| 317 | } |
449 | } |
| 318 | |
450 | |
|
|
451 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
452 | # @DESCRIPTION: |
|
|
453 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
454 | # time |
| 319 | symlink_binaries_to_buildtree() { |
455 | symlink_binaries_to_buildtree() { |
| 320 | for bin in qmake moc uic rcc; do |
456 | for bin in qmake moc uic rcc; do |
| 321 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
457 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 322 | done |
458 | done |
| 323 | } |
459 | } |
| 324 | |
460 | |
|
|
461 | # @FUNCTION: fix_library_files |
|
|
462 | # @DESCRIPTION: |
|
|
463 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
464 | # moves the *.pc-files into the pkgconfig directory |
| 325 | fix_library_files() { |
465 | fix_library_files() { |
| 326 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
466 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 327 | if [[ -e ${libfile} ]]; then |
467 | if [[ -e ${libfile} ]]; then |
| 328 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
468 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 329 | fi |
469 | fi |
| … | |
… | |
| 333 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
473 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 334 | if [[ -e ${libfile} ]]; then |
474 | if [[ -e ${libfile} ]]; then |
| 335 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
475 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 336 | |
476 | |
| 337 | # Move .pc files into the pkgconfig directory |
477 | # Move .pc files into the pkgconfig directory |
| 338 | |
|
|
| 339 | dodir ${QTPCDIR} |
478 | dodir ${QTPCDIR} |
| 340 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
479 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 341 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
480 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 342 | fi |
481 | fi |
| 343 | done |
482 | done |
| 344 | |
483 | |
| 345 | # Don't install an empty directory |
484 | # Don't install an empty directory |
| 346 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
485 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 347 | } |
486 | } |
| 348 | |
487 | |
|
|
488 | # @FUNCTION: qt_use |
|
|
489 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
490 | # @DESCRIPTION: |
|
|
491 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
492 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
493 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
494 | # assignment-part |
| 349 | qt_use() { |
495 | qt_use() { |
| 350 | local flag="${1}" |
496 | local flag="${1}" |
| 351 | local feature="${1}" |
497 | local feature="${1}" |
| 352 | local enableval= |
498 | local enableval= |
| 353 | |
499 | |
| … | |
… | |
| 375 | # } |
521 | # } |
| 376 | # @CODE |
522 | # @CODE |
| 377 | |
523 | |
| 378 | # Run built_with_use on each flag and print appropriate error messages if any |
524 | # Run built_with_use on each flag and print appropriate error messages if any |
| 379 | # flags are missing |
525 | # flags are missing |
|
|
526 | |
| 380 | _qt_built_with_use() { |
527 | _qt_built_with_use() { |
| 381 | local missing opt pkg flag flags |
528 | local missing opt pkg flag flags |
| 382 | |
529 | |
| 383 | if [[ ${1} = "--missing" ]]; then |
530 | if [[ ${1} = "--missing" ]]; then |
| 384 | missing="${1} ${2}" && shift 2 |
531 | missing="${1} ${2}" && shift 2 |
| … | |
… | |
| 428 | eerror "Flags marked with an * are missing." |
575 | eerror "Flags marked with an * are missing." |
| 429 | die "Missing USE flags found" |
576 | die "Missing USE flags found" |
| 430 | fi |
577 | fi |
| 431 | } |
578 | } |
| 432 | |
579 | |
|
|
580 | # @FUNCTION: qt_mkspecs_dir |
|
|
581 | # @RETURN: the specs-directory w/o path |
|
|
582 | # @DESCRIPTION: |
|
|
583 | # Allows us to define which mkspecs dir we want to use. |
| 433 | qt_mkspecs_dir() { |
584 | qt_mkspecs_dir() { |
| 434 | # Allows us to define which mkspecs dir we want to use. |
585 | # Allows us to define which mkspecs dir we want to use. |
| 435 | local spec |
586 | local spec |
| 436 | |
587 | |
| 437 | case ${CHOST} in |
588 | case ${CHOST} in |
| … | |
… | |
| 459 | fi |
610 | fi |
| 460 | |
611 | |
| 461 | echo "${spec}" |
612 | echo "${spec}" |
| 462 | } |
613 | } |
| 463 | |
614 | |
|
|
615 | case ${EAPI:-0} in |
| 464 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst |
616 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
617 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
618 | esac |