| 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.31 2009/03/28 02:29:24 gengor Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.68 2010/05/22 19:23:51 wired Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ben de Groot <yngwin@gentoo.org>, |
7 | # Ben de Groot <yngwin@gentoo.org>, |
| 8 | # Markos Chandras <hwoarang@gentoo.org>, |
8 | # Markos Chandras <hwoarang@gentoo.org>, |
| 9 | # Caleb Tennis <caleb@gentoo.org> |
9 | # Caleb Tennis <caleb@gentoo.org> |
|
|
10 | # Alex Alexander <wired@gentoo.org> |
| 10 | # @BLURB: Eclass for Qt4 split ebuilds. |
11 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 11 | # @DESCRIPTION: |
12 | # @DESCRIPTION: |
| 12 | # This eclass contains various functions that are used when building Qt4 |
13 | # This eclass contains various functions that are used when building Qt4 |
| 13 | |
14 | |
| 14 | inherit eutils multilib toolchain-funcs flag-o-matic versionator |
15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 15 | |
16 | |
| 16 | IUSE="${IUSE} custom-cxxflags debug pch" |
|
|
| 17 | |
|
|
| 18 | case "${PV}" in |
|
|
| 19 | 4.?.?_rc*) |
|
|
| 20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
|
|
| 21 | MY_PV="${PV/_rc/-rc}" |
17 | MY_PV=${PV/_/-} |
| 22 | ;; |
18 | if version_is_at_least 4.5.99999999; then |
| 23 | *) |
19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 24 | SRCTYPE="${SRCTYPE:-opensource-src}" |
20 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && IUSE="+exceptions" |
| 25 | MY_PV="${PV}" |
21 | else |
| 26 | ;; |
22 | MY_P=qt-x11-opensource-src-${MY_PV} |
| 27 | esac |
23 | fi |
| 28 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
24 | |
|
|
25 | HOMEPAGE="http://qt.nokia.com/" |
|
|
26 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
27 | |
|
|
28 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
29 | IUSE+=" debug pch aqua" |
|
|
30 | |
|
|
31 | RDEPEND=" |
|
|
32 | !<x11-libs/qt-assistant-${PV} |
|
|
33 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
34 | !<x11-libs/qt-core-${PV} |
|
|
35 | !>x11-libs/qt-core-${PV}-r9999 |
|
|
36 | !<x11-libs/qt-dbus-${PV} |
|
|
37 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
38 | !<x11-libs/qt-demo-${PV} |
|
|
39 | !>x11-libs/qt-demo-${PV}-r9999 |
|
|
40 | !<x11-libs/qt-gui-${PV} |
|
|
41 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
42 | !<x11-libs/qt-multimedia-${PV} |
|
|
43 | !>x11-libs/qt-multimedia-${PV}-r9999 |
|
|
44 | !<x11-libs/qt-opengl-${PV} |
|
|
45 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
46 | !<x11-libs/qt-phonon-${PV} |
|
|
47 | !>x11-libs/qt-phonon-${PV}-r9999 |
|
|
48 | !<x11-libs/qt-qt3support-${PV} |
|
|
49 | !>x11-libs/qt-qt3support-${PV}-r9999 |
|
|
50 | !<x11-libs/qt-script-${PV} |
|
|
51 | !>x11-libs/qt-script-${PV}-r9999 |
|
|
52 | !<x11-libs/qt-sql-${PV} |
|
|
53 | !>x11-libs/qt-sql-${PV}-r9999 |
|
|
54 | !<x11-libs/qt-svg-${PV} |
|
|
55 | !>x11-libs/qt-svg-${PV}-r9999 |
|
|
56 | !<x11-libs/qt-test-${PV} |
|
|
57 | !>x11-libs/qt-test-${PV}-r9999 |
|
|
58 | !<x11-libs/qt-webkit-${PV} |
|
|
59 | !>x11-libs/qt-webkit-${PV}-r9999 |
|
|
60 | !<x11-libs/qt-xmlpatterns-${PV} |
|
|
61 | !>x11-libs/qt-xmlpatterns-${PV}-r9999 |
|
|
62 | " |
|
|
63 | |
| 29 | S=${WORKDIR}/${MY_P} |
64 | S=${WORKDIR}/${MY_P} |
| 30 | |
65 | |
| 31 | HOMEPAGE="http://www.qtsoftware.com/" |
66 | # @FUNCTION: qt4-build_pkg_setup |
| 32 | SRC_URI="http://download.qtsoftware.com/qt/source/${MY_P}.tar.bz2" |
67 | # @DESCRIPTION: |
| 33 | |
68 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
| 34 | case "${PV}" in |
|
|
| 35 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
|
|
| 36 | *) ;; |
|
|
| 37 | esac |
|
|
| 38 | |
|
|
| 39 | if version_is_at_least 4.5 ${PV} ; then |
|
|
| 40 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
| 41 | fi |
|
|
| 42 | |
|
|
| 43 | qt4-build_pkg_setup() { |
69 | qt4-build_pkg_setup() { |
| 44 | # EAPI=2 ebuilds set use-deps, others need this: |
|
|
| 45 | if [[ $EAPI != 2 ]]; then |
|
|
| 46 | # Make sure debug setting corresponds with qt-core (bug 258512) |
|
|
| 47 | if [[ $PN != "qt-core" ]]; then |
70 | if [[ "${PN}" == "qt-webkit" ]]; then |
| 48 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
71 | if [[ "${CFLAGS}" =~ "-ggdb" ]] || [[ "${CXXFLAGS}" =~ "-ggdb" ]]; then |
| 49 | ~x11-libs/qt-core-${PV} debug" |
72 | echo |
|
|
73 | ewarn "Your \$C{,XX}FLAGS contain -ggdb. You may experience really" |
|
|
74 | ewarn "long compilation times and/or increased memory usage." |
|
|
75 | ewarn "If compilation fails, please try removing -ggdb before" |
|
|
76 | ewarn "reporting a bug." |
|
|
77 | ewarn "For more info check out bug #307861" |
|
|
78 | echo |
| 50 | fi |
79 | fi |
|
|
80 | fi |
| 51 | |
81 | |
| 52 | # Check USE requirements |
82 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 53 | qt4-build_check_use |
83 | |
|
|
84 | # Protect users by not allowing downgrades between releases |
|
|
85 | # Downgrading revisions within the same release should be allowed |
|
|
86 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
|
|
87 | if [[ -z $I_KNOW_WHAT_I_AM_DOING ]] ; then |
|
|
88 | eerror "Sanity check to keep you from breaking your system:" |
|
|
89 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
|
|
90 | die "aborting to save your system" |
|
|
91 | else |
|
|
92 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 54 | fi |
93 | fi |
|
|
94 | fi |
| 55 | |
95 | |
| 56 | # Set up installation directories |
|
|
| 57 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
|
|
| 58 | QTPREFIXDIR=/usr |
|
|
| 59 | QTBINDIR=/usr/bin |
|
|
| 60 | QTLIBDIR=/usr/$(get_libdir)/qt4 |
|
|
| 61 | QTPCDIR=/usr/$(get_libdir)/pkgconfig |
|
|
| 62 | QTDATADIR=/usr/share/qt4 |
|
|
| 63 | QTDOCDIR=/usr/share/doc/qt-${PV} |
|
|
| 64 | QTHEADERDIR=/usr/include/qt4 |
|
|
| 65 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
| 66 | QTSYSCONFDIR=/etc/qt4 |
|
|
| 67 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 68 | QTEXAMPLESDIR=${QTDATADIR}/examples |
|
|
| 69 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
| 70 | |
|
|
| 71 | PLATFORM=$(qt_mkspecs_dir) |
|
|
| 72 | |
|
|
| 73 | PATH="${S}/bin:${PATH}" |
96 | PATH="${S}/bin${PATH:+:}${PATH}" |
|
|
97 | if [[ ${CHOST} != *-darwin* ]]; then |
| 74 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
98 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
|
|
99 | else |
|
|
100 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
|
|
101 | # On MacOS we *need* at least src/gui/kernel/qapplication_mac.mm for |
|
|
102 | # platform detection. Note: needs to come before any directories to |
|
|
103 | # avoid extract failure. |
|
|
104 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
|
|
105 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
|
|
106 | ${QT4_EXTRACT_DIRECTORIES}" |
|
|
107 | fi |
| 75 | |
108 | |
|
|
109 | # Make sure ebuilds use the required EAPI |
|
|
110 | if [[ ${EAPI} != [23] ]]; then |
|
|
111 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
|
|
112 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
|
|
113 | eerror "fixed. Using qt4-build eclass without EAPI=2 or EAPI=3 will fail." |
|
|
114 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
|
|
115 | fi |
|
|
116 | |
| 76 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
117 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 77 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
118 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 78 | echo |
|
|
| 79 | ebeep 3 |
|
|
| 80 | fi |
119 | fi |
| 81 | |
|
|
| 82 | if use custom-cxxflags; then |
|
|
| 83 | echo |
|
|
| 84 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
| 85 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
| 86 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
| 87 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
| 88 | ewarn "for breakfast. ;-) " |
|
|
| 89 | echo |
|
|
| 90 | fi |
|
|
| 91 | |
|
|
| 92 | } |
120 | } |
| 93 | |
121 | |
|
|
122 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Arguments for build_target_directories. Takes the directories, in which the |
|
|
125 | # code should be compiled. This is a space-separated list |
|
|
126 | |
|
|
127 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
|
|
128 | # @DESCRIPTION: |
|
|
129 | # Space separated list including the directories that will be extracted from Qt |
|
|
130 | # tarball |
|
|
131 | |
|
|
132 | # @FUNCTION: qt4-build_src_unpack |
|
|
133 | # @DESCRIPTION: |
|
|
134 | # Unpacks the sources |
| 94 | qt4-build_src_unpack() { |
135 | qt4-build_src_unpack() { |
|
|
136 | setqtenv |
| 95 | local target targets licenses |
137 | local target targets= |
| 96 | if version_is_at_least 4.5 ${PV} ; then |
138 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 97 | licenses="LICENSE.GPL3 LICENSE.LGPL" |
|
|
| 98 | else |
|
|
| 99 | licenses="LICENSE.GPL2 LICENSE.GPL3" |
|
|
| 100 | fi |
|
|
| 101 | for target in configure ${licenses} projects.pro \ |
|
|
| 102 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
139 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 103 | ${QT4_EXTRACT_DIRECTORIES}; do |
140 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 104 | targets="${targets} ${MY_P}/${target}" |
141 | targets+=" ${MY_P}/${target}" |
| 105 | done |
142 | done |
| 106 | |
143 | |
| 107 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
144 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 108 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
145 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 109 | |
|
|
| 110 | case "${PV}" in |
|
|
| 111 | 4.4.?) |
|
|
| 112 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 113 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
|
|
| 114 | ;; |
|
|
| 115 | esac |
|
|
| 116 | |
|
|
| 117 | # Be backwards compatible for now |
|
|
| 118 | if [[ $EAPI != 2 ]]; then |
|
|
| 119 | qt4-build_src_prepare |
|
|
| 120 | fi |
|
|
| 121 | } |
146 | } |
| 122 | |
147 | |
|
|
148 | # @ECLASS-VARIABLE: PATCHES |
|
|
149 | # @DESCRIPTION: |
|
|
150 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
|
|
151 | # to specify the full path. This variable is necessary for src_prepare phase. |
|
|
152 | # example: |
|
|
153 | # PATCHES="${FILESDIR}"/mypatch.patch |
|
|
154 | # ${FILESDIR}"/mypatch2.patch" |
|
|
155 | # |
|
|
156 | |
|
|
157 | # @FUNCTION: qt4-build_src_prepare |
|
|
158 | # @DESCRIPTION: |
|
|
159 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
|
|
160 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 123 | qt4-build_src_prepare() { |
161 | qt4-build_src_prepare() { |
|
|
162 | setqtenv |
| 124 | cd "${S}" |
163 | cd "${S}" |
|
|
164 | |
|
|
165 | if use aqua; then |
|
|
166 | # provide a proper macx-g++-64 |
|
|
167 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
|
|
168 | |
|
|
169 | sed -e '/^CONFIG/s:app_bundle::' \ |
|
|
170 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
|
|
171 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed failed" |
|
|
172 | fi |
| 125 | |
173 | |
| 126 | if [[ ${PN} != qt-core ]]; then |
174 | if [[ ${PN} != qt-core ]]; then |
| 127 | skip_qmake_build_patch |
175 | skip_qmake_build_patch |
| 128 | skip_project_generation_patch |
176 | skip_project_generation_patch |
| 129 | symlink_binaries_to_buildtree |
177 | symlink_binaries_to_buildtree |
| 130 | fi |
178 | fi |
| 131 | |
179 | |
| 132 | if ! use custom-cxxflags;then |
180 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 133 | # Don't let the user go too overboard with flags. |
181 | # qmake bus errors with -O2 but -O3 works |
| 134 | strip-flags |
|
|
| 135 | replace-flags -O3 -O2 |
182 | replace-flags -O2 -O3 |
| 136 | fi |
183 | fi |
| 137 | |
184 | |
| 138 | # Bug 178652 |
185 | # Bug 178652 |
| 139 | if [[ "$(gcc-major-version)" == "3" ]] && use amd64; then |
186 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 140 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
187 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 141 | append-flags -fno-gcse |
188 | append-flags -fno-gcse |
| 142 | fi |
189 | fi |
| 143 | |
190 | |
| 144 | # Unsupported old gcc versions - hardened needs this :( |
191 | # Unsupported old gcc versions - hardened needs this :( |
| 145 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
192 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 146 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
193 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 147 | append-cxxflags -fno-stack-protector |
194 | append-cxxflags -fno-stack-protector |
| 148 | # Bug 253127 |
195 | # Bug 253127 |
| 149 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
196 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 150 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
197 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 151 | fi |
198 | fi |
| 152 | |
199 | |
|
|
200 | # Bug 261632 |
|
|
201 | if use ppc64; then |
|
|
202 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
|
|
203 | append-flags -mminimal-toc |
|
|
204 | fi |
|
|
205 | |
|
|
206 | # Bug 282984 && Bug 295530 |
|
|
207 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
|
|
208 | -i configure || die "sed qmake compilers failed" |
|
|
209 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX) LINK=$(tc-getCXX):" \ |
|
|
210 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
|
|
211 | |
| 153 | # Bug 172219 |
212 | # Bug 172219 |
| 154 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 155 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 156 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 157 | -e "s:X11R6/::" \ |
213 | sed -e "s:X11R6/::" \ |
| 158 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
214 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 159 | |
215 | |
|
|
216 | if [[ ${CHOST} == *-darwin* ]]; then |
|
|
217 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
|
|
218 | # crippled (by design) :/ |
| 160 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
219 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 161 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
220 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 162 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
221 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
|
|
222 | -e "s:-arch\s\w*::g" \ |
| 163 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
223 | -i mkspecs/common/mac-g++.conf || die "sed mkspecs/common/mac-g++.conf failed" |
| 164 | |
224 | |
| 165 | } |
225 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
|
|
226 | # fix arch handling (automagically duplicates our -arch arg and breaks |
|
|
227 | # pch). Additionally disable Xarch support. |
|
|
228 | sed \ |
|
|
229 | -e "s:-arch i386::" \ |
|
|
230 | -e "s:-arch ppc::" \ |
|
|
231 | -e "s:-arch x86_64::" \ |
|
|
232 | -e "s:-arch ppc64::" \ |
|
|
233 | -e "s:-arch \$i::" \ |
|
|
234 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
|
|
235 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
|
|
236 | -e "s:-Xarch_x86_64::g" \ |
|
|
237 | -e "s:-Xarch_ppc64::g" \ |
|
|
238 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
| 166 | |
239 | |
|
|
240 | # On Snow Leopard don't fall back to 10.5 deployment target. |
|
|
241 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
|
|
242 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
|
|
243 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
|
|
244 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
|
|
245 | fi |
|
|
246 | fi |
|
|
247 | |
|
|
248 | # this one is needed for all systems with a separate -liconv, apart from |
|
|
249 | # Darwin, for which the sources already cater for -liconv |
|
|
250 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
|
|
251 | sed \ |
|
|
252 | -e "s|mac:LIBS += -liconv|LIBS += -liconv|g" \ |
|
|
253 | -i config.tests/unix/iconv/iconv.pro \ |
|
|
254 | || die "sed on iconv.pro failed" |
|
|
255 | fi |
|
|
256 | |
|
|
257 | # we need some patches for Solaris |
|
|
258 | sed -i \ |
|
|
259 | -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,' \ |
|
|
260 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
261 | # use GCC over SunStudio |
|
|
262 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
|
|
263 | # don't flirt with non-Prefix stuff, we're quite possessive |
|
|
264 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
|
|
265 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
266 | |
|
|
267 | base_src_prepare |
|
|
268 | } |
|
|
269 | |
|
|
270 | # @FUNCTION: qt4-build_src_configure |
|
|
271 | # @DESCRIPTION: |
|
|
272 | # Default configure phase |
| 167 | qt4-build_src_configure() { |
273 | qt4-build_src_configure() { |
| 168 | |
274 | setqtenv |
| 169 | myconf="$(standard_configure_options) ${myconf}" |
275 | myconf="$(standard_configure_options) ${myconf}" |
|
|
276 | |
|
|
277 | # this one is needed for all systems with a separate -liconv, apart from |
|
|
278 | # Darwin, for which the sources already cater for -liconv |
|
|
279 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
|
|
280 | myconf+=" -liconv" |
|
|
281 | |
|
|
282 | if has glib ${IUSE//+} && use glib; then |
|
|
283 | # use -I, -L and -l from configure |
|
|
284 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
|
|
285 | # avoid the -pthread argument |
|
|
286 | myconf+=" ${glibflags//-pthread}" |
|
|
287 | unset glibflags |
|
|
288 | fi |
|
|
289 | |
|
|
290 | if use aqua ; then |
|
|
291 | # On (snow) leopard use the new (frameworked) cocoa code. |
|
|
292 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
|
|
293 | myconf+=" -cocoa -framework" |
|
|
294 | |
|
|
295 | # We are crazy and build cocoa + qt3support :-) |
|
|
296 | if use qt3support; then |
|
|
297 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
|
|
298 | -i configure |
|
|
299 | fi |
|
|
300 | |
|
|
301 | # We need the source's headers, not the installed ones. |
|
|
302 | myconf+=" -I${S}/include" |
|
|
303 | |
|
|
304 | # Add hint for the framework location. |
|
|
305 | myconf+=" -F${QTLIBDIR}" |
|
|
306 | fi |
|
|
307 | else |
|
|
308 | # freetype2 include dir is non-standard, thus include it on configure |
|
|
309 | # use -I from configure |
|
|
310 | myconf+=" $(pkg-config --cflags freetype2)" |
|
|
311 | fi |
| 170 | |
312 | |
| 171 | echo ./configure ${myconf} |
313 | echo ./configure ${myconf} |
| 172 | ./configure ${myconf} || die "./configure failed" |
314 | ./configure ${myconf} || die "./configure failed" |
|
|
315 | myconf="" |
| 173 | } |
316 | } |
| 174 | |
317 | |
|
|
318 | # @FUNCTION: qt4-build_src_compile |
|
|
319 | # @DESCRIPTION: Actual compile phase |
| 175 | qt4-build_src_compile() { |
320 | qt4-build_src_compile() { |
| 176 | # Be backwards compatible for now |
321 | setqtenv |
| 177 | if [[ $EAPI != 2 ]]; then |
|
|
| 178 | qt4-build_src_configure |
|
|
| 179 | fi |
|
|
| 180 | |
322 | |
| 181 | build_directories "${QT4_TARGET_DIRECTORIES}" |
323 | build_directories ${QT4_TARGET_DIRECTORIES} |
| 182 | } |
324 | } |
| 183 | |
325 | |
|
|
326 | # @FUNCTION: fix_includes |
|
|
327 | # @DESCRIPTION: |
|
|
328 | # For MacOSX we need to add some symlinks when frameworks are |
|
|
329 | # being used, to avoid complications with some more or less stupid packages. |
|
|
330 | fix_includes() { |
|
|
331 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
|
|
332 | # Some packages tend to include <Qt/...> |
|
|
333 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
|
|
334 | |
|
|
335 | # Fake normal headers when frameworks are installed... eases life later on |
|
|
336 | local dest f |
|
|
337 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
|
|
338 | [[ -e "${frw}"/Headers ]] || continue |
|
|
339 | f=$(basename ${frw}) |
|
|
340 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
|
|
341 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
|
|
342 | |
|
|
343 | # Link normal headers as well. |
|
|
344 | for hdr in "${D}/${QTLIBDIR}/${f}"/Headers/*; do |
|
|
345 | h=$(basename ${hdr}) |
|
|
346 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers/${h} "${QTHEADERDIR#${EPREFIX}}"/Qt/${h} |
|
|
347 | done |
|
|
348 | done |
|
|
349 | fi |
|
|
350 | } |
|
|
351 | |
|
|
352 | # @FUNCTION: qt4-build_src_install |
|
|
353 | # @DESCRIPTION: |
|
|
354 | # Perform the actual installation including some library fixes. |
| 184 | qt4-build_src_install() { |
355 | qt4-build_src_install() { |
|
|
356 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
|
|
357 | setqtenv |
| 185 | install_directories "${QT4_TARGET_DIRECTORIES}" |
358 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 186 | install_qconfigs |
359 | install_qconfigs |
| 187 | fix_library_files |
360 | fix_library_files |
|
|
361 | fix_includes |
| 188 | } |
362 | } |
| 189 | |
363 | |
|
|
364 | # @FUNCTION: setqtenv |
|
|
365 | setqtenv() { |
|
|
366 | # Set up installation directories |
|
|
367 | QTBASEDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
368 | QTPREFIXDIR=${EPREFIX}/usr |
|
|
369 | QTBINDIR=${EPREFIX}/usr/bin |
|
|
370 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
371 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
|
|
372 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
|
|
373 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
374 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
|
|
375 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
|
|
376 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
377 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
|
|
378 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
379 | QTEXAMPLESDIR=${QTDATADIR}/examples |
|
|
380 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
381 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
382 | PLATFORM=$(qt_mkspecs_dir) |
|
|
383 | |
|
|
384 | unset QMAKESPEC |
|
|
385 | } |
|
|
386 | |
|
|
387 | # @FUNCTION: standard_configure_options |
|
|
388 | # @DESCRIPTION: |
|
|
389 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
390 | # debug info is wanted or not. |
| 190 | standard_configure_options() { |
391 | standard_configure_options() { |
| 191 | local myconf="" |
392 | local myconf= |
| 192 | |
393 | |
| 193 | [[ $(get_libdir) != "lib" ]] && myconf="${myconf} -L/usr/$(get_libdir)" |
394 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 194 | |
395 | |
| 195 | # Disable visibility explicitly if gcc version isn't 4 |
396 | # Disable visibility explicitly if gcc version isn't 4 |
| 196 | if [[ "$(gcc-major-version)" -lt "4" ]]; then |
397 | if [[ $(gcc-major-version) -lt 4 ]]; then |
| 197 | myconf="${myconf} -no-reduce-exports" |
398 | myconf+=" -no-reduce-exports" |
| 198 | fi |
399 | fi |
| 199 | |
400 | |
| 200 | # precompiled headers doesn't work on hardened, where the flag is masked. |
401 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
402 | myconf+=" $(qt_use pch)" |
|
|
403 | |
| 201 | if use pch; then |
404 | if use debug; then |
| 202 | myconf="${myconf} -pch" |
405 | myconf+=" -debug" |
| 203 | else |
406 | else |
| 204 | myconf="${myconf} -no-pch" |
407 | myconf+=" -release" |
| 205 | fi |
408 | fi |
| 206 | |
|
|
| 207 | if use debug; then |
|
|
| 208 | myconf="${myconf} -debug -no-separate-debug-info" |
409 | myconf+=" -no-separate-debug-info" |
| 209 | else |
410 | |
| 210 | myconf="${myconf} -release -no-separate-debug-info" |
411 | use aqua && myconf+=" -no-framework" |
| 211 | fi |
|
|
| 212 | |
412 | |
| 213 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
413 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 214 | # $(tc-arch). Therefore we convert it to supported values. |
414 | # $(tc-arch). Therefore we convert it to supported values. |
| 215 | case "$(tc-arch)" in |
415 | case "$(tc-arch)" in |
| 216 | amd64) myconf="${myconf} -arch x86_64" ;; |
416 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
|
|
417 | ppc-macos) myconf+=" -arch ppc" ;; |
| 217 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
418 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
|
|
419 | sparc|sparc-*) myconf+=" -arch sparc" ;; |
|
|
420 | x86-macos) myconf+=" -arch x86" ;; |
| 218 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
421 | x86|x86-*) myconf+=" -arch i386" ;; |
| 219 | alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch $(tc-arch)" ;; |
422 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
| 220 | hppa|sh) myconf="${myconf} -arch generic" ;; |
423 | hppa|sh) myconf+=" -arch generic" ;; |
| 221 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
424 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 222 | esac |
425 | esac |
| 223 | |
426 | |
| 224 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
427 | # 4.5: build everything but qt-xmlpatterns w/o exceptions |
|
|
428 | # 4.6: exceptions USE flag |
|
|
429 | local exceptions="-exceptions" |
|
|
430 | case "${PV}" in |
|
|
431 | 4.5.*) |
|
|
432 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
433 | ;; |
|
|
434 | *) |
|
|
435 | has exceptions "${IUSE//+}" && exceptions="$(qt_use exceptions)" |
|
|
436 | ;; |
|
|
437 | esac |
|
|
438 | |
|
|
439 | # note about -reduce-relocations: |
|
|
440 | # That flag seems to introduce major breakage to applications, |
|
|
441 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
442 | # construct a QApplication before a QPaintDevice" on Solaris |
|
|
443 | # -- Daniel Vergien |
|
|
444 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
445 | |
|
|
446 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
| 225 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
447 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 226 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
448 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 227 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
449 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 228 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
450 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 229 | -demosdir ${QTDEMOSDIR} -silent -fast |
451 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
| 230 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
452 | ${exceptions} |
| 231 | -reduce-relocations -nomake examples -nomake demos" |
453 | -nomake examples -nomake demos" |
| 232 | |
454 | |
| 233 | echo "${myconf}" |
455 | echo "${myconf}" |
| 234 | } |
456 | } |
| 235 | |
457 | |
|
|
458 | # @FUNCTION: build_directories |
|
|
459 | # @USAGE: < directories > |
|
|
460 | # @DESCRIPTION: |
|
|
461 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 236 | build_directories() { |
462 | build_directories() { |
| 237 | local dirs="$@" |
|
|
| 238 | for x in ${dirs}; do |
463 | for x in "$@"; do |
| 239 | cd "${S}"/${x} |
464 | pushd "${S}"/${x} >/dev/null |
|
|
465 | # avoid running over the maximum argument number, bug #299810 |
|
|
466 | { |
|
|
467 | echo "${S}"/mkspecs/common/*.conf |
|
|
468 | find "${S}" -name '*.pr[io]' |
|
|
469 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
| 240 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
470 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 241 | emake || die "emake failed" |
471 | emake CC="$(tc-getCC)" \ |
|
|
472 | CXX="$(tc-getCXX)" \ |
|
|
473 | LINK="$(tc-getCXX)" || die "emake failed" |
|
|
474 | popd >/dev/null |
| 242 | done |
475 | done |
| 243 | } |
476 | } |
| 244 | |
477 | |
|
|
478 | # @FUNCTION: install_directories |
|
|
479 | # @USAGE: < directories > |
|
|
480 | # @DESCRIPTION: |
|
|
481 | # run emake install in the given directories, which are separated by spaces |
| 245 | install_directories() { |
482 | install_directories() { |
| 246 | local dirs="$@" |
|
|
| 247 | for x in ${dirs}; do |
483 | for x in "$@"; do |
| 248 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
484 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
| 249 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
485 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 250 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
486 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
| 251 | done |
487 | done |
| 252 | } |
488 | } |
| 253 | |
489 | |
| 254 | # @ECLASS-VARIABLE: QCONFIG_ADD |
490 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 255 | # @DESCRIPTION: |
491 | # @DESCRIPTION: |
| 256 | # List options that need to be added to QT_CONFIG in qconfig.pri |
492 | # List options that need to be added to QT_CONFIG in qconfig.pri |
| 257 | QCONFIG_ADD="${QCONFIG_ADD:-}" |
493 | : ${QCONFIG_ADD:=} |
| 258 | |
494 | |
| 259 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
495 | # @ECLASS-VARIABLE: QCONFIG_REMOVE |
| 260 | # @DESCRIPTION: |
496 | # @DESCRIPTION: |
| 261 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
497 | # List options that need to be removed from QT_CONFIG in qconfig.pri |
| 262 | QCONFIG_REMOVE="${QCONFIG_REMOVE:-}" |
498 | : ${QCONFIG_REMOVE:=} |
| 263 | |
499 | |
| 264 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
500 | # @ECLASS-VARIABLE: QCONFIG_DEFINE |
| 265 | # @DESCRIPTION: |
501 | # @DESCRIPTION: |
| 266 | # List variables that should be defined at the top of QtCore/qconfig.h |
502 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 267 | QCONFIG_DEFINE="${QCONFIG_DEFINE:-}" |
503 | : ${QCONFIG_DEFINE:=} |
| 268 | |
504 | |
|
|
505 | # @FUNCTION: install_qconfigs |
|
|
506 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
| 269 | install_qconfigs() { |
507 | install_qconfigs() { |
| 270 | local x |
508 | local x |
| 271 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
509 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 272 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
510 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 273 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
511 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| 274 | done |
512 | done |
| 275 | insinto ${QTDATADIR}/mkspecs/gentoo |
513 | insinto ${QTDATADIR#${EPREFIX}}/mkspecs/gentoo |
| 276 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
514 | doins "${T}"/${PN}-qconfig.pri || die "installing ${PN}-qconfig.pri failed" |
| 277 | fi |
515 | fi |
| 278 | |
516 | |
| 279 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
517 | if [[ -n ${QCONFIG_DEFINE} ]]; then |
| 280 | for x in ${QCONFIG_DEFINE}; do |
518 | for x in ${QCONFIG_DEFINE}; do |
| 281 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
519 | echo "#define ${x}" >> "${T}"/gentoo-${PN}-qconfig.h |
| 282 | done |
520 | done |
| 283 | insinto ${QTHEADERDIR}/Gentoo |
521 | insinto ${QTHEADERDIR#${EPREFIX}}/Gentoo |
| 284 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
522 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 285 | fi |
523 | fi |
| 286 | } |
524 | } |
| 287 | |
525 | |
|
|
526 | # @FUNCTION: generate_qconfigs |
|
|
527 | # @DESCRIPTION: Generates gentoo-specific configurations |
| 288 | generate_qconfigs() { |
528 | generate_qconfigs() { |
| 289 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
529 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 290 | local x qconfig_add qconfig_remove qconfig_new |
530 | local x qconfig_add qconfig_remove qconfig_new |
| 291 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
531 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 292 | [[ -f ${x} ]] || continue |
532 | [[ -f ${x} ]] || continue |
| 293 | qconfig_add="${qconfig_add} $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
533 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
| 294 | qconfig_remove="${qconfig_remove} $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
534 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
| 295 | done |
535 | done |
| 296 | |
536 | |
| 297 | # these error checks do not use die because dying in pkg_post{inst,rm} |
537 | # these error checks do not use die because dying in pkg_post{inst,rm} |
| 298 | # just makes things worse. |
538 | # just makes things worse. |
| 299 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
539 | if [[ -e "${ROOT}${QTDATADIR}"/mkspecs/gentoo/qconfig.pri ]]; then |
| … | |
… | |
| 306 | |
546 | |
| 307 | # generate list of QT_CONFIG entries from the existing list |
547 | # generate list of QT_CONFIG entries from the existing list |
| 308 | # including qconfig_add and excluding qconfig_remove |
548 | # including qconfig_add and excluding qconfig_remove |
| 309 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
549 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 310 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
550 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 311 | hasq ${x} ${qconfig_remove} || qconfig_new="${qconfig_new} ${x}" |
551 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 312 | done |
552 | done |
| 313 | |
553 | |
| 314 | # replace the existing QT_CONFIG list with qconfig_new |
554 | # replace the existing QT_CONFIG list with qconfig_new |
| 315 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
555 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 316 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
556 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 339 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
579 | "${ROOT}${QTHEADERDIR}" 2>/dev/null |
| 340 | fi |
580 | fi |
| 341 | fi |
581 | fi |
| 342 | } |
582 | } |
| 343 | |
583 | |
|
|
584 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
585 | # @DESCRIPTION: Generate configurations when the package is completely removed |
| 344 | qt4-build_pkg_postrm() { |
586 | qt4-build_pkg_postrm() { |
| 345 | generate_qconfigs |
587 | generate_qconfigs |
| 346 | } |
588 | } |
| 347 | |
589 | |
|
|
590 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
591 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
|
|
592 | # breakages and proposed solutions. |
| 348 | qt4-build_pkg_postinst() { |
593 | qt4-build_pkg_postinst() { |
| 349 | generate_qconfigs |
594 | generate_qconfigs |
| 350 | echo |
|
|
| 351 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
|
|
| 352 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
|
|
| 353 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
|
|
| 354 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
|
|
| 355 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
|
|
| 356 | ewarn |
|
|
| 357 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
|
|
| 358 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
|
|
| 359 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
|
|
| 360 | ewarn "configuration." |
|
|
| 361 | ewarn |
|
|
| 362 | ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" |
|
|
| 363 | echo |
|
|
| 364 | } |
595 | } |
| 365 | |
596 | |
|
|
597 | # @FUNCTION: skip_qmake_build_patch |
|
|
598 | # @DESCRIPTION: |
|
|
599 | # Don't need to build qmake, as it's already installed from qt-core |
| 366 | skip_qmake_build_patch() { |
600 | skip_qmake_build_patch() { |
| 367 | # Don't need to build qmake, as it's already installed from qt-core |
601 | # Don't need to build qmake, as it's already installed from qt-core |
| 368 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
602 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
| 369 | } |
603 | } |
| 370 | |
604 | |
|
|
605 | # @FUNCTION: skip_project_generation_patch |
|
|
606 | # @DESCRIPTION: |
|
|
607 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 371 | skip_project_generation_patch() { |
608 | skip_project_generation_patch() { |
| 372 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
609 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
| 373 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
610 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
| 374 | -i "${S}"/configure || die "Sed failed" |
611 | -i "${S}"/configure || die "Sed failed" |
| 375 | } |
612 | } |
| 376 | |
613 | |
|
|
614 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
615 | # @DESCRIPTION: |
|
|
616 | # Symlink generated binaries to buildtree so they can be used during compilation |
|
|
617 | # time |
| 377 | symlink_binaries_to_buildtree() { |
618 | symlink_binaries_to_buildtree() { |
| 378 | for bin in qmake moc uic rcc; do |
619 | for bin in qmake moc uic rcc; do |
| 379 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
620 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
| 380 | done |
621 | done |
| 381 | } |
622 | } |
| 382 | |
623 | |
|
|
624 | # @FUNCTION: fix_library_files |
|
|
625 | # @DESCRIPTION: |
|
|
626 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
|
|
627 | # moves the *.pc-files into the pkgconfig directory |
| 383 | fix_library_files() { |
628 | fix_library_files() { |
| 384 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
629 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 385 | if [[ -e ${libfile} ]]; then |
630 | if [[ -e ${libfile} ]]; then |
| 386 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
631 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
| 387 | fi |
632 | fi |
| … | |
… | |
| 390 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
635 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
| 391 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
636 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 392 | if [[ -e ${libfile} ]]; then |
637 | if [[ -e ${libfile} ]]; then |
| 393 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
638 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
| 394 | |
639 | |
| 395 | # Move .pc files into the pkgconfig directory |
640 | # Move .pc files into the pkgconfig directory |
| 396 | |
|
|
| 397 | dodir ${QTPCDIR} |
641 | dodir ${QTPCDIR#${EPREFIX}} |
| 398 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
642 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
| 399 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
643 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
| 400 | fi |
644 | fi |
| 401 | done |
645 | done |
| 402 | |
646 | |
| 403 | # Don't install an empty directory |
647 | # Don't install an empty directory |
| 404 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
648 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 405 | } |
649 | } |
| 406 | |
650 | |
|
|
651 | # @FUNCTION: qt_use |
|
|
652 | # @USAGE: < flag > [ feature ] [ enableval ] |
|
|
653 | # @DESCRIPTION: |
|
|
654 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
|
|
655 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
|
|
656 | # will be used for that. If [enableval] is not specified, it omits the |
|
|
657 | # assignment-part |
| 407 | qt_use() { |
658 | qt_use() { |
| 408 | local flag="${1}" |
659 | local flag=$1 |
| 409 | local feature="${1}" |
660 | local feature=$1 |
| 410 | local enableval= |
661 | local enableval= |
| 411 | |
662 | |
| 412 | [[ -n ${2} ]] && feature=${2} |
663 | [[ -n $2 ]] && feature=$2 |
| 413 | [[ -n ${3} ]] && enableval="-${3}" |
664 | [[ -n $3 ]] && enableval=-$3 |
| 414 | |
665 | |
| 415 | if use ${flag}; then |
666 | if use ${flag}; then |
| 416 | echo "${enableval}-${feature}" |
667 | echo "${enableval}-${feature}" |
| 417 | else |
668 | else |
| 418 | echo "-no-${feature}" |
669 | echo "-no-${feature}" |
| 419 | fi |
670 | fi |
| 420 | } |
671 | } |
| 421 | |
672 | |
| 422 | # @ECLASS-VARIABLE: QT4_BUILT_WITH_USE_CHECK |
673 | # @FUNCTION: qt_mkspecs_dir |
|
|
674 | # @RETURN: the specs-directory w/o path |
| 423 | # @DESCRIPTION: |
675 | # @DESCRIPTION: |
| 424 | # The contents of $QT4_BUILT_WITH_USE_CHECK gets fed to built_with_use |
676 | # Allows us to define which mkspecs dir we want to use. |
| 425 | # (eutils.eclass), line per line. |
|
|
| 426 | # |
|
|
| 427 | # Example: |
|
|
| 428 | # @CODE |
|
|
| 429 | # pkg_setup() { |
|
|
| 430 | # use qt3support && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
| 431 | # ~x11-libs/qt-gui-${PV} qt3support" |
|
|
| 432 | # qt4-build_check_use |
|
|
| 433 | # } |
|
|
| 434 | # @CODE |
|
|
| 435 | |
|
|
| 436 | # Run built_with_use on each flag and print appropriate error messages if any |
|
|
| 437 | # flags are missing |
|
|
| 438 | _qt_built_with_use() { |
|
|
| 439 | local missing opt pkg flag flags |
|
|
| 440 | |
|
|
| 441 | if [[ ${1} = "--missing" ]]; then |
|
|
| 442 | missing="${1} ${2}" && shift 2 |
|
|
| 443 | fi |
|
|
| 444 | if [[ ${1:0:1} = "-" ]]; then |
|
|
| 445 | opt=${1} && shift |
|
|
| 446 | fi |
|
|
| 447 | |
|
|
| 448 | pkg=${1} && shift |
|
|
| 449 | |
|
|
| 450 | for flag in "${@}"; do |
|
|
| 451 | flags="${flags} ${flag}" |
|
|
| 452 | if ! built_with_use ${missing} ${opt} ${pkg} ${flag}; then |
|
|
| 453 | flags="${flags}*" |
|
|
| 454 | else |
|
|
| 455 | [[ ${opt} = "-o" ]] && return 0 |
|
|
| 456 | fi |
|
|
| 457 | done |
|
|
| 458 | if [[ "${flags# }" = "${@}" ]]; then |
|
|
| 459 | return 0 |
|
|
| 460 | fi |
|
|
| 461 | if [[ ${opt} = "-o" ]]; then |
|
|
| 462 | eerror "This package requires '${pkg}' to be built with any of the following USE flags: '$*'." |
|
|
| 463 | else |
|
|
| 464 | eerror "This package requires '${pkg}' to be built with the following USE flags: '${flags# }'." |
|
|
| 465 | fi |
|
|
| 466 | return 1 |
|
|
| 467 | } |
|
|
| 468 | |
|
|
| 469 | # @FUNCTION: qt4-build_check_use |
|
|
| 470 | # @DESCRIPTION: |
|
|
| 471 | # Check if the listed packages in $QT4_BUILT_WITH_USE_CHECK are built with the |
|
|
| 472 | # USE flags listed. |
|
|
| 473 | # |
|
|
| 474 | # If any of the required USE flags are missing, an eerror will be printed for |
|
|
| 475 | # each package with missing USE flags. |
|
|
| 476 | qt4-build_check_use() { |
|
|
| 477 | local line missing |
|
|
| 478 | while read line; do |
|
|
| 479 | [[ -z ${line} ]] && continue |
|
|
| 480 | if ! _qt_built_with_use ${line}; then |
|
|
| 481 | missing=true |
|
|
| 482 | fi |
|
|
| 483 | done <<< "${QT4_BUILT_WITH_USE_CHECK}" |
|
|
| 484 | if [[ -n ${missing} ]]; then |
|
|
| 485 | echo |
|
|
| 486 | eerror "Flags marked with an * are missing." |
|
|
| 487 | die "Missing USE flags found" |
|
|
| 488 | fi |
|
|
| 489 | } |
|
|
| 490 | |
|
|
| 491 | qt_mkspecs_dir() { |
677 | qt_mkspecs_dir() { |
| 492 | # Allows us to define which mkspecs dir we want to use. |
678 | # Allows us to define which mkspecs dir we want to use. |
| 493 | local spec |
679 | local spec |
| 494 | |
680 | |
| 495 | case ${CHOST} in |
681 | case ${CHOST} in |
| 496 | *-freebsd*|*-dragonfly*) |
682 | *-freebsd*|*-dragonfly*) |
| 497 | spec="freebsd" ;; |
683 | spec=freebsd ;; |
| 498 | *-openbsd*) |
684 | *-openbsd*) |
| 499 | spec="openbsd" ;; |
685 | spec=openbsd ;; |
| 500 | *-netbsd*) |
686 | *-netbsd*) |
| 501 | spec="netbsd" ;; |
687 | spec=netbsd ;; |
| 502 | *-darwin*) |
688 | *-darwin*) |
|
|
689 | if use aqua; then |
|
|
690 | # mac with carbon/cocoa |
|
|
691 | spec=macx |
|
|
692 | else |
|
|
693 | # darwin/mac with x11 |
| 503 | spec="darwin" ;; |
694 | spec=darwin |
|
|
695 | fi |
|
|
696 | ;; |
|
|
697 | *-solaris*) |
|
|
698 | spec=solaris ;; |
| 504 | *-linux-*|*-linux) |
699 | *-linux-*|*-linux) |
| 505 | spec="linux" ;; |
700 | spec=linux ;; |
| 506 | *) |
701 | *) |
| 507 | die "Unknown CHOST, no platform choosen." |
702 | die "Unknown CHOST, no platform choosen." |
| 508 | esac |
703 | esac |
| 509 | |
704 | |
| 510 | CXX=$(tc-getCXX) |
705 | CXX=$(tc-getCXX) |
| 511 | if [[ ${CXX/g++/} != ${CXX} ]]; then |
706 | if [[ ${CXX} == *g++* ]]; then |
| 512 | spec="${spec}-g++" |
707 | spec+=-g++ |
| 513 | elif [[ ${CXX/icpc/} != ${CXX} ]]; then |
708 | elif [[ ${CXX} == *icpc* ]]; then |
| 514 | spec="${spec}-icc" |
709 | spec+=-icc |
| 515 | else |
710 | else |
| 516 | die "Unknown compiler ${CXX}." |
711 | die "Unknown compiler ${CXX}." |
| 517 | fi |
712 | fi |
|
|
713 | if [[ -n ${LIBDIR/lib} ]]; then |
|
|
714 | spec+=-${LIBDIR/lib} |
|
|
715 | fi |
|
|
716 | |
|
|
717 | # Add -64 for 64bit profiles |
|
|
718 | if use x64-freebsd || |
|
|
719 | use amd64-linux || |
|
|
720 | use x64-macos || |
|
|
721 | use x64-solaris || |
|
|
722 | use sparc64-solaris |
|
|
723 | then |
|
|
724 | spec+=-64 |
|
|
725 | fi |
| 518 | |
726 | |
| 519 | echo "${spec}" |
727 | echo "${spec}" |
| 520 | } |
728 | } |
| 521 | |
729 | |
| 522 | case ${EAPI:-0} in |
|
|
| 523 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
| 524 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
730 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
| 525 | esac |
|
|