| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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/kde4-base.eclass,v 1.79 2010/12/06 10:17:04 tampakrap Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.96 2011/06/06 21:38:18 abcd Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: kde4-base.eclass |
5 | # @ECLASS: kde4-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The kde4-base.eclass provides support for building KDE4 based ebuilds |
10 | # The kde4-base.eclass provides support for building KDE4 based ebuilds |
| 11 | # and KDE4 applications. |
11 | # and KDE4 applications. |
| 12 | # |
12 | # |
| 13 | # NOTE: KDE 4 ebuilds by default define EAPI="2", this can be redefined but |
13 | # NOTE: KDE 4 ebuilds currently support EAPI "3". This will be reviewed |
| 14 | # eclass will fail with version older than 2. |
14 | # over time as new EAPI versions are approved. |
| 15 | |
15 | |
| 16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
| 17 | # @DESCRIPTION: |
17 | # @DESCRIPTION: |
| 18 | # Do we need an X server? Valid values are "always", "optional", and "manual". |
18 | # For proper description see virtualx.eclass manpage. |
| 19 | # "tests" is a synonym for "optional". While virtualx.eclass supports in principle |
19 | # Here we redefine default value to be manual, if your package needs virtualx |
| 20 | # also the use of an X server during other ebuild phases, we only use it in |
20 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
| 21 | # src_test here. Most likely you'll want to set "optional", which introduces the |
|
|
| 22 | # use-flag "test" (if not already present), adds dependencies conditional on that |
|
|
| 23 | # use-flag, and automatically runs (only) the ebuild test phase with a virtual X server |
|
|
| 24 | # present. This makes things a lot more comfortable than the bare virtualx eclass. |
|
|
| 25 | |
|
|
| 26 | # In case the variable is not set in the ebuild, let virtualx eclass not do anything |
|
|
| 27 | : ${VIRTUALX_REQUIRED:=manual} |
21 | : ${VIRTUALX_REQUIRED:=manual} |
| 28 | |
22 | |
| 29 | inherit kde4-functions base virtualx eutils |
23 | inherit kde4-functions toolchain-funcs fdo-mime gnome2-utils base virtualx versionator eutils |
| 30 | |
24 | |
| 31 | get_build_type |
|
|
| 32 | if [[ ${BUILD_TYPE} = live ]]; then |
25 | if [[ ${BUILD_TYPE} = live ]]; then |
| 33 | if [[ ${KDEBASE} = kdevelop ]]; then |
26 | case ${KDE_SCM} in |
| 34 | inherit git |
|
|
| 35 | else |
|
|
| 36 | inherit subversion |
27 | svn) inherit subversion ;; |
| 37 | fi |
28 | git) inherit git-2 ;; |
|
|
29 | esac |
| 38 | fi |
30 | fi |
| 39 | |
31 | |
| 40 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
32 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 41 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 42 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
34 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
| … | |
… | |
| 67 | # One may override this variable to raise version requirements. |
59 | # One may override this variable to raise version requirements. |
| 68 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
60 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
| 69 | # Note that it is fixed to ${SLOT} for kde-base packages. |
61 | # Note that it is fixed to ${SLOT} for kde-base packages. |
| 70 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
62 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
| 71 | |
63 | |
| 72 | # Set slot for packages in kde-base, koffice and kdevelop |
64 | # Set slot for KDEBASE known packages |
| 73 | case ${KDEBASE} in |
65 | case ${KDEBASE} in |
| 74 | kde-base) |
66 | kde-base) |
| 75 | # Determine SLOT from PVs |
67 | SLOT=$(_calculate_kde_slot) |
| 76 | case ${PV} in |
68 | [[ -z ${SLOT} ]] && die "Unsupported ${PV}" |
| 77 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
|
|
| 78 | 4.6* | 4.5.[6-9][0-9]*) SLOT="4.6" ;; |
|
|
| 79 | 4.5* | 4.4.[6-9][0-9]*) SLOT="4.5" ;; |
|
|
| 80 | 4.4* | 4.3.[6-9][0-9]*) SLOT="4.4" ;; |
|
|
| 81 | 9999*) SLOT="live" ;; # regular live |
|
|
| 82 | *) die "Unsupported ${PV}" ;; |
|
|
| 83 | esac |
|
|
| 84 | KDE_MINIMAL="${SLOT}" |
69 | KDE_MINIMAL="${SLOT}" |
| 85 | ;; |
70 | ;; |
| 86 | koffice) |
71 | koffice) |
| 87 | SLOT="2" |
72 | SLOT="2" |
| 88 | ;; |
73 | ;; |
| … | |
… | |
| 115 | fi |
100 | fi |
| 116 | SLOT="4" |
101 | SLOT="4" |
| 117 | ;; |
102 | ;; |
| 118 | esac |
103 | esac |
| 119 | |
104 | |
| 120 | slot_is_at_least 4.5 ${KDE_MINIMAL} && CMAKE_MIN_VERSION="2.8.1" |
|
|
| 121 | |
|
|
| 122 | inherit ${buildsystem_eclass} |
105 | inherit ${buildsystem_eclass} |
| 123 | |
106 | |
| 124 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
107 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm |
| 125 | |
108 | |
| 126 | unset buildsystem_eclass |
109 | unset buildsystem_eclass |
| 127 | unset export_fns |
110 | unset export_fns |
| 128 | |
111 | |
| 129 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
112 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
| … | |
… | |
| 147 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
130 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
| 148 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 149 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
132 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
| 150 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
133 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 151 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
134 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
| 152 | |
|
|
| 153 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
| 154 | # @DESCRIPTION: |
|
|
| 155 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
| 156 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
| 157 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
| 158 | |
135 | |
| 159 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
136 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 160 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 161 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
138 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
| 162 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
139 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| … | |
… | |
| 176 | # (handbook USE flag) and 'never'. |
153 | # (handbook USE flag) and 'never'. |
| 177 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
154 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 178 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
155 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
| 179 | # ensures buildtime and runtime dependencies. |
156 | # ensures buildtime and runtime dependencies. |
| 180 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
157 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
158 | |
|
|
159 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
160 | # @DESCRIPTION: |
|
|
161 | # Set this varible if you want your live package to manage its |
|
|
162 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
163 | # and translations in live ebuilds) |
|
|
164 | if [[ ${BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
165 | # Kdebase actualy provides the handbooks even for live stuff |
|
|
166 | [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never |
|
|
167 | KDE_LINGUAS="" |
|
|
168 | fi |
| 181 | |
169 | |
| 182 | # Setup packages inheriting this eclass |
170 | # Setup packages inheriting this eclass |
| 183 | case ${KDEBASE} in |
171 | case ${KDEBASE} in |
| 184 | kde-base) |
172 | kde-base) |
| 185 | HOMEPAGE="http://www.kde.org/" |
173 | HOMEPAGE="http://www.kde.org/" |
| 186 | LICENSE="GPL-2" |
174 | LICENSE="GPL-2" |
| 187 | if [[ $BUILD_TYPE = live ]]; then |
175 | if [[ $BUILD_TYPE = live ]]; then |
| 188 | # Disable tests for live ebuilds |
176 | # Disable tests for live ebuilds |
| 189 | RESTRICT+=" test" |
177 | RESTRICT+=" test" |
| 190 | # Live ebuilds in kde-base default to kdeprefix by default |
178 | fi |
| 191 | IUSE+=" +kdeprefix" |
179 | |
| 192 | else |
180 | # Only add the kdeprefix USE flag for older versions, to help |
| 193 | # All other ebuild types default to -kdeprefix as before |
181 | # non-portage package managers handle the upgrade |
|
|
182 | if [[ ${PV} < 4.6.4 ]]; then |
| 194 | IUSE+=" kdeprefix" |
183 | IUSE+=" kdeprefix" |
| 195 | fi |
184 | fi |
|
|
185 | |
| 196 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
186 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
| 197 | # packages that will never be mirrored. (As they only will ever be in |
187 | # packages that will never be mirrored. (As they only will ever be in |
| 198 | # the overlay). |
188 | # the overlay). |
| 199 | case ${PV} in |
189 | case ${PV} in |
| 200 | *9999* | 4.?.[6-9]?) |
190 | *9999* | 4.?.[6-9]?) |
| … | |
… | |
| 214 | ;; |
204 | ;; |
| 215 | esac |
205 | esac |
| 216 | |
206 | |
| 217 | # @ECLASS-VARIABLE: QT_MINIMAL |
207 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 218 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 219 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
209 | # Determine version of qt we enforce as minimal for the package. |
| 220 | # 4.6.0 for 4.4, 4.6.3 for 4.5, and 4.7.0 for 4.6 and later |
|
|
| 221 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
210 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
| 222 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
211 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
| 223 | elif slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
212 | else |
| 224 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
213 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
| 225 | else |
|
|
| 226 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
|
|
| 227 | fi |
214 | fi |
| 228 | |
215 | |
| 229 | # Declarative dependencies |
216 | # Declarative dependencies |
| 230 | qtdeclarativedepend=" |
217 | qtdeclarativedepend=" |
| 231 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
218 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
| … | |
… | |
| 287 | ;; |
274 | ;; |
| 288 | *) ;; |
275 | *) ;; |
| 289 | esac |
276 | esac |
| 290 | unset qtmultimediadepend |
277 | unset qtmultimediadepend |
| 291 | |
278 | |
| 292 | # WebKit dependencies |
|
|
| 293 | case ${KDE_REQUIRED} in |
|
|
| 294 | always) |
|
|
| 295 | qtwebkitusedeps="[kde]" |
|
|
| 296 | ;; |
|
|
| 297 | optional) |
|
|
| 298 | qtwebkitusedeps="[kde?]" |
|
|
| 299 | ;; |
|
|
| 300 | *) ;; |
|
|
| 301 | esac |
|
|
| 302 | qtwebkitdepend=" |
|
|
| 303 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
|
|
| 304 | " |
|
|
| 305 | unset qtwebkitusedeps |
|
|
| 306 | case ${WEBKIT_REQUIRED} in |
|
|
| 307 | always) |
|
|
| 308 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
| 309 | ;; |
|
|
| 310 | optional) |
|
|
| 311 | IUSE+=" webkit" |
|
|
| 312 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
| 313 | ;; |
|
|
| 314 | *) ;; |
|
|
| 315 | esac |
|
|
| 316 | unset qtwebkitdepend |
|
|
| 317 | |
|
|
| 318 | # CppUnit dependencies |
279 | # CppUnit dependencies |
| 319 | cppuintdepend=" |
280 | cppuintdepend=" |
| 320 | dev-util/cppunit |
281 | dev-util/cppunit |
| 321 | " |
282 | " |
| 322 | case ${CPPUNIT_REQUIRED} in |
283 | case ${CPPUNIT_REQUIRED} in |
| … | |
… | |
| 329 | ;; |
290 | ;; |
| 330 | *) ;; |
291 | *) ;; |
| 331 | esac |
292 | esac |
| 332 | unset cppuintdepend |
293 | unset cppuintdepend |
| 333 | |
294 | |
|
|
295 | |
|
|
296 | # WebKit use dependencies |
|
|
297 | case ${KDE_REQUIRED} in |
|
|
298 | always) |
|
|
299 | qtwebkitusedeps="[kde]" |
|
|
300 | ;; |
|
|
301 | optional) |
|
|
302 | qtwebkitusedeps="[kde?]" |
|
|
303 | ;; |
|
|
304 | *) ;; |
|
|
305 | esac |
| 334 | # KDE dependencies |
306 | # KDE dependencies |
| 335 | # Qt accessibility classes are needed in various places, bug 325461 |
307 | # Qt accessibility classes are needed in various places, bug 325461 |
| 336 | kdecommondepend=" |
308 | kdecommondepend=" |
| 337 | dev-lang/perl |
309 | dev-lang/perl |
| 338 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
310 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| … | |
… | |
| 340 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
312 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 341 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
313 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 342 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
314 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| 343 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
315 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
| 344 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
316 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
317 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
| 345 | !aqua? ( |
318 | !aqua? ( |
| 346 | x11-libs/libXext |
319 | x11-libs/libXext |
| 347 | x11-libs/libXt |
320 | x11-libs/libXt |
| 348 | x11-libs/libXxf86vm |
321 | x11-libs/libXxf86vm |
|
|
322 | x11-libs/libXcomposite |
| 349 | ) |
323 | ) |
| 350 | " |
324 | " |
| 351 | |
325 | |
| 352 | if [[ ${PN} != kdelibs ]]; then |
326 | if [[ ${PN} != kdelibs ]]; then |
| 353 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
327 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| … | |
… | |
| 367 | *) ;; |
341 | *) ;; |
| 368 | esac |
342 | esac |
| 369 | fi |
343 | fi |
| 370 | fi |
344 | fi |
| 371 | fi |
345 | fi |
|
|
346 | |
| 372 | kdedepend=" |
347 | kdedepend=" |
| 373 | dev-util/automoc |
348 | dev-util/automoc |
| 374 | dev-util/pkgconfig |
349 | dev-util/pkgconfig |
| 375 | !aqua? ( |
350 | !aqua? ( |
| 376 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
351 | >=x11-libs/libXtst-1.1.0 |
| 377 | x11-proto/xf86vidmodeproto |
352 | x11-proto/xf86vidmodeproto |
| 378 | ) |
353 | ) |
| 379 | " |
354 | " |
|
|
355 | |
| 380 | kderdepend="" |
356 | kderdepend="" |
|
|
357 | |
|
|
358 | # all packages needs oxygen icons for basic iconset |
|
|
359 | if [[ ${PN} != oxygen-icons ]]; then |
|
|
360 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
|
|
361 | fi |
|
|
362 | |
|
|
363 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
364 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
365 | for _lingua in ${KDE_LINGUAS}; do |
|
|
366 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
367 | # but only for selected ones. |
|
|
368 | # this can't be done on one line because if user doesn't use any localisation |
|
|
369 | # then he is probably not interested in kde-l10n at all. |
|
|
370 | kderdepend+=" |
|
|
371 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
|
|
372 | " |
|
|
373 | done |
|
|
374 | unset _lingua |
|
|
375 | fi |
| 381 | |
376 | |
| 382 | kdehandbookdepend=" |
377 | kdehandbookdepend=" |
| 383 | app-text/docbook-xml-dtd:4.2 |
378 | app-text/docbook-xml-dtd:4.2 |
| 384 | app-text/docbook-xsl-stylesheets |
379 | app-text/docbook-xsl-stylesheets |
| 385 | " |
380 | " |
| … | |
… | |
| 425 | # Accumulate dependencies set by this eclass |
420 | # Accumulate dependencies set by this eclass |
| 426 | DEPEND+=" ${COMMONDEPEND}" |
421 | DEPEND+=" ${COMMONDEPEND}" |
| 427 | RDEPEND+=" ${COMMONDEPEND}" |
422 | RDEPEND+=" ${COMMONDEPEND}" |
| 428 | unset COMMONDEPEND |
423 | unset COMMONDEPEND |
| 429 | |
424 | |
| 430 | # Add experimental kdeenablefinal, disabled by default |
425 | # Add experimental kdeenablefinal, masked by default |
| 431 | IUSE+=" kdeenablefinal" |
426 | IUSE+=" kdeenablefinal" |
| 432 | |
427 | |
| 433 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
428 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 434 | # koffice ebuild, the URI should be set in the ebuild itself |
429 | # koffice ebuild, the URI should be set in the ebuild itself |
| 435 | case ${BUILD_TYPE} in |
430 | _calculate_src_uri() { |
| 436 | live) |
431 | debug-print-function ${FUNCNAME} "$@" |
|
|
432 | |
|
|
433 | local _kmname _kmname_pv |
|
|
434 | |
|
|
435 | # we calculate URI only for known KDEBASE modules |
|
|
436 | [[ -n ${KDEBASE} ]] || return |
|
|
437 | |
|
|
438 | # calculate tarball module name |
|
|
439 | if [[ -n ${KMNAME} ]]; then |
|
|
440 | # fixup kdebase-apps name |
|
|
441 | case ${KMNAME} in |
|
|
442 | kdebase-apps) |
|
|
443 | _kmname="kdebase" ;; |
|
|
444 | *) |
|
|
445 | _kmname="${KMNAME}" ;; |
|
|
446 | esac |
|
|
447 | else |
|
|
448 | _kmname=${PN} |
|
|
449 | fi |
|
|
450 | _kmname_pv="${_kmname}-${PV}" |
|
|
451 | case ${KDEBASE} in |
|
|
452 | kde-base) |
|
|
453 | case ${PV} in |
|
|
454 | 4.[456].8[05] | 4.[456].9[023568]) |
|
|
455 | # Unstable KDE SC releases |
|
|
456 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
457 | # KDEPIM IS SPECIAL |
|
|
458 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/unstable/kdepim/${PV}/${_kmname_pv}.tar.bz2" |
|
|
459 | ;; |
|
|
460 | 4.4.[6789] | 4.4.1?*) |
|
|
461 | # Stable kdepim releases |
|
|
462 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
463 | ;; |
|
|
464 | *) |
|
|
465 | # Stable KDE SC releases |
|
|
466 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
467 | ;; |
|
|
468 | esac |
|
|
469 | ;; |
|
|
470 | koffice) |
|
|
471 | case ${PV} in |
|
|
472 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
473 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
474 | esac |
|
|
475 | ;; |
|
|
476 | kdevelop) |
|
|
477 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
478 | ;; |
|
|
479 | esac |
|
|
480 | } |
|
|
481 | |
|
|
482 | _calculate_live_repo() { |
|
|
483 | debug-print-function ${FUNCNAME} "$@" |
|
|
484 | |
| 437 | SRC_URI="" |
485 | SRC_URI="" |
| 438 | if has subversion ${INHERITED}; then |
486 | case ${KDE_SCM} in |
|
|
487 | svn) |
| 439 | # Determine branch URL based on live type |
488 | # Determine branch URL based on live type |
| 440 | local branch_prefix |
489 | local branch_prefix |
| 441 | case ${PV} in |
490 | case ${PV} in |
| 442 | 9999*) |
491 | 9999*) |
| 443 | # trunk |
492 | # trunk |
| … | |
… | |
| 504 | # @DESCRIPTION: |
553 | # @DESCRIPTION: |
| 505 | # This variable is used for specifying the timeout between svn synces |
554 | # This variable is used for specifying the timeout between svn synces |
| 506 | # for kde-base and koffice modules. Does not affect misc apps. |
555 | # for kde-base and koffice modules. Does not affect misc apps. |
| 507 | # Default value is 1 hour. |
556 | # Default value is 1 hour. |
| 508 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
557 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
| 509 | elif has git ${INHERITED}; then |
|
|
| 510 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
| 511 | KMMODULE="${PN}" |
|
|
| 512 | fi |
|
|
| 513 | case ${KDEBASE} in |
|
|
| 514 | kdevelop) |
|
|
| 515 | EGIT_REPO_URI="git://git.kde.org/${KMMODULE}" |
|
|
| 516 | ;; |
|
|
| 517 | esac |
|
|
| 518 | fi |
|
|
| 519 | ;; |
558 | ;; |
| 520 | *) |
559 | git) |
|
|
560 | local _kmname |
|
|
561 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
562 | # @DESCRIPTION: |
|
|
563 | # This variable allows easy overriding of default kde mirror service |
|
|
564 | # (anongit) with anything else you might want to use. |
|
|
565 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
566 | |
|
|
567 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
568 | # @DESCRIPTION: |
|
|
569 | # This variable allows overriding of default repository |
|
|
570 | # name. Specify only if this differ from PN and KMNAME. |
| 521 | if [[ -n ${KDEBASE} ]]; then |
571 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
572 | # the repository and kmname different |
|
|
573 | _kmname=${EGIT_REPONAME} |
| 522 | if [[ -n ${KMNAME} ]]; then |
574 | elif [[ -n ${KMNAME} ]]; then |
| 523 | case ${KMNAME} in |
|
|
| 524 | kdebase-apps) |
|
|
| 525 | _kmname="kdebase" ;; |
|
|
| 526 | *) |
|
|
| 527 | _kmname="${KMNAME}" ;; |
575 | _kmname=${KMNAME} |
| 528 | esac |
|
|
| 529 | else |
576 | else |
| 530 | _kmname=${PN} |
577 | _kmname=${PN} |
| 531 | fi |
578 | fi |
| 532 | _kmname_pv="${_kmname}-${PV}" |
579 | |
| 533 | case ${KDEBASE} in |
580 | # default branching |
| 534 | kde-base) |
|
|
| 535 | case ${PV} in |
581 | case ${PV} in |
| 536 | 4.[456].8[05] | 4.[456].9[023568]) |
582 | 9999*) ;; |
| 537 | # Unstable KDE SC releases |
583 | *) |
| 538 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
584 | # set EGIT_BRANCH and EGIT_COMMIT to ${SLOT} |
|
|
585 | case ${_kmname} in |
|
|
586 | kdeplasma-addons | kdepim | kdepim-runtime | kdepimlibs | okular) |
|
|
587 | EGIT_BRANCH="${SLOT}" |
| 539 | ;; |
588 | ;; |
| 540 | 4.4.6 | 4.4.7 | 4.4.8) |
589 | marble) |
| 541 | # Only kdepim here |
590 | EGIT_BRANCH="kde-${SLOT}" |
| 542 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
| 543 | ;; |
591 | ;; |
| 544 | *) |
592 | *) EGIT_BRANCH="KDE/${SLOT}" ;; |
| 545 | # Stable KDE SC releases |
|
|
| 546 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
| 547 | ;; |
|
|
| 548 | esac |
593 | esac |
| 549 | ;; |
594 | ;; |
| 550 | koffice) |
|
|
| 551 | case ${PV} in |
|
|
| 552 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 553 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 554 | esac |
|
|
| 555 | ;; |
|
|
| 556 | kdevelop) |
|
|
| 557 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
| 558 | ;; |
|
|
| 559 | esac |
595 | esac |
| 560 | unset _kmname _kmname_pv |
596 | |
| 561 | fi |
597 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
|
|
598 | |
|
|
599 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
600 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
| 562 | ;; |
601 | ;; |
|
|
602 | esac |
|
|
603 | } |
|
|
604 | |
|
|
605 | case ${BUILD_TYPE} in |
|
|
606 | live) _calculate_live_repo ;; |
|
|
607 | *) _calculate_src_uri ;; |
| 563 | esac |
608 | esac |
| 564 | |
609 | |
| 565 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
610 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
| 566 | |
611 | |
| 567 | # @ECLASS-VARIABLE: PREFIX |
612 | # @ECLASS-VARIABLE: PREFIX |
| … | |
… | |
| 570 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
615 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
| 571 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
616 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
| 572 | |
617 | |
| 573 | # @FUNCTION: kde4-base_pkg_setup |
618 | # @FUNCTION: kde4-base_pkg_setup |
| 574 | # @DESCRIPTION: |
619 | # @DESCRIPTION: |
| 575 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
620 | # Do the basic KDEDIR settings and determine with which kde should |
| 576 | # optional applications link |
621 | # optional applications link |
| 577 | kde4-base_pkg_setup() { |
622 | kde4-base_pkg_setup() { |
| 578 | debug-print-function ${FUNCNAME} "$@" |
623 | debug-print-function ${FUNCNAME} "$@" |
| 579 | |
624 | |
| 580 | # Prefix compat: |
625 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
| 581 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
626 | eerror "Sorry, kdeprefix support has been removed." |
| 582 | EPREFIX= |
627 | eerror "Please remove kdeprefix from your USE variable." |
| 583 | EROOT=${ROOT} |
628 | die "kdeprefix support has been removed" |
| 584 | fi |
629 | fi |
| 585 | |
630 | |
| 586 | # Append missing trailing slash character |
631 | if [[ ${CATEGORY}/${PN} != kde-base/kdelibs && ${CATEGORY}/${PN} != kde-base/kde-env ]] && \ |
| 587 | [[ ${EROOT} = */ ]] || EROOT+="/" |
632 | { [[ ${KDE_REQUIRED} == always ]] || { [[ ${KDE_REQUIRED} == optional ]] && use kde; }; } && \ |
|
|
633 | has_version kde-base/kdelibs[kdeprefix]; then |
|
|
634 | eerror "Sorry, kdeprefix support has been removed." |
|
|
635 | eerror "Please rebuild kdelibs without kdeprefix support." |
|
|
636 | die "kdeprefix support has been removed" |
|
|
637 | fi |
| 588 | |
638 | |
| 589 | # QA ebuilds |
639 | # QA ebuilds |
| 590 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
640 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
| 591 | |
641 | |
| 592 | # Don't set KDEHOME during compilation, it will cause access violations |
642 | # Don't set KDEHOME during compilation, it will cause access violations |
| 593 | unset KDEHOME |
643 | unset KDEHOME |
| 594 | |
644 | |
| 595 | if [[ ${KDEBASE} = kde-base ]]; then |
645 | # Check if gcc compiler is fresh enough. |
| 596 | if use kdeprefix; then |
646 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
| 597 | KDEDIR=/usr/kde/${SLOT} |
647 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
| 598 | else |
648 | # executions consume quite some time. |
|
|
649 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
650 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
651 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
|
|
652 | |
| 599 | KDEDIR=/usr |
653 | KDEDIR=/usr |
| 600 | fi |
|
|
| 601 | : ${PREFIX:=${KDEDIR}} |
|
|
| 602 | else |
|
|
| 603 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
|
|
| 604 | KDEDIR= |
|
|
| 605 | local kde_minimal_met |
|
|
| 606 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
| 607 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
|
|
| 608 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
|
|
| 609 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
|
|
| 610 | KDEDIR=/usr/kde/${slot} |
|
|
| 611 | else |
|
|
| 612 | KDEDIR=/usr |
|
|
| 613 | fi |
|
|
| 614 | break; |
|
|
| 615 | fi |
|
|
| 616 | done |
|
|
| 617 | unset slot |
|
|
| 618 | |
|
|
| 619 | # Bail out if kdelibs required but not found |
|
|
| 620 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
|
|
| 621 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
|
|
| 622 | else |
|
|
| 623 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
|
|
| 624 | fi |
|
|
| 625 | |
|
|
| 626 | : ${PREFIX:=/usr} |
654 | : ${PREFIX:=/usr} |
| 627 | fi |
655 | EKDEDIR=${EPREFIX}/usr |
| 628 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
| 629 | |
656 | |
| 630 | # Point pkg-config path to KDE *.pc files |
657 | # Point pkg-config path to KDE *.pc files |
| 631 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
658 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
| 632 | # Point to correct QT plugins path |
659 | # Point to correct QT plugins path |
| 633 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
660 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
| … | |
… | |
| 641 | # This function unpacks the source tarballs for KDE4 applications. |
668 | # This function unpacks the source tarballs for KDE4 applications. |
| 642 | kde4-base_src_unpack() { |
669 | kde4-base_src_unpack() { |
| 643 | debug-print-function ${FUNCNAME} "$@" |
670 | debug-print-function ${FUNCNAME} "$@" |
| 644 | |
671 | |
| 645 | if [[ ${BUILD_TYPE} = live ]]; then |
672 | if [[ ${BUILD_TYPE} = live ]]; then |
| 646 | if has subversion ${INHERITED}; then |
673 | case ${KDE_SCM} in |
|
|
674 | svn) |
| 647 | migrate_store_dir |
675 | migrate_store_dir |
| 648 | subversion_src_unpack |
676 | subversion_src_unpack |
| 649 | elif has git ${INHERITED}; then |
|
|
| 650 | git_src_unpack |
|
|
| 651 | fi |
|
|
| 652 | elif [[ ${EAPI} == 2 ]]; then |
|
|
| 653 | local file |
|
|
| 654 | for file in ${A}; do |
|
|
| 655 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
|
|
| 656 | # directly, so we do it ourselves (using the exact same code as portage) |
|
|
| 657 | case ${file} in |
|
|
| 658 | *.tar.xz) |
|
|
| 659 | echo ">>> Unpacking ${file} to ${PWD}" |
|
|
| 660 | xz -dc "${DISTDIR}"/${file} | tar xof - |
|
|
| 661 | assert "failed unpacking ${file}" |
|
|
| 662 | ;; |
677 | ;; |
| 663 | *) |
678 | git) |
| 664 | unpack ${file} |
679 | git-2_src_unpack |
| 665 | ;; |
680 | ;; |
| 666 | esac |
681 | esac |
| 667 | done |
|
|
| 668 | else |
682 | else |
| 669 | # For EAPI >= 3, we can just use unpack() directly |
|
|
| 670 | unpack ${A} |
683 | unpack ${A} |
| 671 | fi |
684 | fi |
| 672 | } |
685 | } |
| 673 | |
686 | |
| 674 | # @FUNCTION: kde4-base_src_prepare |
687 | # @FUNCTION: kde4-base_src_prepare |
| … | |
… | |
| 678 | # enable_selected_linguas() and enable_selected_doc_linguas() |
691 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 679 | # in kde4-functions.eclass(5) for further details. |
692 | # in kde4-functions.eclass(5) for further details. |
| 680 | kde4-base_src_prepare() { |
693 | kde4-base_src_prepare() { |
| 681 | debug-print-function ${FUNCNAME} "$@" |
694 | debug-print-function ${FUNCNAME} "$@" |
| 682 | |
695 | |
|
|
696 | # enable handbook and linguas only when not using live ebuild |
|
|
697 | |
| 683 | # Only enable selected languages, used for KDE extragear apps. |
698 | # Only enable selected languages, used for KDE extragear apps. |
| 684 | if [[ -n ${KDE_LINGUAS} ]]; then |
699 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 685 | enable_selected_linguas |
700 | enable_selected_linguas |
| 686 | fi |
701 | fi |
| 687 | |
702 | |
| 688 | # Enable/disable handbooks for kde4-base packages |
703 | # Enable/disable handbooks for kde4-base packages |
| 689 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
704 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
| 690 | # kdelibs inherits kde4-base but handle installing the handbook itself |
705 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 691 | if ! has kde4-meta ${INHERITED}; then |
706 | if ! has kde4-meta ${INHERITED} && has handbook ${IUSE//+}; then |
| 692 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
707 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
708 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
709 | # documentation in kde4-functions |
|
|
710 | : ${KDE_DOC_DIRS:=doc} |
|
|
711 | local dir |
|
|
712 | for dir in ${KDE_DOC_DIRS}; do |
|
|
713 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
714 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
715 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
716 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
717 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
718 | done |
|
|
719 | fi |
|
|
720 | else |
|
|
721 | enable_selected_doc_linguas |
|
|
722 | fi |
| 693 | fi |
723 | fi |
| 694 | |
724 | |
| 695 | # SCM bootstrap |
725 | # SCM bootstrap |
| 696 | if [[ ${BUILD_TYPE} = live ]]; then |
726 | if [[ ${BUILD_TYPE} = live ]]; then |
| 697 | if has subversion ${INHERITED}; then |
727 | case ${KDE_SCM} in |
| 698 | subversion_src_prepare |
728 | svn) subversion_src_prepare ;; |
| 699 | elif has git ${INHERITED}; then |
729 | esac |
| 700 | git_src_prepare |
|
|
| 701 | fi |
|
|
| 702 | fi |
730 | fi |
| 703 | |
731 | |
| 704 | # Apply patches |
732 | # Apply patches |
| 705 | base_src_prepare |
733 | base_src_prepare |
| 706 | |
734 | |
| … | |
… | |
| 773 | QTEST_COLORED=1 |
801 | QTEST_COLORED=1 |
| 774 | |
802 | |
| 775 | # Shadow existing /usr installations |
803 | # Shadow existing /usr installations |
| 776 | unset KDEDIRS |
804 | unset KDEDIRS |
| 777 | |
805 | |
| 778 | # Handle kdeprefix-ed KDE |
|
|
| 779 | if [[ ${KDEDIR} != /usr ]]; then |
|
|
| 780 | # Override some environment variables - only when kdeprefix is different, |
|
|
| 781 | # to not break ccache/distcc |
|
|
| 782 | PATH="${EKDEDIR}/bin:${PATH}" |
|
|
| 783 | |
|
|
| 784 | # Append library search path |
|
|
| 785 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
|
|
| 786 | |
|
|
| 787 | # Append full RPATH |
|
|
| 788 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
|
|
| 789 | |
|
|
| 790 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
|
|
| 791 | # when more are present |
|
|
| 792 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
|
|
| 793 | fi |
|
|
| 794 | |
|
|
| 795 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
806 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
| 796 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
807 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/$(get_libdir)/qt4) |
| 797 | #kde-config -path data unavailable when cross-compiling |
808 | #kde-config -path data unavailable when cross-compiling |
| 798 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
809 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
| 799 | |
810 | |
| 800 | # Handle kdeprefix in application itself |
|
|
| 801 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
|
|
| 802 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
811 | # sysconf needs to be /etc, not /usr/etc |
| 803 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
812 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
| 804 | fi |
|
|
| 805 | |
813 | |
| 806 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
814 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 807 | mycmakeargs=(${mycmakeargs}) |
815 | mycmakeargs=(${mycmakeargs}) |
| 808 | fi |
816 | fi |
| 809 | |
817 | |
| … | |
… | |
| 830 | # Override this value, set in kde4-base_src_configure() |
838 | # Override this value, set in kde4-base_src_configure() |
| 831 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
839 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 832 | cmake-utils_src_configure |
840 | cmake-utils_src_configure |
| 833 | kde4-base_src_compile |
841 | kde4-base_src_compile |
| 834 | |
842 | |
| 835 | if [[ ${VIRTUALX_REQUIRED} == always ]] || |
843 | # When run as normal user during ebuild development with the ebuild command, the |
| 836 | ( [[ ${VIRTUALX_REQUIRED} != manual ]] && use test ); then |
844 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
845 | # emerge or on the tinderbox. |
|
|
846 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
847 | unset DBUS_SESSION_BUS_ADDRESS |
| 837 | |
848 | |
| 838 | if [[ ${maketype} ]]; then |
849 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
850 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
851 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
| 839 | # surprise- we are already INSIDE virtualmake!!! |
852 | # surprise- we are already INSIDE virtualmake!!! |
| 840 | ewarn "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
853 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
| 841 | ewarn " You may NOT set maketype or call virtualmake from the ebuild. Applying workaround." |
854 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
855 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
856 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
| 842 | cmake-utils_src_test |
857 | cmake-utils_src_test |
| 843 | else |
858 | else |
| 844 | export maketype="cmake-utils_src_test" |
859 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
| 845 | virtualmake |
|
|
| 846 | fi |
860 | fi |
| 847 | else |
861 | else |
| 848 | cmake-utils_src_test |
862 | cmake-utils_src_test |
| 849 | fi |
863 | fi |
| 850 | } |
864 | } |
| … | |
… | |
| 852 | # @FUNCTION: kde4-base_src_install |
866 | # @FUNCTION: kde4-base_src_install |
| 853 | # @DESCRIPTION: |
867 | # @DESCRIPTION: |
| 854 | # Function for installing KDE4 applications. |
868 | # Function for installing KDE4 applications. |
| 855 | kde4-base_src_install() { |
869 | kde4-base_src_install() { |
| 856 | debug-print-function ${FUNCNAME} "$@" |
870 | debug-print-function ${FUNCNAME} "$@" |
| 857 | |
|
|
| 858 | # Prefix support, for usage in ebuilds |
|
|
| 859 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 860 | ED=${D} |
|
|
| 861 | fi |
|
|
| 862 | |
871 | |
| 863 | if [[ -n ${KMSAVELIBS} ]] ; then |
872 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 864 | install_library_dependencies |
873 | install_library_dependencies |
| 865 | fi |
874 | fi |
| 866 | |
875 | |
| 867 | # Install common documentation of KDE4 applications |
876 | # Install common documentation of KDE4 applications |
| 868 | local doc |
877 | local doc |
| 869 | if ! has kde4-meta ${INHERITED}; then |
878 | if ! has kde4-meta ${INHERITED}; then |
| 870 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
879 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 871 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
880 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 872 | done |
881 | done |
| 873 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
882 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 874 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
883 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
| 875 | done |
884 | done |
| 876 | fi |
885 | fi |
| 877 | |
886 | |
| 878 | cmake-utils_src_install |
887 | cmake-utils_src_install |
|
|
888 | |
|
|
889 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
|
|
890 | # because then khelpcenter can't find the docs |
|
|
891 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
|
|
892 | docompress -x ${PREFIX}/share/doc/HTML |
|
|
893 | } |
|
|
894 | |
|
|
895 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
896 | # @DESCRIPTION: |
|
|
897 | # Function storing icon caches |
|
|
898 | kde4-base_pkg_preinst() { |
|
|
899 | debug-print-function ${FUNCNAME} "$@" |
|
|
900 | |
|
|
901 | gnome2_icon_savelist |
| 879 | } |
902 | } |
| 880 | |
903 | |
| 881 | # @FUNCTION: kde4-base_pkg_postinst |
904 | # @FUNCTION: kde4-base_pkg_postinst |
| 882 | # @DESCRIPTION: |
905 | # @DESCRIPTION: |
| 883 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
906 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 884 | kde4-base_pkg_postinst() { |
907 | kde4-base_pkg_postinst() { |
| 885 | debug-print-function ${FUNCNAME} "$@" |
908 | debug-print-function ${FUNCNAME} "$@" |
| 886 | |
909 | |
|
|
910 | gnome2_icon_cache_update |
|
|
911 | fdo-mime_desktop_database_update |
|
|
912 | fdo-mime_mime_database_update |
| 887 | buildsycoca |
913 | buildsycoca |
| 888 | |
914 | |
| 889 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
915 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 890 | echo |
916 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 891 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
| 892 | einfo "Use it at your own risk." |
|
|
| 893 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
| 894 | echo |
|
|
| 895 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
| 896 | # warning about kdeprefix for non-live users |
|
|
| 897 | echo |
|
|
| 898 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
| 899 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
| 900 | ewarn "with KDE update strategies." |
|
|
| 901 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
| 902 | ewarn "take responsibilities for dead kittens." |
|
|
| 903 | echo |
|
|
| 904 | fi |
|
|
| 905 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
| 906 | # warn about not supported approach |
|
|
| 907 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
| 908 | echo |
917 | echo |
|
|
918 | ewarn "WARNING! you have kdeenable final useflag enabled." |
|
|
919 | ewarn "This useflag needs to be enabled on ALL kde using packages and" |
|
|
920 | ewarn "is known to cause issues." |
|
|
921 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
922 | ewarn "take responsibilities for dead kittens." |
|
|
923 | echo |
|
|
924 | fi |
|
|
925 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
926 | echo |
|
|
927 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
928 | einfo "Use it at your own risk." |
|
|
929 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
930 | echo |
|
|
931 | fi |
|
|
932 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
933 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
934 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
935 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
936 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
937 | echo |
| 909 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
938 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
| 910 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
939 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
| 911 | ewarn "With this setting you are unsupported by KDE team." |
940 | ewarn "With this setting you are unsupported by KDE team." |
| 912 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
941 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
942 | fi |
| 913 | fi |
943 | fi |
| 914 | fi |
944 | fi |
| 915 | } |
945 | } |
| 916 | |
946 | |
| 917 | # @FUNCTION: kde4-base_pkg_postrm |
947 | # @FUNCTION: kde4-base_pkg_postrm |
| 918 | # @DESCRIPTION: |
948 | # @DESCRIPTION: |
| 919 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
949 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 920 | kde4-base_pkg_postrm() { |
950 | kde4-base_pkg_postrm() { |
| 921 | debug-print-function ${FUNCNAME} "$@" |
951 | debug-print-function ${FUNCNAME} "$@" |
| 922 | |
952 | |
|
|
953 | gnome2_icon_cache_update |
|
|
954 | fdo-mime_desktop_database_update |
|
|
955 | fdo-mime_mime_database_update |
| 923 | buildsycoca |
956 | buildsycoca |
| 924 | } |
957 | } |