| 1 | # Copyright 1999-2009 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-meta.eclass,v 1.25 2009/08/20 09:18:01 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.43 2010/09/15 11:06:33 reavertm Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: kde4-meta.eclass |
5 | # @ECLASS: kde4-meta.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: Eclass for writing "split" KDE packages. |
8 | # @BLURB: Eclass for writing "split" KDE packages. |
| … | |
… | |
| 14 | |
14 | |
| 15 | inherit kde4-base versionator |
15 | inherit kde4-base versionator |
| 16 | |
16 | |
| 17 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
17 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
| 18 | |
18 | |
| 19 | if [[ -z ${KMNAME} ]]; then |
|
|
| 20 | die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
19 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
| 21 | fi |
|
|
| 22 | |
|
|
| 23 | # Add khelpcenter dependency when installing handbooks |
|
|
| 24 | if [[ ${PN} != khelpcenter ]] && has handbook ${IUSE//+}; then |
|
|
| 25 | RDEPEND+=" handbook? ( >=kde-base/khelpcenter-${PV}:${SLOT}[kdeprefix=] )" |
|
|
| 26 | fi |
|
|
| 27 | |
20 | |
| 28 | # Add dependencies that all packages in a certain module share. |
21 | # Add dependencies that all packages in a certain module share. |
| 29 | case ${KMNAME} in |
22 | case ${KMNAME} in |
| 30 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
23 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
| 31 | COMMONDEPEND+=" >=kde-base/qimageblitz-0.0.4" |
24 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 32 | ;; |
|
|
| 33 | kdenetwork) |
|
|
| 34 | COMMONDEPEND+=" >=kde-base/kdepimlibs-${PV}:${SLOT}[kdeprefix=]" |
|
|
| 35 | ;; |
25 | ;; |
| 36 | kdepim|kdepim-runtime) |
26 | kdepim|kdepim-runtime) |
| 37 | COMMONDEPEND+=" |
|
|
| 38 | dev-libs/boost |
|
|
| 39 | >=kde-base/kdepimlibs-${PV}:${SLOT}[kdeprefix=] |
|
|
| 40 | " |
|
|
| 41 | case ${PN} in |
27 | case ${PN} in |
| 42 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
28 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| 43 | IUSE+=" +kontact" |
29 | IUSE+=" +kontact" |
| 44 | RDEPEND+=" kontact? ( >=kde-base/kontactinterfaces-${PV}:${SLOT}[kdeprefix=] )" |
30 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
| 45 | ;; |
31 | ;; |
| 46 | esac |
32 | esac |
| 47 | ;; |
33 | ;; |
| 48 | kdegames) |
34 | kdegames) |
| 49 | if [[ ${PN} != libkdegames ]]; then |
35 | if [[ ${PN} != libkdegames ]]; then |
| 50 | COMMONDEPEND+=" >=kde-base/libkdegames-${PV}:${SLOT}[kdeprefix=] " |
36 | COMMONDEPEND+=" $(add_kdebase_dep libkdegames)" |
| 51 | fi |
37 | fi |
| 52 | ;; |
38 | ;; |
| 53 | koffice) |
39 | koffice) |
| 54 | [[ ${PN} != koffice-data ]] && IUSE+=" debug" |
40 | [[ ${PN} != koffice-data ]] && IUSE+=" debug" |
| 55 | RDEPEND+=" |
41 | RDEPEND+=" |
| … | |
… | |
| 112 | # If set to "true", $KMMODULE doesn't have to be defined. |
98 | # If set to "true", $KMMODULE doesn't have to be defined. |
| 113 | # |
99 | # |
| 114 | # Example usage: If you're installing subdirectories of a package, like plugins, |
100 | # Example usage: If you're installing subdirectories of a package, like plugins, |
| 115 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
101 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
| 116 | # set KMNOMODULE="true". |
102 | # set KMNOMODULE="true". |
| 117 | if [[ -z ${KMMODULE} && ${KMNOMODULE} != true ]]; then |
103 | if [[ -z ${KMMODULE} ]] && [[ ${KMNOMODULE} != true ]]; then |
| 118 | KMMODULE=${PN} |
104 | KMMODULE=${PN} |
| 119 | fi |
105 | fi |
| 120 | |
106 | |
| 121 | # @ECLASS-VARIABLE: KMEXTRA |
107 | # @ECLASS-VARIABLE: KMEXTRA |
| 122 | # @DESCRIPTION: |
108 | # @DESCRIPTION: |
| 123 | # All subdirectories listed here will be extracted, compiled & installed. |
109 | # All subdirectories listed here will be extracted, compiled & installed. |
| 124 | # $KMMODULE is always added to $KMEXTRA. |
110 | # $KMMODULE is always added to $KMEXTRA. |
| 125 | # If the handbook USE-flag is set, and if this directory exists, |
111 | # If KDE_HANDBOOK is 'always' or 'optional' and handbook USE-flag is set, and if this |
| 126 | # then "doc/$KMMODULE" is added to $KMEXTRA. In other cases, this should be |
112 | # directory exists, then "doc/$KMMODULE" is added to $KMEXTRA. If there's additional |
| 127 | # handled in the ebuild. |
|
|
| 128 | # If the documentation is in a different subdirectory, you should add it to KMEXTRA. |
113 | # documentation in different subdirectories, it should be added to KMEXTRA manually.. |
| 129 | |
114 | |
| 130 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
115 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
| 131 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| 132 | # All subdirectories listed here will be extracted & compiled, but not installed. |
117 | # All subdirectories listed here will be extracted & compiled, but not installed. |
| 133 | |
118 | |
| … | |
… | |
| 215 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
200 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| 216 | fi |
201 | fi |
| 217 | else |
202 | else |
| 218 | local abort tarball tarfile f extractlist moduleprefix postfix |
203 | local abort tarball tarfile f extractlist moduleprefix postfix |
| 219 | case ${PV} in |
204 | case ${PV} in |
| 220 | 4.3.85 | 4.3.90 | 4.3.95 | 4.3.96 | 4.3.98 | 4.2.85 | 4.2.90 | 4.2.95 | 4.2.96 | 4.2.98) |
205 | 4.[45].8[05] | 4.[45].9[023568]) |
| 221 | # block for normally packed upstream unstable snapshots |
206 | # Block for normally packed upstream unstable snapshots |
| 222 | KMTARPARAMS+=" --bzip2" # bz2 |
207 | KMTARPARAMS+=" --bzip2" # bz2 |
| 223 | postfix="bz2" |
208 | postfix="bz2" |
| 224 | ;; |
|
|
| 225 | 4.2.9* | 4.2.8* | 4.2.7* | 4.2.6* | 4.3.9* | 4.3.8* | 4.3.7* | 4.3.6*) |
|
|
| 226 | KMTARPARAMS+=" --lzma" # lzma |
|
|
| 227 | postfix="lzma" |
|
|
| 228 | ;; |
209 | ;; |
| 229 | *) |
210 | *) |
| 230 | KMTARPARAMS+=" --bzip2" # bz2 |
211 | KMTARPARAMS+=" --bzip2" # bz2 |
| 231 | postfix="bz2" |
212 | postfix="bz2" |
| 232 | ;; |
213 | ;; |
| … | |
… | |
| 298 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
279 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
| 299 | # KMEXTRACTONLY and KMTARPARAMS. |
280 | # KMEXTRACTONLY and KMTARPARAMS. |
| 300 | kde4-meta_create_extractlists() { |
281 | kde4-meta_create_extractlists() { |
| 301 | debug-print-function ${FUNCNAME} "$@" |
282 | debug-print-function ${FUNCNAME} "$@" |
| 302 | |
283 | |
| 303 | # TODO change to KMEXTRA for more strict check |
284 | # Add default handbook locations |
|
|
285 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
| 304 | if has handbook ${IUSE//+} && use handbook && [[ -n ${KMMODULE} ]]; then |
286 | if ! slot_is_at_least 4.5 ${SLOT} && has handbook ${IUSE//+} && use handbook && [[ -z ${KMNOMODULE} ]]; then |
| 305 | # We use the basename of $KMMODULE because $KMMODULE can contain |
287 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 306 | # the path to the module subdirectory. |
288 | # the path to the module subdirectory. |
| 307 | KMEXTRA_NONFATAL+=" |
289 | KMEXTRA_NONFATAL+=" |
| 308 | doc/${KMMODULE##*/}" |
290 | doc/${KMMODULE##*/}" |
|
|
291 | fi |
|
|
292 | |
|
|
293 | # Add default handbook locations |
|
|
294 | if [[ -z ${KMNOMODULE} ]] && { [[ ${KDE_HANDBOOK} = always ]] || { [[ ${KDE_HANDBOOK} = optional ]] && use handbook; }; }; then |
|
|
295 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
| 309 | fi |
296 | fi |
| 310 | |
297 | |
| 311 | # Add some CMake-files to KMEXTRACTONLY. |
298 | # Add some CMake-files to KMEXTRACTONLY. |
| 312 | # Note that this actually doesn't include KMEXTRA handling. |
299 | # Note that this actually doesn't include KMEXTRA handling. |
| 313 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
300 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| … | |
… | |
| 337 | ;; |
324 | ;; |
| 338 | kdegames) |
325 | kdegames) |
| 339 | if [[ ${PN} != libkdegames ]]; then |
326 | if [[ ${PN} != libkdegames ]]; then |
| 340 | KMEXTRACTONLY+=" |
327 | KMEXTRACTONLY+=" |
| 341 | libkdegames/" |
328 | libkdegames/" |
|
|
329 | KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 342 | fi |
330 | fi |
| 343 | ;; |
331 | ;; |
| 344 | kdepim) |
332 | kdepim) |
| 345 | if [[ ${PN} != libkdepim ]]; then |
333 | if [[ ${PN} != libkdepim ]]; then |
| 346 | KMEXTRACTONLY+=" |
334 | KMEXTRACTONLY+=" |
| 347 | libkdepim/" |
335 | libkdepim/" |
| 348 | fi |
336 | fi |
| 349 | case ${SLOT} in |
|
|
| 350 | 4.3|4.4|live) |
|
|
| 351 | KMEXTRACTONLY+=" |
|
|
| 352 | kdepim-version.h |
|
|
| 353 | config-enterprise.h.cmake" |
|
|
| 354 | ;; |
|
|
| 355 | esac |
|
|
| 356 | KMEXTRACTONLY+=" |
337 | KMEXTRACTONLY+=" |
|
|
338 | config-enterprise.h.cmake |
| 357 | kleopatra/ConfigureChecks.cmake" |
339 | kleopatra/ConfigureChecks.cmake" |
|
|
340 | if slot_is_at_least 4.5 ${SLOT}; then |
|
|
341 | KMEXTRACTONLY+=" |
|
|
342 | CTestCustom.cmake |
|
|
343 | kdepim-version.h.cmake" |
|
|
344 | else |
|
|
345 | KMEXTRACTONLY+=" |
|
|
346 | kdepim-version.h" |
|
|
347 | fi |
| 358 | if has kontact ${IUSE//+} && use kontact; then |
348 | if has kontact ${IUSE//+} && use kontact; then |
| 359 | KMEXTRA+=" |
349 | KMEXTRA+=" |
| 360 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
350 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 361 | KMEXTRACTONLY+=" |
|
|
| 362 | kontactinterfaces/" |
|
|
| 363 | fi |
351 | fi |
| 364 | ;; |
352 | ;; |
| 365 | kdeutils) |
353 | kdeutils) |
| 366 | case ${SLOT} in |
|
|
| 367 | 4.3|4.4|live) |
|
|
| 368 | KMEXTRACTONLY+=" |
354 | KMEXTRACTONLY+=" |
| 369 | kdeutils-version.h" |
355 | kdeutils-version.h" |
| 370 | ;; |
|
|
| 371 | esac |
|
|
| 372 | ;; |
356 | ;; |
| 373 | koffice) |
357 | koffice) |
| 374 | KMEXTRACTONLY+=" |
358 | KMEXTRACTONLY+=" |
| 375 | config-endian.h.cmake |
359 | config-endian.h.cmake |
| 376 | filters/config-filters.h.cmake |
360 | filters/config-filters.h.cmake |
| … | |
… | |
| 386 | esac |
370 | esac |
| 387 | ;; |
371 | ;; |
| 388 | esac |
372 | esac |
| 389 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
373 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
| 390 | case ${KMNAME} in |
374 | case ${KMNAME} in |
| 391 | kdepim) |
|
|
| 392 | # No need for unpack since 4.2.86 |
|
|
| 393 | # Remove when 4.2 is wiped out from the tree |
|
|
| 394 | case ${PV} in |
|
|
| 395 | 4.1*|4.2.0|4.2.1|4.2.2|4.2.3|4.2.4|4.2.85) |
|
|
| 396 | KMCOMPILEONLY+=" |
|
|
| 397 | cmake/modules/" |
|
|
| 398 | ;; |
|
|
| 399 | *) ;; |
|
|
| 400 | esac |
|
|
| 401 | ;; |
|
|
| 402 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
375 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
| 403 | case ${PN} in |
376 | case ${PN} in |
| 404 | libkdegames|libkdeedu|libkworkspace) |
377 | libkdegames|libkdeedu|libkworkspace) |
| 405 | KMEXTRA+=" |
378 | KMEXTRA+=" |
| 406 | cmake/modules/" |
379 | cmake/modules/" |
| … | |
… | |
| 492 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
465 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 493 | fi |
466 | fi |
| 494 | done |
467 | done |
| 495 | } |
468 | } |
| 496 | |
469 | |
| 497 | # FIXME: add description |
|
|
| 498 | # @FUNCTION: kde4-meta_change_cmakelists |
470 | # @FUNCTION: kde4-meta_change_cmakelists |
| 499 | # @DESCRIPTION: |
471 | # @DESCRIPTION: |
|
|
472 | # Adjust CMakeLists.txt to comply to our splitting. |
| 500 | kde4-meta_change_cmakelists() { |
473 | kde4-meta_change_cmakelists() { |
| 501 | debug-print-function ${FUNCNAME} "$@" |
474 | debug-print-function ${FUNCNAME} "$@" |
| 502 | |
475 | |
| 503 | pushd "${S}" > /dev/null |
476 | pushd "${S}" > /dev/null |
| 504 | |
477 | |
| 505 | comment_all_add_subdirectory ./ |
478 | comment_all_add_subdirectory ./ |
| 506 | |
479 | |
| 507 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
480 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
| 508 | if [[ -f "${S}"/CMakeLists.txt ]]; then |
481 | if [[ -f CMakeLists.txt ]]; then |
| 509 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
482 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 510 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
483 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 511 | -i "${S}"/CMakeLists.txt || die "${LINENO}: cmake sed died" |
484 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
| 512 | fi |
485 | fi |
| 513 | |
486 | |
| 514 | if [[ -z ${KMNOMODULE} ]]; then |
487 | if [[ -z ${KMNOMODULE} ]]; then |
| 515 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
488 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
| 516 | find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
489 | find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | \ |
|
|
490 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 517 | die "${LINENO}: died in KMMODULE section" |
491 | die "${LINENO}: died in KMMODULE section" |
| 518 | _change_cmakelists_parent_dirs ${KMMODULE} |
492 | _change_cmakelists_parent_dirs ${KMMODULE} |
| 519 | fi |
493 | fi |
| 520 | |
494 | |
| 521 | local i |
495 | local i |
| 522 | |
496 | |
| 523 | # KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
497 | # KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
| 524 | for i in ${KMEXTRACTONLY}; do |
498 | for i in ${KMEXTRACTONLY}; do |
| 525 | if [[ -d "${S}"/${i} && -f "${S}"/${i}/../CMakeLists.txt ]]; then |
499 | if [[ -d ${i} && -f ${i}/../CMakeLists.txt ]]; then |
| 526 | sed -i -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" "${S}"/${i}/../CMakeLists.txt || \ |
500 | sed -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
501 | -i ${i}/../CMakeLists.txt || \ |
| 527 | die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
502 | die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
| 528 | fi |
503 | fi |
| 529 | done |
504 | done |
| 530 | |
505 | |
| 531 | # KMCOMPILEONLY |
506 | # KMCOMPILEONLY |
| … | |
… | |
| 553 | # KMEXTRA_NONFATAL section |
528 | # KMEXTRA_NONFATAL section |
| 554 | for i in ${KMEXTRA_NONFATAL}; do |
529 | for i in ${KMEXTRA_NONFATAL}; do |
| 555 | if [[ -d "${S}"/${i} ]]; then |
530 | if [[ -d "${S}"/${i} ]]; then |
| 556 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
531 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 557 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
532 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 558 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
533 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
| 559 | _change_cmakelists_parent_dirs ${i} |
534 | _change_cmakelists_parent_dirs ${i} |
| 560 | fi |
535 | fi |
| 561 | done |
536 | done |
| 562 | |
537 | |
| 563 | case ${KMNAME} in |
538 | case ${KMNAME} in |
| 564 | kdebase-workspace) |
539 | kdebase-workspace) |
| 565 | # COLLISION PROTECT section |
540 | # COLLISION PROTECT section |
| 566 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
541 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
| 567 | # not as a part of every package. |
542 | # not as a part of every package. |
| 568 | if [[ ${PN} != kdebase-startkde && -f "${S}"/CMakeLists.txt ]]; then |
543 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
| 569 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
544 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| 570 | sed -i -e '/startkde/s/^/#DONOTINSTALL /' "${S}"/CMakeLists.txt || \ |
545 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
| 571 | die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
546 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
| 572 | fi |
547 | fi |
| 573 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
548 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
| 574 | if [[ ${PN} != libkworkspace ]]; then |
549 | if [[ ${PN} != libkworkspace ]]; then |
| 575 | sed -i \ |
|
|
| 576 | -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
550 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
| 577 | CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
551 | -i CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
| 578 | fi |
552 | fi |
| 579 | ;; |
553 | ;; |
| 580 | kdebase-runtime) |
554 | kdebase-runtime) |
| 581 | # COLLISION PROTECT section |
555 | # COLLISION PROTECT section |
| 582 | # Only install the kde4 script as part of kde-base/kdebase-data |
556 | # Only install the kde4 script as part of kde-base/kdebase-data |
| 583 | if [[ ${PN} != kdebase-data && -f "${S}"/CMakeLists.txt ]]; then |
557 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
| 584 | sed -i -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
558 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
| 585 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
559 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| 586 | fi |
560 | fi |
|
|
561 | ;; |
|
|
562 | kdenetwork) |
|
|
563 | # Disable hardcoded kdepimlibs check |
|
|
564 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
|
|
565 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 587 | ;; |
566 | ;; |
| 588 | kdepim) |
567 | kdepim) |
|
|
568 | # Disable hardcoded checks |
|
|
569 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
|
|
570 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
|
|
571 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
|
|
572 | -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
573 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
574 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
575 | # Disable broken or redundant build logic |
|
|
576 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
|
|
577 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
578 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
579 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
|
|
580 | fi |
|
|
581 | if ! slot_is_at_least 4.5 ${SLOT}; then |
| 589 | case ${PN} in |
582 | case ${PN} in |
| 590 | kaddressbook|kalarm|kmailcvt|kontact|korganizer|korn) |
583 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 591 | sed -i -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
584 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 592 | -e '/add_custom_target(kmail_xml /,/)/p' "${S}"/kmail/CMakeLists.txt || die "uncommenting xml failed" |
585 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
|
|
586 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| 593 | _change_cmakelists_parent_dirs kmail |
587 | _change_cmakelists_parent_dirs kmail |
| 594 | ;; |
588 | ;; |
| 595 | esac |
589 | esac |
|
|
590 | fi |
| 596 | ;; |
591 | ;; |
| 597 | kdewebdev) |
592 | kdewebdev) |
| 598 | # Disable hardcoded kdepimlibs check |
593 | # Disable hardcoded checks |
| 599 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
594 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 600 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
595 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 601 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
596 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 602 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
597 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 603 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
598 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 604 | ;; |
599 | ;; |
| 605 | koffice) |
600 | koffice) |
| 606 | # prevent collisions |
601 | # Prevent collisions |
| 607 | if [[ ${PN} != koffice-data ]]; then |
602 | if [[ ${PN} != koffice-data ]]; then |
| 608 | sed -i -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
603 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 609 | "${S}"/cmake/modules/CMakeLists.txt || \ |
604 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
|
|
605 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
| 610 | die "${LINENO}: sed died in collision prevention section" |
606 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
|
|
607 | fi |
|
|
608 | # koffice 2.0 |
| 611 | case ${PV} in |
609 | case ${PV} in |
| 612 | 2.0.*) |
610 | 2.0.[1-9]) |
| 613 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
611 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
| 614 | "${S}"/CMakeLists.txt || \ |
612 | "${S}"/CMakeLists.txt || \ |
| 615 | die "${LINENO}: sed died in collision prevention section" |
613 | die "${LINENO}: sed died in collision prevention section" |
| 616 | ;; |
614 | ;; |
| 617 | *) |
615 | *) ;; |
| 618 | sed -i -e '/install(.\+config-openexr\.h.\+)/d' \ |
|
|
| 619 | "${S}"//CMakeLists.txt || \ |
|
|
| 620 | die "${LINENO}: sed died in collision prevention section" |
|
|
| 621 | ;; |
|
|
| 622 | esac |
616 | esac |
|
|
617 | # koffice 2.1.[8-9][0-9] and 9999 |
|
|
618 | case ${PV} in |
|
|
619 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
620 | sed -e '/^option(BUILD/s/ON/OFF/' \ |
|
|
621 | -e '/^if(NOT BUILD_kchart/,/^endif(NOT BUILD_kchart/d' \ |
|
|
622 | -e '/^if(BUILD_koreport/,/^endif(BUILD_koreport/d' \ |
|
|
623 | -e 's/set(SHOULD_BUILD_F_OFFICE TRUE)/set(SHOULD_BUILD_F_OFFICE FALSE)/' \ |
|
|
624 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
625 | if [[ ${PN} != koffice-data ]] && [[ ${PV} == 9999 ]]; then |
|
|
626 | sed -e '/config-opengl.h/d' \ |
|
|
627 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
628 | |
| 623 | fi |
629 | fi |
|
|
630 | ;; |
|
|
631 | *) ;; |
|
|
632 | esac |
| 624 | esac |
633 | esac |
| 625 | |
634 | |
| 626 | popd > /dev/null |
635 | popd > /dev/null |
| 627 | } |
636 | } |
| 628 | |
637 | |
| … | |
… | |
| 631 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
640 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
| 632 | # ebuilds. |
641 | # ebuilds. |
| 633 | kde4-meta_src_configure() { |
642 | kde4-meta_src_configure() { |
| 634 | debug-print-function ${FUNCNAME} "$@" |
643 | debug-print-function ${FUNCNAME} "$@" |
| 635 | |
644 | |
|
|
645 | # backwards-compatibility: make mycmakeargs an array, if it isn't already |
|
|
646 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
647 | mycmakeargs=(${mycmakeargs}) |
|
|
648 | fi |
|
|
649 | |
| 636 | # Set some cmake default values here (usually workarounds for automagic deps) |
650 | # Set some cmake default values here (usually workarounds for automagic deps) |
| 637 | case ${KMNAME} in |
651 | case ${KMNAME} in |
| 638 | kdewebdev) |
652 | kdewebdev) |
| 639 | mycmakeargs=" |
653 | mycmakeargs=( |
| 640 | -DWITH_KdepimLibs=OFF |
654 | -DWITH_KdepimLibs=OFF |
| 641 | -DWITH_LibXml2=OFF |
655 | -DWITH_LibXml2=OFF |
| 642 | -DWITH_LibXslt=OFF |
656 | -DWITH_LibXslt=OFF |
| 643 | -DWITH_Boost=OFF |
657 | -DWITH_Boost=OFF |
| 644 | -DWITH_LibTidy=OFF |
658 | -DWITH_LibTidy=OFF |
| 645 | ${mycmakeargs}" |
659 | "${mycmakeargs[@]}" |
|
|
660 | ) |
|
|
661 | ;; |
|
|
662 | koffice) |
|
|
663 | case ${PV} in |
|
|
664 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
665 | if [[ ${PN} != "kchart" ]]; then |
|
|
666 | mycmakeargs=( |
|
|
667 | -DBUILD_koreport=OFF |
|
|
668 | "${mycmakeargs[@]}" |
|
|
669 | ) |
|
|
670 | fi |
|
|
671 | ;; |
|
|
672 | esac |
| 646 | ;; |
673 | ;; |
| 647 | esac |
674 | esac |
| 648 | |
675 | |
| 649 | kde4-base_src_configure |
676 | kde4-base_src_configure |
| 650 | } |
677 | } |
| … | |
… | |
| 659 | kde4-base_src_compile "$@" |
686 | kde4-base_src_compile "$@" |
| 660 | } |
687 | } |
| 661 | |
688 | |
| 662 | # @FUNCTION: kde4-meta_src_test |
689 | # @FUNCTION: kde4-meta_src_test |
| 663 | # @DESCRIPTION: |
690 | # @DESCRIPTION: |
| 664 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
691 | # Currently just calls its equivalent in kde4-base.eclass(5) if |
| 665 | # ebuilds. |
692 | # I_KNOW_WHAT_I_AM_DOING is set. Use this in split ebuilds. |
| 666 | kde4-meta_src_test() { |
693 | kde4-meta_src_test() { |
| 667 | debug-print-function $FUNCNAME "$@" |
694 | debug-print-function $FUNCNAME "$@" |
| 668 | |
695 | |
|
|
696 | if [[ $I_KNOW_WHAT_I_AM_DOING ]]; then |
| 669 | kde4-base_src_test |
697 | kde4-base_src_test |
|
|
698 | else |
|
|
699 | einfo "Tests disabled" |
|
|
700 | fi |
| 670 | } |
701 | } |
| 671 | |
702 | |
| 672 | # @FUNCTION: kde4-meta_src_install |
703 | # @FUNCTION: kde4-meta_src_install |
| 673 | # @DESCRIPTION: |
704 | # @DESCRIPTION: |
| 674 | # Function for installing KDE4 split applications. |
705 | # Function for installing KDE4 split applications. |
| 675 | kde4-meta_src_install() { |
706 | kde4-meta_src_install() { |
| 676 | debug-print-function $FUNCNAME "$@" |
707 | debug-print-function $FUNCNAME "$@" |
| 677 | |
708 | |
|
|
709 | # Search ${S}/${KMMODULE} and install common documentation files found |
|
|
710 | local doc |
|
|
711 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
712 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
713 | done |
|
|
714 | |
| 678 | kde4-base_src_install |
715 | kde4-base_src_install |
| 679 | } |
716 | } |
| 680 | |
717 | |
| 681 | # @FUNCTION: kde4-meta_src_make_doc |
|
|
| 682 | # @DESCRIPTION: |
|
|
| 683 | # This function searches in ${S}/${KMMODULE}, |
|
|
| 684 | # and tries to install "AUTHORS ChangeLog* README* NEWS TODO" if these files exist. |
|
|
| 685 | kde4-meta_src_make_doc() { |
|
|
| 686 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 687 | |
|
|
| 688 | local doc |
|
|
| 689 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
|
|
| 690 | [[ -s ${KMMODULE}/${doc} ]] && newdoc "${KMMODULE}/${doc}" "${doc}.${KMMODULE##*/}" |
|
|
| 691 | done |
|
|
| 692 | |
|
|
| 693 | kde4-base_src_make_doc |
|
|
| 694 | } |
|
|
| 695 | |
|
|
| 696 | # @FUNCTION: kde4-meta_pkg_postinst |
718 | # @FUNCTION: kde4-meta_pkg_postinst |
| 697 | # @DESCRIPTION: |
719 | # @DESCRIPTION: |
| 698 | # Display information about application handbook and invoke kbuildsycoca4. |
720 | # Invoke kbuildsycoca4. |
| 699 | kde4-meta_pkg_postinst() { |
721 | kde4-meta_pkg_postinst() { |
| 700 | debug-print-function ${FUNCNAME} "$@" |
722 | debug-print-function ${FUNCNAME} "$@" |
| 701 | |
|
|
| 702 | if has handbook ${IUSE//+} && ! use handbook; then |
|
|
| 703 | echo |
|
|
| 704 | einfo "Application handbook for ${PN} has not been installed." |
|
|
| 705 | einfo "To install handbook, reemerge =${CATEGORY}/${PF} with 'handbook' USE flag." |
|
|
| 706 | echo |
|
|
| 707 | fi |
|
|
| 708 | |
723 | |
| 709 | kde4-base_pkg_postinst |
724 | kde4-base_pkg_postinst |
| 710 | } |
725 | } |
| 711 | |
726 | |
| 712 | # @FUNCTION: kde4-meta_pkg_postrm |
727 | # @FUNCTION: kde4-meta_pkg_postrm |