| 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.30 2009/12/10 17:35:52 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.37 2010/05/17 01:16:39 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. |
| … | |
… | |
| 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 | [[ -z ${KMNAME} ]] && 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" |
| 20 | |
20 | |
| 21 | # Add khelpcenter dependency when installing handbooks |
|
|
| 22 | if [[ ${PN} != khelpcenter ]] && has handbook ${IUSE//+}; then |
|
|
| 23 | RDEPEND+=" handbook? ( $(add_kdebase_dep khelpcenter) )" |
|
|
| 24 | fi |
|
|
| 25 | |
|
|
| 26 | # Add dependencies that all packages in a certain module share. |
21 | # Add dependencies that all packages in a certain module share. |
| 27 | case ${KMNAME} in |
22 | case ${KMNAME} in |
| 28 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
23 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
| 29 | COMMONDEPEND+=" >=kde-base/qimageblitz-0.0.4" |
24 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 30 | ;; |
25 | ;; |
| 31 | kdepim|kdepim-runtime) |
26 | kdepim|kdepim-runtime) |
| 32 | COMMONDEPEND+=" $(add_kdebase_dep kdepimlibs)" |
27 | ! slot_is_at_least 4.4 ${SLOT} && COMMONDEPEND+=" $(add_kdebase_dep kdepimlibs)" |
| 33 | case ${PN} in |
28 | case ${PN} in |
| 34 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
29 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| 35 | IUSE+=" +kontact" |
30 | IUSE+=" +kontact" |
| 36 | if ! slot_is_at_least 4.4 ${SLOT}; then |
|
|
| 37 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontactinterfaces) )" |
31 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
| 38 | fi |
|
|
| 39 | ;; |
32 | ;; |
| 40 | esac |
33 | esac |
| 41 | ;; |
34 | ;; |
| 42 | kdegames) |
35 | kdegames) |
| 43 | if [[ ${PN} != libkdegames ]]; then |
36 | if [[ ${PN} != libkdegames ]]; then |
| … | |
… | |
| 209 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
202 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| 210 | fi |
203 | fi |
| 211 | else |
204 | else |
| 212 | local abort tarball tarfile f extractlist moduleprefix postfix |
205 | local abort tarball tarfile f extractlist moduleprefix postfix |
| 213 | case ${PV} in |
206 | case ${PV} in |
| 214 | 4.3.8[05] | 4.3.9[0568]) |
207 | 4.[34].8[05] | 4.[34].9[0568]) |
| 215 | # block for normally packed upstream unstable snapshots |
208 | # block for normally packed upstream unstable snapshots |
| 216 | KMTARPARAMS+=" --bzip2" # bz2 |
209 | KMTARPARAMS+=" --bzip2" # bz2 |
| 217 | postfix="bz2" |
210 | postfix="bz2" |
| 218 | ;; |
211 | ;; |
| 219 | 4.3.[6-9]*) |
212 | 4.[34].[6-9]*) |
| 220 | # Not passing --xz, as it doesn't work with stable tar |
213 | # Not passing --xz, as it doesn't work with stable tar |
| 221 | KMTARPARAMS+=" --use-compress-program=xz" # xz |
214 | KMTARPARAMS+=" --use-compress-program=xz" # xz |
| 222 | postfix="xz" |
215 | postfix="xz" |
| 223 | ;; |
216 | ;; |
| 224 | *) |
217 | *) |
| … | |
… | |
| 332 | ;; |
325 | ;; |
| 333 | kdegames) |
326 | kdegames) |
| 334 | if [[ ${PN} != libkdegames ]]; then |
327 | if [[ ${PN} != libkdegames ]]; then |
| 335 | KMEXTRACTONLY+=" |
328 | KMEXTRACTONLY+=" |
| 336 | libkdegames/" |
329 | libkdegames/" |
|
|
330 | KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 337 | fi |
331 | fi |
| 338 | ;; |
332 | ;; |
| 339 | kdepim) |
333 | kdepim) |
| 340 | if [[ ${PN} != libkdepim ]]; then |
334 | if [[ ${PN} != libkdepim ]]; then |
| 341 | KMEXTRACTONLY+=" |
335 | KMEXTRACTONLY+=" |
| 342 | libkdepim/" |
336 | libkdepim/" |
| 343 | fi |
337 | fi |
| 344 | case ${SLOT} in |
|
|
| 345 | 4.3|4.4|live) |
|
|
| 346 | KMEXTRACTONLY+=" |
|
|
| 347 | kdepim-version.h |
|
|
| 348 | config-enterprise.h.cmake" |
|
|
| 349 | ;; |
|
|
| 350 | esac |
|
|
| 351 | KMEXTRACTONLY+=" |
338 | KMEXTRACTONLY+=" |
|
|
339 | config-enterprise.h.cmake |
| 352 | kleopatra/ConfigureChecks.cmake" |
340 | kleopatra/ConfigureChecks.cmake" |
|
|
341 | if slot_is_at_least 4.5 ${SLOT}; then |
|
|
342 | KMEXTRACTONLY+=" |
|
|
343 | CTestCustom.cmake |
|
|
344 | kdepim-version.h.cmake" |
|
|
345 | else |
|
|
346 | KMEXTRACTONLY+=" |
|
|
347 | kdepim-version.h" |
|
|
348 | fi |
| 353 | if has kontact ${IUSE//+} && use kontact; then |
349 | if has kontact ${IUSE//+} && use kontact; then |
| 354 | KMEXTRA+=" |
350 | KMEXTRA+=" |
| 355 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
351 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 356 | if ! slot_is_at_least 4.4 ${SLOT}; then |
352 | if ! slot_is_at_least 4.4 ${SLOT}; then |
| 357 | KMEXTRACTONLY+=" |
353 | KMEXTRACTONLY+=" |
| 358 | kontactinterfaces/" |
354 | kontactinterfaces/" |
| 359 | fi |
355 | fi |
| 360 | fi |
356 | fi |
| 361 | ;; |
357 | ;; |
| 362 | kdeutils) |
358 | kdeutils) |
| 363 | case ${SLOT} in |
|
|
| 364 | 4.3|4.4|live) |
|
|
| 365 | KMEXTRACTONLY+=" |
359 | KMEXTRACTONLY+=" |
| 366 | kdeutils-version.h" |
360 | kdeutils-version.h" |
| 367 | ;; |
|
|
| 368 | esac |
|
|
| 369 | ;; |
361 | ;; |
| 370 | koffice) |
362 | koffice) |
| 371 | KMEXTRACTONLY+=" |
363 | KMEXTRACTONLY+=" |
| 372 | config-endian.h.cmake |
364 | config-endian.h.cmake |
| 373 | filters/config-filters.h.cmake |
365 | filters/config-filters.h.cmake |
| … | |
… | |
| 383 | esac |
375 | esac |
| 384 | ;; |
376 | ;; |
| 385 | esac |
377 | esac |
| 386 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
378 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
| 387 | case ${KMNAME} in |
379 | case ${KMNAME} in |
| 388 | kdepim) |
|
|
| 389 | # No need for unpack since 4.2.86 |
|
|
| 390 | # Remove when 4.2 is wiped out from the tree |
|
|
| 391 | case ${PV} in |
|
|
| 392 | 4.2.[0-4]) |
|
|
| 393 | KMCOMPILEONLY+=" |
|
|
| 394 | cmake/modules/" |
|
|
| 395 | ;; |
|
|
| 396 | esac |
|
|
| 397 | ;; |
|
|
| 398 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
380 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
| 399 | case ${PN} in |
381 | case ${PN} in |
| 400 | libkdegames|libkdeedu|libkworkspace) |
382 | libkdegames|libkdeedu|libkworkspace) |
| 401 | KMEXTRA+=" |
383 | KMEXTRA+=" |
| 402 | cmake/modules/" |
384 | cmake/modules/" |
| … | |
… | |
| 488 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
470 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 489 | fi |
471 | fi |
| 490 | done |
472 | done |
| 491 | } |
473 | } |
| 492 | |
474 | |
| 493 | # FIXME: add description |
|
|
| 494 | # @FUNCTION: kde4-meta_change_cmakelists |
475 | # @FUNCTION: kde4-meta_change_cmakelists |
| 495 | # @DESCRIPTION: |
476 | # @DESCRIPTION: |
|
|
477 | # Adjust CMakeLists.txt to comply to our splitting. |
| 496 | kde4-meta_change_cmakelists() { |
478 | kde4-meta_change_cmakelists() { |
| 497 | debug-print-function ${FUNCNAME} "$@" |
479 | debug-print-function ${FUNCNAME} "$@" |
| 498 | |
480 | |
| 499 | pushd "${S}" > /dev/null |
481 | pushd "${S}" > /dev/null |
| 500 | |
482 | |
| … | |
… | |
| 586 | # Disable hardcoded kdepimlibs check |
568 | # Disable hardcoded kdepimlibs check |
| 587 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
569 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 588 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
570 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 589 | ;; |
571 | ;; |
| 590 | kdepim) |
572 | kdepim) |
|
|
573 | # Disable hardcoded checks |
|
|
574 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
|
|
575 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
|
|
576 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
|
|
577 | -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
578 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
579 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
580 | # Disable broken or redundant build logic |
|
|
581 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
|
|
582 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
583 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
584 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
|
|
585 | fi |
|
|
586 | if ! slot_is_at_least 4.5 ${SLOT}; then |
| 591 | case ${PN} in |
587 | case ${PN} in |
| 592 | kaddressbook|kalarm|kmailcvt|kontact|korganizer|korn) |
588 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 593 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
589 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 594 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
590 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
| 595 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
591 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| 596 | _change_cmakelists_parent_dirs kmail |
592 | _change_cmakelists_parent_dirs kmail |
| 597 | ;; |
593 | ;; |
| 598 | esac |
594 | esac |
|
|
595 | fi |
| 599 | ;; |
596 | ;; |
| 600 | kdewebdev) |
597 | kdewebdev) |
| 601 | # Disable hardcoded kdepimlibs check |
598 | # Disable hardcoded checks |
| 602 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
599 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 603 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
600 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 604 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
601 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 605 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
602 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 606 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
603 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 607 | ;; |
604 | ;; |
| 608 | koffice) |
605 | koffice) |
| 609 | # prevent collisions |
606 | # Prevent collisions |
| 610 | if [[ ${PN} != koffice-data ]]; then |
607 | if [[ ${PN} != koffice-data ]]; then |
| 611 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
608 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 612 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
609 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 613 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
610 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
| 614 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
611 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| … | |
… | |
| 620 | "${S}"/CMakeLists.txt || \ |
617 | "${S}"/CMakeLists.txt || \ |
| 621 | die "${LINENO}: sed died in collision prevention section" |
618 | die "${LINENO}: sed died in collision prevention section" |
| 622 | ;; |
619 | ;; |
| 623 | *) ;; |
620 | *) ;; |
| 624 | esac |
621 | esac |
|
|
622 | # koffice 2.1.[8-9][0-9] and 9999 |
|
|
623 | case ${PV} in |
|
|
624 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
625 | sed -e '/^option(BUILD/s/ON/OFF/' \ |
|
|
626 | -e '/^if(NOT BUILD_kchart/,/^endif(NOT BUILD_kchart/d' \ |
|
|
627 | -e '/^if(BUILD_koreport/,/^endif(BUILD_koreport/d' \ |
|
|
628 | -e 's/set(SHOULD_BUILD_F_OFFICE TRUE)/set(SHOULD_BUILD_F_OFFICE FALSE)/' \ |
|
|
629 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
630 | if [[ ${PN} != koffice-data ]] && [[ ${PV} == 9999 ]]; then |
|
|
631 | sed -e '/config-opengl.h/d' \ |
|
|
632 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
633 | |
|
|
634 | fi |
|
|
635 | ;; |
|
|
636 | *) ;; |
|
|
637 | esac |
| 625 | esac |
638 | esac |
| 626 | |
639 | |
| 627 | popd > /dev/null |
640 | popd > /dev/null |
| 628 | } |
641 | } |
| 629 | |
642 | |
| … | |
… | |
| 633 | # ebuilds. |
646 | # ebuilds. |
| 634 | kde4-meta_src_configure() { |
647 | kde4-meta_src_configure() { |
| 635 | debug-print-function ${FUNCNAME} "$@" |
648 | debug-print-function ${FUNCNAME} "$@" |
| 636 | |
649 | |
| 637 | # backwards-compatibility: make mycmakeargs an array, if it isn't already |
650 | # backwards-compatibility: make mycmakeargs an array, if it isn't already |
| 638 | if [[ $(declare -p mycmakeargs) != "declare -a mycmakeargs="* ]]; then |
651 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 639 | mycmakeargs=(${mycmakeargs}) |
652 | mycmakeargs=(${mycmakeargs}) |
| 640 | fi |
653 | fi |
| 641 | |
654 | |
| 642 | # Set some cmake default values here (usually workarounds for automagic deps) |
655 | # Set some cmake default values here (usually workarounds for automagic deps) |
| 643 | case ${KMNAME} in |
656 | case ${KMNAME} in |
| … | |
… | |
| 649 | -DWITH_Boost=OFF |
662 | -DWITH_Boost=OFF |
| 650 | -DWITH_LibTidy=OFF |
663 | -DWITH_LibTidy=OFF |
| 651 | "${mycmakeargs[@]}" |
664 | "${mycmakeargs[@]}" |
| 652 | ) |
665 | ) |
| 653 | ;; |
666 | ;; |
|
|
667 | koffice) |
|
|
668 | case ${PV} in |
|
|
669 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
670 | if [[ ${PN} != "kchart" ]]; then |
|
|
671 | mycmakeargs=( |
|
|
672 | -DBUILD_koreport=OFF |
|
|
673 | "${mycmakeargs[@]}" |
|
|
674 | ) |
|
|
675 | fi |
|
|
676 | ;; |
|
|
677 | esac |
|
|
678 | ;; |
| 654 | esac |
679 | esac |
| 655 | |
680 | |
| 656 | kde4-base_src_configure |
681 | kde4-base_src_configure |
| 657 | } |
682 | } |
| 658 | |
683 | |
| … | |
… | |
| 684 | # @DESCRIPTION: |
709 | # @DESCRIPTION: |
| 685 | # Function for installing KDE4 split applications. |
710 | # Function for installing KDE4 split applications. |
| 686 | kde4-meta_src_install() { |
711 | kde4-meta_src_install() { |
| 687 | debug-print-function $FUNCNAME "$@" |
712 | debug-print-function $FUNCNAME "$@" |
| 688 | |
713 | |
|
|
714 | # Search ${S}/${KMMODULE} and install common documentation files found |
|
|
715 | local doc |
|
|
716 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
717 | [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
718 | done |
|
|
719 | |
| 689 | kde4-base_src_install |
720 | kde4-base_src_install |
| 690 | } |
|
|
| 691 | |
|
|
| 692 | # @FUNCTION: kde4-meta_src_make_doc |
|
|
| 693 | # @DESCRIPTION: |
|
|
| 694 | # This function searches in ${S}/${KMMODULE}, |
|
|
| 695 | # and tries to install "AUTHORS ChangeLog* README* NEWS TODO" if these files exist. |
|
|
| 696 | kde4-meta_src_make_doc() { |
|
|
| 697 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 698 | |
|
|
| 699 | local doc |
|
|
| 700 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
|
|
| 701 | [[ -s ${KMMODULE}/${doc} ]] && newdoc "${KMMODULE}/${doc}" "${doc}.${KMMODULE##*/}" |
|
|
| 702 | done |
|
|
| 703 | |
|
|
| 704 | kde4-base_src_make_doc |
|
|
| 705 | } |
721 | } |
| 706 | |
722 | |
| 707 | # @FUNCTION: kde4-meta_pkg_postinst |
723 | # @FUNCTION: kde4-meta_pkg_postinst |
| 708 | # @DESCRIPTION: |
724 | # @DESCRIPTION: |
| 709 | # Invoke kbuildsycoca4. |
725 | # Invoke kbuildsycoca4. |