| 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.69 2010/09/09 17:02:30 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.89 2011/04/22 11:18:34 scarabeus 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 | inherit kde4-functions base eutils |
16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # For proper description see virtualx.eclass manpage. |
|
|
19 | # Here we redefine default value to be manual, if your package needs virtualx |
|
|
20 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
|
|
21 | : ${VIRTUALX_REQUIRED:=manual} |
| 17 | |
22 | |
| 18 | get_build_type |
23 | inherit kde4-functions fdo-mime gnome2-utils base virtualx versionator eutils |
|
|
24 | |
| 19 | if [[ ${BUILD_TYPE} = live ]]; then |
25 | if [[ ${BUILD_TYPE} = live ]]; then |
| 20 | if [[ ${KDEBASE} = kdevelop ]]; then |
26 | case ${KDE_SCM} in |
| 21 | inherit git |
|
|
| 22 | else |
|
|
| 23 | inherit subversion |
27 | svn) inherit subversion ;; |
| 24 | fi |
28 | git) inherit git ;; |
|
|
29 | esac |
| 25 | fi |
30 | fi |
| 26 | |
31 | |
| 27 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
32 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 28 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 29 | # 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'. |
| … | |
… | |
| 54 | # One may override this variable to raise version requirements. |
59 | # One may override this variable to raise version requirements. |
| 55 | # 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. |
| 56 | # Note that it is fixed to ${SLOT} for kde-base packages. |
61 | # Note that it is fixed to ${SLOT} for kde-base packages. |
| 57 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
62 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
| 58 | |
63 | |
| 59 | # Set slot for packages in kde-base, koffice and kdevelop |
64 | # Set slot for KDEBASE known packages |
| 60 | case ${KDEBASE} in |
65 | case ${KDEBASE} in |
| 61 | kde-base) |
66 | kde-base) |
| 62 | # Determine SLOT from PVs |
67 | SLOT=$(_calculate_kde_slot) |
| 63 | case ${PV} in |
68 | [[ -z ${SLOT} ]] && die "Unsupported ${PV}" |
| 64 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
|
|
| 65 | 4.6* | 4.5.[6-9]*) SLOT="4.6" ;; |
|
|
| 66 | 4.5* | 4.4.[6-9]*) SLOT="4.5" ;; |
|
|
| 67 | 4.4* | 4.3.[6-9]*) SLOT="4.4" ;; |
|
|
| 68 | 9999*) SLOT="live" ;; # regular live |
|
|
| 69 | *) die "Unsupported ${PV}" ;; |
|
|
| 70 | esac |
|
|
| 71 | KDE_MINIMAL="${SLOT}" |
69 | KDE_MINIMAL="${SLOT}" |
| 72 | ;; |
70 | ;; |
| 73 | koffice) |
71 | koffice) |
| 74 | SLOT="2" |
72 | SLOT="2" |
| 75 | ;; |
73 | ;; |
| … | |
… | |
| 102 | fi |
100 | fi |
| 103 | SLOT="4" |
101 | SLOT="4" |
| 104 | ;; |
102 | ;; |
| 105 | esac |
103 | esac |
| 106 | |
104 | |
| 107 | slot_is_at_least 4.5 ${KDE_MINIMAL} && CMAKE_MIN_VERSION="2.8.1" |
|
|
| 108 | |
|
|
| 109 | inherit ${buildsystem_eclass} |
105 | inherit ${buildsystem_eclass} |
| 110 | |
106 | |
| 111 | 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 |
| 112 | |
108 | |
| 113 | unset buildsystem_eclass |
109 | unset buildsystem_eclass |
| 114 | unset export_fns |
110 | unset export_fns |
|
|
111 | |
|
|
112 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Is qt-declarative required? Possible values are 'always', 'optional' and 'never'. |
|
|
115 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
116 | DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}" |
|
|
117 | |
|
|
118 | # @ECLASS-VARIABLE: QTHELP_REQUIRED |
|
|
119 | # @DESCRIPTION: |
|
|
120 | # Is qt-assistant required? Possible values are 'always', 'optional' and 'never'. |
|
|
121 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
122 | QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}" |
| 115 | |
123 | |
| 116 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
124 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
| 117 | # @DESCRIPTION: |
125 | # @DESCRIPTION: |
| 118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
126 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
| 119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
127 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| … | |
… | |
| 139 | |
147 | |
| 140 | # @ECLASS-VARIABLE: KDE_REQUIRED |
148 | # @ECLASS-VARIABLE: KDE_REQUIRED |
| 141 | # @DESCRIPTION: |
149 | # @DESCRIPTION: |
| 142 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
150 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
| 143 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
151 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
| 144 | # If set to always or optional, KDE_MINIMAL may be overriden as well. |
152 | # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well. |
| 145 | # Note that for kde-base packages this variable is fixed to 'always'. |
153 | # Note that for kde-base packages this variable is fixed to 'always'. |
| 146 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
154 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
| 147 | |
155 | |
| 148 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
156 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
| 149 | # @DESCRIPTION: |
157 | # @DESCRIPTION: |
| 150 | # Set to enable handbook in application. It adds +handbook to IUSE, handbook dirs |
158 | # Set to enable handbook in application. Possible values are 'always', 'optional' |
|
|
159 | # (handbook USE flag) and 'never'. |
|
|
160 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
161 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
| 151 | # to KMEXTRA and ensures buildtime and runtime dependencies. |
162 | # ensures buildtime and runtime dependencies. |
| 152 | [[ -n ${KDE_HANDBOOK} ]] && IUSE+=" +handbook" |
163 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
164 | |
|
|
165 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
166 | # @DESCRIPTION: |
|
|
167 | # Set this varible if you want your live package to manage its |
|
|
168 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
169 | # and translations in live ebuilds) |
|
|
170 | if [[ ${BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} && ${KDEBASE} != "kde-base" ]]; then |
|
|
171 | KDE_HANDBOOK=never |
|
|
172 | KDE_LINGUAS="" |
|
|
173 | fi |
| 153 | |
174 | |
| 154 | # Setup packages inheriting this eclass |
175 | # Setup packages inheriting this eclass |
| 155 | case ${KDEBASE} in |
176 | case ${KDEBASE} in |
| 156 | kde-base) |
177 | kde-base) |
| 157 | HOMEPAGE="http://www.kde.org/" |
178 | HOMEPAGE="http://www.kde.org/" |
| … | |
… | |
| 186 | ;; |
207 | ;; |
| 187 | esac |
208 | esac |
| 188 | |
209 | |
| 189 | # @ECLASS-VARIABLE: QT_MINIMAL |
210 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 190 | # @DESCRIPTION: |
211 | # @DESCRIPTION: |
| 191 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
212 | # Determine version of qt we enforce as minimal for the package. |
| 192 | # 4.6.0 for 4.4 and 4.6.3 for 4.5 and later |
|
|
| 193 | if slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
213 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
|
|
214 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
|
|
215 | else |
| 194 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
216 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
| 195 | else |
|
|
| 196 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
|
|
| 197 | fi |
217 | fi |
|
|
218 | |
|
|
219 | # Declarative dependencies |
|
|
220 | qtdeclarativedepend=" |
|
|
221 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
|
|
222 | " |
|
|
223 | case ${DECLARATIVE_REQUIRED} in |
|
|
224 | always) |
|
|
225 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
|
|
226 | ;; |
|
|
227 | optional) |
|
|
228 | IUSE+=" declarative" |
|
|
229 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
|
|
230 | ;; |
|
|
231 | *) ;; |
|
|
232 | esac |
|
|
233 | unset qtdeclarativedepend |
|
|
234 | |
|
|
235 | # QtHelp dependencies |
|
|
236 | qthelpdepend=" |
|
|
237 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
238 | " |
|
|
239 | case ${QTHELP_REQUIRED} in |
|
|
240 | always) |
|
|
241 | COMMONDEPEND+=" ${qthelpdepend}" |
|
|
242 | ;; |
|
|
243 | optional) |
|
|
244 | IUSE+=" qthelp" |
|
|
245 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
246 | ;; |
|
|
247 | esac |
|
|
248 | unset qthelpdepend |
| 198 | |
249 | |
| 199 | # OpenGL dependencies |
250 | # OpenGL dependencies |
| 200 | qtopengldepend=" |
251 | qtopengldepend=" |
| 201 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
252 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
| 202 | " |
253 | " |
| … | |
… | |
| 271 | unset cppuintdepend |
322 | unset cppuintdepend |
| 272 | |
323 | |
| 273 | # KDE dependencies |
324 | # KDE dependencies |
| 274 | # Qt accessibility classes are needed in various places, bug 325461 |
325 | # Qt accessibility classes are needed in various places, bug 325461 |
| 275 | kdecommondepend=" |
326 | kdecommondepend=" |
|
|
327 | dev-lang/perl |
| 276 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
328 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| 277 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
329 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
| 278 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
330 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 279 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
331 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 280 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
332 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| … | |
… | |
| 284 | x11-libs/libXext |
336 | x11-libs/libXext |
| 285 | x11-libs/libXt |
337 | x11-libs/libXt |
| 286 | x11-libs/libXxf86vm |
338 | x11-libs/libXxf86vm |
| 287 | ) |
339 | ) |
| 288 | " |
340 | " |
| 289 | #perl is not needed on host (+ difficult crosscompilation) |
|
|
| 290 | tc-is-cross-compiler || kdecommondepend+=" dev-lang/perl" |
|
|
| 291 | |
341 | |
| 292 | if [[ ${PN} != kdelibs ]]; then |
342 | if [[ ${PN} != kdelibs ]]; then |
| 293 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
| 294 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
343 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| 295 | else |
|
|
| 296 | kdecommondepend+=" |
|
|
| 297 | >=kde-base/kdelibs-${KDE_MINIMAL} |
|
|
| 298 | " |
|
|
| 299 | if [[ ${KDEBASE} = kdevelop ]]; then |
344 | if [[ ${KDEBASE} = kdevelop ]]; then |
| 300 | if [[ ${PN} != kdevplatform ]]; then |
345 | if [[ ${PN} != kdevplatform ]]; then |
| 301 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
346 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
| 302 | # @DESCRIPTION: |
347 | # @DESCRIPTION: |
| 303 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
348 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
| 304 | # Applies to KDEBASE=kdevelop only. |
349 | # Applies to KDEBASE=kdevelop only. |
| 305 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
350 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
| 306 | case ${KDEVPLATFORM_REQUIRED} in |
351 | case ${KDEVPLATFORM_REQUIRED} in |
| 307 | always) |
352 | always) |
| 308 | kdecommondepend+=" |
353 | kdecommondepend+=" |
| 309 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
354 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
| 310 | " |
355 | " |
| 311 | ;; |
356 | ;; |
| 312 | *) ;; |
357 | *) ;; |
| 313 | esac |
358 | esac |
| 314 | fi |
|
|
| 315 | fi |
359 | fi |
| 316 | fi |
360 | fi |
| 317 | fi |
361 | fi |
|
|
362 | |
| 318 | kdedepend=" |
363 | kdedepend=" |
| 319 | dev-util/automoc |
364 | dev-util/automoc |
| 320 | dev-util/pkgconfig |
365 | dev-util/pkgconfig |
| 321 | !aqua? ( |
366 | !aqua? ( |
| 322 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
367 | >=x11-libs/libXtst-1.1.0 |
| 323 | x11-proto/xf86vidmodeproto |
368 | x11-proto/xf86vidmodeproto |
| 324 | ) |
369 | ) |
| 325 | " |
370 | " |
| 326 | |
371 | |
| 327 | # Handbook handling - dependencies |
|
|
| 328 | if [[ -n ${KDE_HANDBOOK} ]]; then |
|
|
| 329 | kdedepend+=" |
372 | kderdepend="" |
| 330 | handbook? ( |
373 | |
| 331 | app-text/docbook-xml-dtd:4.2 |
374 | # all packages needs oxygen icons for basic iconset |
| 332 | app-text/docbook-xsl-stylesheets |
|
|
| 333 | ) |
|
|
| 334 | " |
|
|
| 335 | if [[ ${PN} != kdelibs ]]; then |
375 | if [[ ${PN} != oxygen-icons ]]; then |
| 336 | if [[ ${KDEBASE} = kde-base ]]; then |
376 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
| 337 | PDEPEND+=" handbook? ( $(add_kdebase_dep kdelibs 'handbook') )" |
|
|
| 338 | else |
|
|
| 339 | PDEPEND+=" handbook? ( >=kde-base/kdelibs-${KDE_MINIMAL}[handbook] )" |
|
|
| 340 | fi |
|
|
| 341 | elif [[ ${PN} != khelpcenter ]]; then |
|
|
| 342 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
| 343 | PDEPEND+=" handbook? ( $(add_kdebase_dep khelpcenter 'handbook') )" |
|
|
| 344 | else |
|
|
| 345 | PDEPEND+=" handbook? ( >=kde-base/khelpcenter-${KDE_MINIMAL}[handbook] )" |
|
|
| 346 | fi |
|
|
| 347 | fi |
|
|
| 348 | fi |
377 | fi |
|
|
378 | |
|
|
379 | # add a dependency over kde-l10n if EAPI4 is around |
|
|
380 | if [[ ${KDEBASE} != "kde-base" ]] && [[ -n ${KDE_LINGUAS} ]] && has "${EAPI:-0}" 4; then |
|
|
381 | for _lingua in ${KDE_LINGUAS}; do |
|
|
382 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
383 | # but only for selected ones. |
|
|
384 | # this can't be done on one line because if user doesn't use any localisation |
|
|
385 | # then he is probably not interested in kde-l10n at all. |
|
|
386 | kderdepend+=" |
|
|
387 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n linguas_${_lingua}(+)?) ) |
|
|
388 | " |
|
|
389 | done |
|
|
390 | unset _lingua |
|
|
391 | fi |
|
|
392 | |
|
|
393 | kdehandbookdepend=" |
|
|
394 | app-text/docbook-xml-dtd:4.2 |
|
|
395 | app-text/docbook-xsl-stylesheets |
|
|
396 | " |
|
|
397 | kdehandbookrdepend=" |
|
|
398 | $(add_kdebase_dep kdelibs 'handbook') |
|
|
399 | " |
|
|
400 | case ${KDE_HANDBOOK} in |
|
|
401 | always) |
|
|
402 | kdedepend+=" ${kdehandbookdepend}" |
|
|
403 | [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}" |
|
|
404 | ;; |
|
|
405 | optional) |
|
|
406 | IUSE+=" +handbook" |
|
|
407 | kdedepend+=" handbook? ( ${kdehandbookdepend} )" |
|
|
408 | [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )" |
|
|
409 | ;; |
|
|
410 | *) ;; |
|
|
411 | esac |
|
|
412 | unset kdehandbookdepend kdehandbookrdepend |
| 349 | |
413 | |
| 350 | case ${KDE_REQUIRED} in |
414 | case ${KDE_REQUIRED} in |
| 351 | always) |
415 | always) |
| 352 | IUSE+=" aqua" |
416 | IUSE+=" aqua" |
| 353 | COMMONDEPEND+=" ${kdecommondepend}" |
417 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}" |
| 354 | DEPEND+=" ${kdedepend}" |
418 | [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}" |
|
|
419 | [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}" |
| 355 | ;; |
420 | ;; |
| 356 | optional) |
421 | optional) |
| 357 | IUSE+=" aqua kde" |
422 | IUSE+=" aqua kde" |
| 358 | COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
423 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
| 359 | DEPEND+=" kde? ( ${kdedepend} )" |
424 | [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )" |
|
|
425 | [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )" |
| 360 | ;; |
426 | ;; |
| 361 | *) ;; |
427 | *) ;; |
| 362 | esac |
428 | esac |
| 363 | |
429 | |
| 364 | unset kdecommondepend kdedepend |
430 | unset kdecommondepend kdedepend kderdepend |
| 365 | |
431 | |
| 366 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
432 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
| 367 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
433 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
| 368 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
434 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
| 369 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: PDEPEND is ${PDEPEND}" |
|
|
| 370 | |
435 | |
| 371 | # Accumulate dependencies set by this eclass |
436 | # Accumulate dependencies set by this eclass |
| 372 | DEPEND+=" ${COMMONDEPEND}" |
437 | DEPEND+=" ${COMMONDEPEND}" |
| 373 | RDEPEND+=" ${COMMONDEPEND}" |
438 | RDEPEND+=" ${COMMONDEPEND}" |
| 374 | unset COMMONDEPEND |
439 | unset COMMONDEPEND |
| 375 | |
440 | |
| 376 | # Add experimental kdeenablefinal, disabled by default |
441 | # Add experimental kdeenablefinal, masked by default |
| 377 | IUSE+=" kdeenablefinal" |
442 | IUSE+=" kdeenablefinal" |
| 378 | |
443 | |
| 379 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
444 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 380 | # koffice ebuild, the URI should be set in the ebuild itself |
445 | # koffice ebuild, the URI should be set in the ebuild itself |
| 381 | case ${BUILD_TYPE} in |
446 | _calculate_src_uri() { |
| 382 | live) |
447 | debug-print-function ${FUNCNAME} "$@" |
|
|
448 | |
|
|
449 | local _kmname _kmname_pv |
|
|
450 | |
|
|
451 | # we calculate URI only for known KDEBASE modules |
|
|
452 | [[ -n ${KDEBASE} ]] || return |
|
|
453 | |
|
|
454 | # calculate tarball module name |
|
|
455 | if [[ -n ${KMNAME} ]]; then |
|
|
456 | # fixup kdebase-apps name |
|
|
457 | case ${KMNAME} in |
|
|
458 | kdebase-apps) |
|
|
459 | _kmname="kdebase" ;; |
|
|
460 | *) |
|
|
461 | _kmname="${KMNAME}" ;; |
|
|
462 | esac |
|
|
463 | else |
|
|
464 | _kmname=${PN} |
|
|
465 | fi |
|
|
466 | _kmname_pv="${_kmname}-${PV}" |
|
|
467 | case ${KDEBASE} in |
|
|
468 | kde-base) |
|
|
469 | case ${PV} in |
|
|
470 | 4.[456].8[05] | 4.[456].9[023568] | 4.5.94.1) |
|
|
471 | # Unstable KDE SC releases |
|
|
472 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
473 | # KDEPIM IS SPECIAL |
|
|
474 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/unstable/kdepim/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
475 | ;; |
|
|
476 | 4.4.[6789] | 4.4.1?*) |
|
|
477 | # Stable kdepim releases |
|
|
478 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
479 | ;; |
|
|
480 | *) |
|
|
481 | # Stable KDE SC releases |
|
|
482 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
483 | ;; |
|
|
484 | esac |
|
|
485 | ;; |
|
|
486 | koffice) |
|
|
487 | case ${PV} in |
|
|
488 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
489 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
490 | esac |
|
|
491 | ;; |
|
|
492 | kdevelop) |
|
|
493 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
494 | ;; |
|
|
495 | esac |
|
|
496 | } |
|
|
497 | |
|
|
498 | _calculate_live_repo() { |
|
|
499 | debug-print-function ${FUNCNAME} "$@" |
|
|
500 | |
| 383 | SRC_URI="" |
501 | SRC_URI="" |
| 384 | if has subversion ${INHERITED}; then |
502 | case ${KDE_SCM} in |
|
|
503 | svn) |
| 385 | # Determine branch URL based on live type |
504 | # Determine branch URL based on live type |
| 386 | local branch_prefix |
505 | local branch_prefix |
| 387 | case ${PV} in |
506 | case ${PV} in |
| 388 | 9999*) |
507 | 9999*) |
| 389 | # trunk |
508 | # trunk |
| … | |
… | |
| 450 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| 451 | # This variable is used for specifying the timeout between svn synces |
570 | # This variable is used for specifying the timeout between svn synces |
| 452 | # for kde-base and koffice modules. Does not affect misc apps. |
571 | # for kde-base and koffice modules. Does not affect misc apps. |
| 453 | # Default value is 1 hour. |
572 | # Default value is 1 hour. |
| 454 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
573 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
| 455 | elif has git ${INHERITED}; then |
|
|
| 456 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
| 457 | KMMODULE="${PN}" |
|
|
| 458 | fi |
|
|
| 459 | case ${KDEBASE} in |
|
|
| 460 | kdevelop) |
|
|
| 461 | EGIT_REPO_URI="git://gitorious.org/${KMNAME}/${KMMODULE}.git" |
|
|
| 462 | ;; |
|
|
| 463 | esac |
|
|
| 464 | fi |
|
|
| 465 | ;; |
574 | ;; |
| 466 | *) |
575 | git) |
|
|
576 | local _kmname |
|
|
577 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
578 | # @DESCRIPTION: |
|
|
579 | # This variable allows easy overriding of default kde mirror service |
|
|
580 | # (anongit) with anything else you might want to use. |
|
|
581 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
582 | |
|
|
583 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
584 | # @DESCRIPTION: |
|
|
585 | # This variable allows overriding of default repository |
|
|
586 | # name. Specify only if this differ from PN and KMNAME. |
| 467 | if [[ -n ${KDEBASE} ]]; then |
587 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
588 | # the repository and kmname different |
|
|
589 | _kmname=${EGIT_REPONAME} |
| 468 | if [[ -n ${KMNAME} ]]; then |
590 | elif [[ -n ${KMNAME} ]]; then |
| 469 | case ${KMNAME} in |
|
|
| 470 | kdebase-apps) |
|
|
| 471 | _kmname="kdebase" ;; |
|
|
| 472 | *) |
|
|
| 473 | _kmname="${KMNAME}" ;; |
591 | _kmname=${KMNAME} |
| 474 | esac |
|
|
| 475 | else |
592 | else |
| 476 | _kmname=${PN} |
593 | _kmname=${PN} |
| 477 | fi |
594 | fi |
| 478 | _kmname_pv="${_kmname}-${PV}" |
595 | |
| 479 | case ${KDEBASE} in |
596 | # default branching |
| 480 | kde-base) |
|
|
| 481 | case ${PV} in |
597 | case ${PV} in |
| 482 | 4.[45].8[05] | 4.[45].9[02568]) |
598 | 9999*) ;; |
| 483 | # Normally packed unstable releases |
599 | *) |
| 484 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
600 | # set EGIT_BRANCH and EGIT_COMMIT to ${SLOT} |
| 485 | 4.[45].[6-9]*) |
601 | case ${_kmname} in |
| 486 | # Repacked tarballs: need to depend on xz-utils to ensure that they can be unpacked |
602 | kdeplasma-addons | kdepim | kdepim-runtime | kdepimlibs) |
| 487 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/src/${_kmname_pv}.tar.xz" |
603 | EGIT_BRANCH="${SLOT}" |
| 488 | DEPEND+=" app-arch/xz-utils" |
|
|
| 489 | ;; |
604 | ;; |
| 490 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
605 | *) EGIT_BRANCH="KDE/${SLOT}" ;; |
| 491 | esac |
606 | esac |
| 492 | ;; |
607 | ;; |
| 493 | koffice) |
608 | esac |
|
|
609 | |
|
|
610 | case $_kmname in |
|
|
611 | kdepim|kdepim-runtime) |
| 494 | case ${PV} in |
612 | case ${PV} in |
| 495 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
613 | # kdepim still did not branch |
| 496 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
614 | 4.6.9999) |
|
|
615 | EGIT_BRANCH="master" |
|
|
616 | ;; |
| 497 | esac |
617 | esac |
| 498 | ;; |
618 | ;; |
| 499 | kdevelop) |
|
|
| 500 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
| 501 | ;; |
|
|
| 502 | esac |
619 | esac |
| 503 | unset _kmname _kmname_pv |
620 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
| 504 | fi |
621 | EGIT_PROJECT="${_kmname}" |
|
|
622 | |
|
|
623 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
624 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
| 505 | ;; |
625 | ;; |
|
|
626 | esac |
|
|
627 | } |
|
|
628 | |
|
|
629 | case ${BUILD_TYPE} in |
|
|
630 | live) _calculate_live_repo ;; |
|
|
631 | *) _calculate_src_uri ;; |
| 506 | esac |
632 | esac |
| 507 | |
633 | |
| 508 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
634 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
| 509 | |
635 | |
| 510 | # @ECLASS-VARIABLE: PREFIX |
636 | # @ECLASS-VARIABLE: PREFIX |
| … | |
… | |
| 517 | # @DESCRIPTION: |
643 | # @DESCRIPTION: |
| 518 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
644 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
| 519 | # optional applications link |
645 | # optional applications link |
| 520 | kde4-base_pkg_setup() { |
646 | kde4-base_pkg_setup() { |
| 521 | debug-print-function ${FUNCNAME} "$@" |
647 | debug-print-function ${FUNCNAME} "$@" |
| 522 | |
|
|
| 523 | # Prefix compat: |
|
|
| 524 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 525 | EPREFIX= |
|
|
| 526 | EROOT=${ROOT} |
|
|
| 527 | fi |
|
|
| 528 | |
|
|
| 529 | # Append missing trailing slash character |
|
|
| 530 | [[ ${EROOT} = */ ]] || EROOT+="/" |
|
|
| 531 | |
648 | |
| 532 | # QA ebuilds |
649 | # QA ebuilds |
| 533 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
650 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
| 534 | |
651 | |
| 535 | # Don't set KDEHOME during compilation, it will cause access violations |
652 | # Don't set KDEHOME during compilation, it will cause access violations |
| … | |
… | |
| 584 | # This function unpacks the source tarballs for KDE4 applications. |
701 | # This function unpacks the source tarballs for KDE4 applications. |
| 585 | kde4-base_src_unpack() { |
702 | kde4-base_src_unpack() { |
| 586 | debug-print-function ${FUNCNAME} "$@" |
703 | debug-print-function ${FUNCNAME} "$@" |
| 587 | |
704 | |
| 588 | if [[ ${BUILD_TYPE} = live ]]; then |
705 | if [[ ${BUILD_TYPE} = live ]]; then |
| 589 | if has subversion ${INHERITED}; then |
706 | case ${KDE_SCM} in |
|
|
707 | svn) |
| 590 | migrate_store_dir |
708 | migrate_store_dir |
| 591 | subversion_src_unpack |
709 | subversion_src_unpack |
| 592 | elif has git ${INHERITED}; then |
710 | ;; |
|
|
711 | git) |
| 593 | git_src_unpack |
712 | git_src_unpack |
| 594 | fi |
|
|
| 595 | elif [[ ${EAPI} == 2 ]]; then |
|
|
| 596 | local file |
|
|
| 597 | for file in ${A}; do |
|
|
| 598 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
|
|
| 599 | # directly, so we do it ourselves (using the exact same code as portage) |
|
|
| 600 | case ${file} in |
|
|
| 601 | *.tar.xz) |
|
|
| 602 | echo ">>> Unpacking ${file} to ${PWD}" |
|
|
| 603 | xz -dc "${DISTDIR}"/${file} | tar xof - |
|
|
| 604 | assert "failed unpacking ${file}" |
|
|
| 605 | ;; |
713 | ;; |
| 606 | *) |
|
|
| 607 | unpack ${file} |
|
|
| 608 | ;; |
|
|
| 609 | esac |
714 | esac |
| 610 | done |
|
|
| 611 | else |
715 | else |
| 612 | # For EAPI >= 3, we can just use unpack() directly |
|
|
| 613 | unpack ${A} |
716 | unpack ${A} |
| 614 | fi |
717 | fi |
| 615 | } |
718 | } |
| 616 | |
719 | |
| 617 | # @FUNCTION: kde4-base_src_prepare |
720 | # @FUNCTION: kde4-base_src_prepare |
| … | |
… | |
| 621 | # enable_selected_linguas() and enable_selected_doc_linguas() |
724 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 622 | # in kde4-functions.eclass(5) for further details. |
725 | # in kde4-functions.eclass(5) for further details. |
| 623 | kde4-base_src_prepare() { |
726 | kde4-base_src_prepare() { |
| 624 | debug-print-function ${FUNCNAME} "$@" |
727 | debug-print-function ${FUNCNAME} "$@" |
| 625 | |
728 | |
|
|
729 | # enable handbook and linguas only when not using live ebuild |
|
|
730 | |
| 626 | # Only enable selected languages, used for KDE extragear apps. |
731 | # Only enable selected languages, used for KDE extragear apps. |
| 627 | if [[ -n ${KDE_LINGUAS} ]]; then |
732 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 628 | enable_selected_linguas |
733 | enable_selected_linguas |
| 629 | fi |
734 | fi |
| 630 | |
735 | |
| 631 | # Enable/disable handbooks for kde4-base packages |
736 | # Enable/disable handbooks for kde4-base packages |
| 632 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
737 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
| 633 | # kdelibs inherits kde4-base but handle installing the handbook itself |
738 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 634 | if ! has kde4-meta ${INHERITED}; then |
739 | if ! has kde4-meta ${INHERITED} && has handbook ${IUSE//+}; then |
| 635 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
740 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
741 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
742 | # documentation in kde4-functions |
|
|
743 | : ${KDE_DOC_DIRS:=doc} |
|
|
744 | local dir |
|
|
745 | for dir in ${KDE_DOC_DIRS}; do |
|
|
746 | sed -e "/^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
747 | -e "/^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
748 | -e "/^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
749 | -e "/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
750 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
751 | done |
|
|
752 | fi |
|
|
753 | else |
|
|
754 | enable_selected_doc_linguas |
|
|
755 | fi |
| 636 | fi |
756 | fi |
| 637 | |
757 | |
| 638 | # SCM bootstrap |
758 | # SCM bootstrap |
| 639 | if [[ ${BUILD_TYPE} = live ]]; then |
759 | if [[ ${BUILD_TYPE} = live ]]; then |
| 640 | if has subversion ${INHERITED}; then |
760 | case ${KDE_SCM} in |
| 641 | subversion_src_prepare |
761 | svn) subversion_src_prepare ;; |
| 642 | elif has git ${INHERITED}; then |
762 | esac |
| 643 | git_src_prepare |
|
|
| 644 | fi |
|
|
| 645 | fi |
763 | fi |
| 646 | |
764 | |
| 647 | # Apply patches |
765 | # Apply patches |
| 648 | base_src_prepare |
766 | base_src_prepare |
| 649 | |
767 | |
| … | |
… | |
| 653 | fi |
771 | fi |
| 654 | |
772 | |
| 655 | # Inject library dependencies |
773 | # Inject library dependencies |
| 656 | if [[ -n ${KMLOADLIBS} ]] ; then |
774 | if [[ -n ${KMLOADLIBS} ]] ; then |
| 657 | load_library_dependencies |
775 | load_library_dependencies |
|
|
776 | fi |
|
|
777 | |
|
|
778 | # Replace KDE4Workspace library targets |
|
|
779 | find "${S}" -name CMakeLists.txt \ |
|
|
780 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_TASKMANAGER_(LIBRARY|LIBS)\}/taskmanager/g' {} + \ |
|
|
781 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWORKSPACE_(LIBRARY|LIBS)\}/kworkspace/g' {} + \ |
|
|
782 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROLIFACES_(LIBRARY|LIBS)\}/solidcontrolifaces/g' {} + \ |
|
|
783 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROL_(LIBRARY|LIBS)\}/solidcontrol/g' {} + \ |
|
|
784 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PROCESSUI_(LIBRARY|LIBS)\}/processui/g' {} + \ |
|
|
785 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_LSOFUI_(LIBRARY|LIBS)\}/lsofui/g' {} + \ |
|
|
786 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PLASMACLOCK_(LIBRARY|LIBS)\}/plasmaclock/g' {} + \ |
|
|
787 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERYCLIENT_(LIBRARY|LIBS)\}/nepomukqueryclient/g' {} + \ |
|
|
788 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERY_(LIBRARY|LIBS)\}/nepomukquery/g' {} + \ |
|
|
789 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSCREENSAVER_(LIBRARY|LIBS)\}/kscreensaver/g' {} + \ |
|
|
790 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_WEATHERION_(LIBRARY|LIBS)\}/weather_ion/g' {} + \ |
|
|
791 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWINEFFECTS_(LIBRARY|LIBS)\}/kwineffects/g' {} + \ |
|
|
792 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KDECORATIONS_(LIBRARY|LIBS)\}/kdecorations/g' {} + \ |
|
|
793 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSGRD_(LIBRARY|LIBS)\}/ksgrd/g' {} + \ |
|
|
794 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KEPHAL_(LIBRARY|LIBS)\}/kephal/g' {} + \ |
|
|
795 | || die 'failed to replace KDE4Workspace library targets' |
|
|
796 | |
|
|
797 | # Hack for manuals relying on outdated DTD, only outside kde-base/koffice/... |
|
|
798 | if [[ -z ${KDEBASE} ]]; then |
|
|
799 | find "${S}" -name "*.docbook" \ |
|
|
800 | -exec sed -i -r \ |
|
|
801 | -e 's:-//KDE//DTD DocBook XML V4\.1(\..)?-Based Variant V1\.[01]//EN:-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN:g' {} + \ |
|
|
802 | || die 'failed to fix DocBook variant version' |
| 658 | fi |
803 | fi |
| 659 | } |
804 | } |
| 660 | |
805 | |
| 661 | # @FUNCTION: kde4-base_src_configure |
806 | # @FUNCTION: kde4-base_src_configure |
| 662 | # @DESCRIPTION: |
807 | # @DESCRIPTION: |
| … | |
… | |
| 746 | # Override this value, set in kde4-base_src_configure() |
891 | # Override this value, set in kde4-base_src_configure() |
| 747 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
892 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 748 | cmake-utils_src_configure |
893 | cmake-utils_src_configure |
| 749 | kde4-base_src_compile |
894 | kde4-base_src_compile |
| 750 | |
895 | |
|
|
896 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
897 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
898 | # emerge or on the tinderbox. |
|
|
899 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
900 | unset DBUS_SESSION_BUS_ADDRESS |
|
|
901 | |
|
|
902 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
903 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
904 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
|
|
905 | # surprise- we are already INSIDE virtualmake!!! |
|
|
906 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
907 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
908 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
909 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
910 | cmake-utils_src_test |
|
|
911 | else |
|
|
912 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
|
|
913 | fi |
|
|
914 | else |
| 751 | cmake-utils_src_test |
915 | cmake-utils_src_test |
|
|
916 | fi |
| 752 | } |
917 | } |
| 753 | |
918 | |
| 754 | # @FUNCTION: kde4-base_src_install |
919 | # @FUNCTION: kde4-base_src_install |
| 755 | # @DESCRIPTION: |
920 | # @DESCRIPTION: |
| 756 | # Function for installing KDE4 applications. |
921 | # Function for installing KDE4 applications. |
| 757 | kde4-base_src_install() { |
922 | kde4-base_src_install() { |
| 758 | debug-print-function ${FUNCNAME} "$@" |
923 | debug-print-function ${FUNCNAME} "$@" |
| 759 | |
|
|
| 760 | # Prefix support, for usage in ebuilds |
|
|
| 761 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 762 | ED=${D} |
|
|
| 763 | fi |
|
|
| 764 | |
924 | |
| 765 | if [[ -n ${KMSAVELIBS} ]] ; then |
925 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 766 | install_library_dependencies |
926 | install_library_dependencies |
| 767 | fi |
927 | fi |
| 768 | |
928 | |
| 769 | # Install common documentation of KDE4 applications |
929 | # Install common documentation of KDE4 applications |
| 770 | local doc |
930 | local doc |
| 771 | if ! has kde4-meta ${INHERITED}; then |
931 | if ! has kde4-meta ${INHERITED}; then |
| 772 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
932 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 773 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
933 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 774 | done |
934 | done |
| 775 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
935 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 776 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
936 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
| 777 | done |
937 | done |
| 778 | fi |
938 | fi |
| 779 | |
939 | |
| 780 | cmake-utils_src_install |
940 | cmake-utils_src_install |
|
|
941 | } |
|
|
942 | |
|
|
943 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
944 | # @DESCRIPTION: |
|
|
945 | # Function storing icon caches |
|
|
946 | kde4-base_pkg_preinst() { |
|
|
947 | debug-print-function ${FUNCNAME} "$@" |
|
|
948 | |
|
|
949 | gnome2_icon_savelist |
| 781 | } |
950 | } |
| 782 | |
951 | |
| 783 | # @FUNCTION: kde4-base_pkg_postinst |
952 | # @FUNCTION: kde4-base_pkg_postinst |
| 784 | # @DESCRIPTION: |
953 | # @DESCRIPTION: |
| 785 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
954 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 786 | kde4-base_pkg_postinst() { |
955 | kde4-base_pkg_postinst() { |
| 787 | debug-print-function ${FUNCNAME} "$@" |
956 | debug-print-function ${FUNCNAME} "$@" |
| 788 | |
957 | |
|
|
958 | gnome2_icon_cache_update |
|
|
959 | fdo-mime_desktop_database_update |
|
|
960 | fdo-mime_mime_database_update |
| 789 | buildsycoca |
961 | buildsycoca |
| 790 | |
962 | |
| 791 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
963 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 792 | echo |
964 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 793 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
| 794 | einfo "Use it at your own risk." |
|
|
| 795 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
| 796 | echo |
|
|
| 797 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
| 798 | # warning about kdeprefix for non-live users |
|
|
| 799 | echo |
|
|
| 800 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
| 801 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
| 802 | ewarn "with KDE update strategies." |
|
|
| 803 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
| 804 | ewarn "take responsibilities for dead kittens." |
|
|
| 805 | echo |
|
|
| 806 | fi |
|
|
| 807 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
| 808 | # warn about not supported approach |
|
|
| 809 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
| 810 | echo |
965 | echo |
|
|
966 | ewarn "WARNING! you have kdeenable final useflag enabled." |
|
|
967 | ewarn "This useflag needs to be enabled on ALL kde using packages and" |
|
|
968 | ewarn "is known to cause issues." |
|
|
969 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
970 | ewarn "take responsibilities for dead kittens." |
|
|
971 | echo |
|
|
972 | fi |
|
|
973 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
974 | echo |
|
|
975 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
976 | einfo "Use it at your own risk." |
|
|
977 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
978 | echo |
|
|
979 | elif [[ ${BUILD_TYPE} != live ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
980 | # warning about kdeprefix for non-live users |
|
|
981 | echo |
|
|
982 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
983 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
984 | ewarn "with KDE update strategies." |
|
|
985 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
986 | ewarn "take responsibilities for dead kittens." |
|
|
987 | echo |
|
|
988 | fi |
|
|
989 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
990 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
991 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
992 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
993 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
994 | echo |
| 811 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
995 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
| 812 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
996 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
| 813 | ewarn "With this setting you are unsupported by KDE team." |
997 | ewarn "With this setting you are unsupported by KDE team." |
| 814 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
998 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
999 | fi |
| 815 | fi |
1000 | fi |
| 816 | fi |
1001 | fi |
| 817 | } |
1002 | } |
| 818 | |
1003 | |
| 819 | # @FUNCTION: kde4-base_pkg_postrm |
1004 | # @FUNCTION: kde4-base_pkg_postrm |
| 820 | # @DESCRIPTION: |
1005 | # @DESCRIPTION: |
| 821 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
1006 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 822 | kde4-base_pkg_postrm() { |
1007 | kde4-base_pkg_postrm() { |
| 823 | debug-print-function ${FUNCNAME} "$@" |
1008 | debug-print-function ${FUNCNAME} "$@" |
| 824 | |
1009 | |
|
|
1010 | gnome2_icon_cache_update |
|
|
1011 | fdo-mime_desktop_database_update |
|
|
1012 | fdo-mime_mime_database_update |
| 825 | buildsycoca |
1013 | buildsycoca |
| 826 | } |
1014 | } |