| 1 | # Copyright 2007-2008 Gentoo Foundation |
1 | # Copyright 2007-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.18 2009/01/21 08:55:28 gengor Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.20 2009/02/11 21:14:59 yngwin Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
|
|
7 | # Ben de Groot <yngwin@gentoo.org> |
|
|
8 | # Markos Chandras <hwoarang@gentoo.org> |
| 7 | # Caleb Tennis <caleb@gentoo.org> |
9 | # Caleb Tennis <caleb@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
10 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 9 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 10 | # This eclass contains various functions that are used when building Qt4 |
12 | # This eclass contains various functions that are used when building Qt4 |
| 11 | |
13 | |
| 12 | inherit eutils multilib toolchain-funcs flag-o-matic |
14 | inherit eutils multilib toolchain-funcs flag-o-matic versionator |
| 13 | |
15 | |
| 14 | IUSE="${IUSE} debug pch" |
16 | IUSE="${IUSE} custom-cxxflags debug pch" |
| 15 | |
17 | |
| 16 | case "${PV}" in |
18 | case "${PV}" in |
| 17 | 4.4.0_beta*) |
|
|
| 18 | SRCTYPE="${SRCTYPE:-opensource-src}" |
|
|
| 19 | MY_PV="${PV/_beta/-beta}" |
|
|
| 20 | ;; |
|
|
| 21 | 4.4.0_rc*) |
19 | 4.?.?_rc*) |
| 22 | SRCTYPE="${SRCTYPE:-opensource-src}" |
20 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| 23 | MY_PV="${PV/_rc/-rc}" |
21 | MY_PV="${PV/_rc/-rc}" |
| 24 | ;; |
22 | ;; |
| 25 | *) |
23 | *) |
| 26 | SRCTYPE="${SRCTYPE:-opensource-src}" |
24 | SRCTYPE="${SRCTYPE:-opensource-src}" |
| … | |
… | |
| 28 | ;; |
26 | ;; |
| 29 | esac |
27 | esac |
| 30 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
28 | MY_P=qt-x11-${SRCTYPE}-${MY_PV} |
| 31 | S=${WORKDIR}/${MY_P} |
29 | S=${WORKDIR}/${MY_P} |
| 32 | |
30 | |
|
|
31 | HOMEPAGE="http://www.qtsoftware.com/" |
| 33 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
32 | SRC_URI="ftp://ftp.trolltech.com/qt/source/${MY_P}.tar.bz2" |
| 34 | |
33 | |
| 35 | case "${PV}" in |
34 | case "${PV}" in |
| 36 | 4.4.2|4.4.1|4.4.0|4.4.0_rc*) |
|
|
| 37 | SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" |
35 | 4.4.?) SRC_URI="${SRC_URI} mirror://gentoo/${MY_P}-headers.tar.bz2" ;; |
| 38 | ;; |
36 | *) ;; |
| 39 | *) |
|
|
| 40 | ;; |
|
|
| 41 | esac |
37 | esac |
| 42 | |
38 | |
| 43 | qt4-build_pkg_setup() { |
39 | qt4-build_pkg_setup() { |
|
|
40 | # EAPI=2 ebuilds set use-deps, others need this: |
|
|
41 | if [[ $EAPI != 2 ]]; then |
|
|
42 | # Make sure debug setting corresponds with qt-core (bug 258512) |
|
|
43 | if [[ $PN != "qt-core" ]]; then |
|
|
44 | use debug && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} |
|
|
45 | ~x11-libs/qt-core-${PV} debug" |
|
|
46 | fi |
|
|
47 | |
| 44 | # Check USE requirements |
48 | # Check USE requirements |
| 45 | qt4-build_check_use |
49 | qt4-build_check_use |
|
|
50 | fi |
| 46 | |
51 | |
| 47 | # Set up installation directories |
52 | # Set up installation directories |
| 48 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
53 | QTBASEDIR=/usr/$(get_libdir)/qt4 |
| 49 | QTPREFIXDIR=/usr |
54 | QTPREFIXDIR=/usr |
| 50 | QTBINDIR=/usr/bin |
55 | QTBINDIR=/usr/bin |
| … | |
… | |
| 61 | |
66 | |
| 62 | PLATFORM=$(qt_mkspecs_dir) |
67 | PLATFORM=$(qt_mkspecs_dir) |
| 63 | |
68 | |
| 64 | PATH="${S}/bin:${PATH}" |
69 | PATH="${S}/bin:${PATH}" |
| 65 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
70 | LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" |
| 66 | } |
|
|
| 67 | |
71 | |
| 68 | qt4_unpack() { |
72 | if ! version_is_at_least 4.1 $(gcc-version) ; then |
|
|
73 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
|
|
74 | echo |
|
|
75 | ebeep 5 |
|
|
76 | fi |
|
|
77 | } |
|
|
78 | |
|
|
79 | qt4-build_src_unpack() { |
| 69 | local target targets |
80 | local target targets |
| 70 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
81 | for target in configure LICENSE.{GPL2,GPL3} projects.pro \ |
| 71 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
82 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 72 | ${QT4_EXTRACT_DIRECTORIES}; do |
83 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 73 | targets="${targets} ${MY_P}/${target}" |
84 | targets="${targets} ${MY_P}/${target}" |
| … | |
… | |
| 75 | |
86 | |
| 76 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
87 | echo tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
| 77 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
88 | tar xjpf "${DISTDIR}"/${MY_P}.tar.bz2 ${targets} |
| 78 | |
89 | |
| 79 | case "${PV}" in |
90 | case "${PV}" in |
| 80 | 4.4.2|4.4.1|4.4.0|4.4.0_rc*) |
91 | 4.4.?) |
| 81 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
92 | echo tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
| 82 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
93 | tar xjpf "${DISTDIR}"/${MY_P}-headers.tar.bz2 |
| 83 | ;; |
94 | ;; |
| 84 | esac |
95 | esac |
| 85 | } |
|
|
| 86 | |
96 | |
|
|
97 | # Be backwards compatible for now |
|
|
98 | if [[ $EAPI != 2 ]]; then |
|
|
99 | qt4-build_src_prepare |
|
|
100 | fi |
|
|
101 | } |
|
|
102 | |
| 87 | qt4-build_src_unpack() { |
103 | qt4-build_src_prepare() { |
| 88 | qt4_unpack |
104 | cd "${S}" |
|
|
105 | |
| 89 | if [[ ${PN} != qt-core ]]; then |
106 | if [[ ${PN} != qt-core ]]; then |
| 90 | cd "${S}" |
|
|
| 91 | skip_qmake_build_patch |
107 | skip_qmake_build_patch |
| 92 | skip_project_generation_patch |
108 | skip_project_generation_patch |
| 93 | symlink_binaries_to_buildtree |
109 | symlink_binaries_to_buildtree |
| 94 | fi |
110 | fi |
| 95 | |
111 | |
| … | |
… | |
| 109 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
125 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 110 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
126 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
| 111 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
127 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
| 112 | } |
128 | } |
| 113 | |
129 | |
| 114 | qt4-build_src_compile() { |
130 | qt4-build_src_configure() { |
| 115 | # Don't let the user go too overboard with flags. If you really want to, uncomment |
131 | if use custom-cxxflags; then |
| 116 | # out the line below and give 'er a whirl. |
132 | echo |
|
|
133 | ewarn "You have set USE=custom-cxxflags, which means Qt will be built with the" |
|
|
134 | ewarn "CXXFLAGS you have set in /etc/make.conf. This is not supported, and we" |
|
|
135 | ewarn "recommend to unset this useflag. But you are free to experiment with it." |
|
|
136 | ewarn "Just do not start crying if it breaks your system, or eats your kitten" |
|
|
137 | ewarn "for breakfast. ;-) " |
|
|
138 | echo |
|
|
139 | else |
|
|
140 | # Don't let the user go too overboard with flags. |
| 117 | strip-flags |
141 | strip-flags |
| 118 | replace-flags -O3 -O2 |
142 | replace-flags -O3 -O2 |
|
|
143 | fi |
| 119 | |
144 | |
|
|
145 | # Unsupported old gcc versions - hardened needs this :( |
| 120 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
146 | if [[ $(gcc-major-version) -lt "4" ]] ; then |
| 121 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
147 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 122 | append-cxxflags -fno-stack-protector |
148 | append-cxxflags -fno-stack-protector |
| 123 | fi |
149 | fi |
| 124 | |
150 | |
| … | |
… | |
| 130 | |
156 | |
| 131 | myconf="$(standard_configure_options) ${myconf}" |
157 | myconf="$(standard_configure_options) ${myconf}" |
| 132 | |
158 | |
| 133 | echo ./configure ${myconf} |
159 | echo ./configure ${myconf} |
| 134 | ./configure ${myconf} || die "./configure failed" |
160 | ./configure ${myconf} || die "./configure failed" |
|
|
161 | } |
| 135 | |
162 | |
| 136 | build_target_directories |
163 | qt4-build_src_compile() { |
|
|
164 | # Be backwards compatible for now |
|
|
165 | if [[ $EAPI != 2 ]]; then |
|
|
166 | qt4-build_src_configure |
|
|
167 | fi |
|
|
168 | |
|
|
169 | build_directories "${QT4_TARGET_DIRECTORIES}" |
| 137 | } |
170 | } |
| 138 | |
171 | |
| 139 | qt4-build_src_install() { |
172 | qt4-build_src_install() { |
| 140 | install_directories "${QT4_TARGET_DIRECTORIES}" |
173 | install_directories "${QT4_TARGET_DIRECTORIES}" |
| 141 | install_qconfigs |
174 | install_qconfigs |
| … | |
… | |
| 163 | myconf="${myconf} -debug -no-separate-debug-info" |
196 | myconf="${myconf} -debug -no-separate-debug-info" |
| 164 | else |
197 | else |
| 165 | myconf="${myconf} -release -no-separate-debug-info" |
198 | myconf="${myconf} -release -no-separate-debug-info" |
| 166 | fi |
199 | fi |
| 167 | |
200 | |
| 168 | # ARCH is set on Gentoo. QT now falls back to generic on an unsupported |
201 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 169 | # ${ARCH}. Therefore we convert it to supported values. |
202 | # ${ARCH}. Therefore we convert it to supported values. |
| 170 | case "${ARCH}" in |
203 | case "${ARCH}" in |
| 171 | amd64) myconf="${myconf} -arch x86_64" ;; |
204 | amd64) myconf="${myconf} -arch x86_64" ;; |
| 172 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
205 | ppc|ppc64) myconf="${myconf} -arch powerpc" ;; |
| 173 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
206 | x86|x86-*) myconf="${myconf} -arch i386" ;; |
| … | |
… | |
| 179 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
212 | myconf="${myconf} -stl -verbose -largefile -confirm-license -no-rpath |
| 180 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
213 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
| 181 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
214 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
| 182 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
215 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
| 183 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
216 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
| 184 | -demosdir ${QTDEMOSDIR} -silent -fast -reduce-relocations |
217 | -demosdir ${QTDEMOSDIR} -silent -fast |
|
|
218 | $([[ ${PN} == qt-xmlpatterns ]] || echo -no-exceptions) |
|
|
219 | $(use x86-fbsd || echo -reduce-relocations) |
| 185 | -nomake examples -nomake demos" |
220 | -nomake examples -nomake demos" |
| 186 | |
221 | |
| 187 | echo "${myconf}" |
222 | echo "${myconf}" |
| 188 | } |
|
|
| 189 | |
|
|
| 190 | build_target_directories() { |
|
|
| 191 | build_directories "${QT4_TARGET_DIRECTORIES}" |
|
|
| 192 | } |
223 | } |
| 193 | |
224 | |
| 194 | build_directories() { |
225 | build_directories() { |
| 195 | local dirs="$@" |
226 | local dirs="$@" |
| 196 | for x in ${dirs}; do |
227 | for x in ${dirs}; do |
| … | |
… | |
| 240 | done |
271 | done |
| 241 | insinto ${QTHEADERDIR}/Gentoo |
272 | insinto ${QTHEADERDIR}/Gentoo |
| 242 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
273 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 243 | fi |
274 | fi |
| 244 | } |
275 | } |
| 245 | |
|
|
| 246 | # Stubs for functions used by the Qt 4.4.0_technical_preview_1. |
|
|
| 247 | qconfig_add_option() { : ; } |
|
|
| 248 | qconfig_remove_option() { : ; } |
|
|
| 249 | |
276 | |
| 250 | generate_qconfigs() { |
277 | generate_qconfigs() { |
| 251 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
278 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 252 | local x qconfig_add qconfig_remove qconfig_new |
279 | local x qconfig_add qconfig_remove qconfig_new |
| 253 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
280 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| … | |
… | |
| 479 | fi |
506 | fi |
| 480 | |
507 | |
| 481 | echo "${spec}" |
508 | echo "${spec}" |
| 482 | } |
509 | } |
| 483 | |
510 | |
|
|
511 | case ${EAPI:-0} in |
| 484 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst |
512 | 0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
513 | 2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst ;; |
|
|
514 | esac |