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