| 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.24 2009/08/07 01:00:11 wired Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.46 2010/12/29 17:06:51 tampakrap 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 | ;; |
| … | |
… | |
| 237 | tarball="kdebase-${PV}.tar.${postfix}" |
218 | tarball="kdebase-${PV}.tar.${postfix}" |
| 238 | # Go one level deeper for kdebase-apps in tarballs |
219 | # Go one level deeper for kdebase-apps in tarballs |
| 239 | moduleprefix=apps/ |
220 | moduleprefix=apps/ |
| 240 | KMTARPARAMS+=" --transform=s|apps/||" |
221 | KMTARPARAMS+=" --transform=s|apps/||" |
| 241 | ;; |
222 | ;; |
|
|
223 | kdepim) |
|
|
224 | if [[ ${PV} == 4.5.93 ]] ; then |
|
|
225 | tarball="kdepim-4.6beta3.tar.${postfix}" |
|
|
226 | fi |
|
|
227 | ;; |
| 242 | *) |
228 | *) |
| 243 | # Create tarball name from module name (this is the default) |
229 | # Create tarball name from module name (this is the default) |
| 244 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
230 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
| 245 | ;; |
231 | ;; |
| 246 | esac |
232 | esac |
| … | |
… | |
| 262 | extractlist+=" ${topdir}${moduleprefix}${f}" |
248 | extractlist+=" ${topdir}${moduleprefix}${f}" |
| 263 | done |
249 | done |
| 264 | extractlist+=" $(__list_needed_subdirectories)" |
250 | extractlist+=" $(__list_needed_subdirectories)" |
| 265 | |
251 | |
| 266 | pushd "${WORKDIR}" > /dev/null |
252 | pushd "${WORKDIR}" > /dev/null |
| 267 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} >&2 |
253 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} |
| 268 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null |
254 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" |
| 269 | |
255 | |
| 270 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
256 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
| 271 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
257 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
| 272 | |
258 | |
| 273 | popd > /dev/null |
259 | popd > /dev/null |
| … | |
… | |
| 298 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
284 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
| 299 | # KMEXTRACTONLY and KMTARPARAMS. |
285 | # KMEXTRACTONLY and KMTARPARAMS. |
| 300 | kde4-meta_create_extractlists() { |
286 | kde4-meta_create_extractlists() { |
| 301 | debug-print-function ${FUNCNAME} "$@" |
287 | debug-print-function ${FUNCNAME} "$@" |
| 302 | |
288 | |
| 303 | # TODO change to KMEXTRA for more strict check |
289 | # Add default handbook locations |
|
|
290 | # 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 |
291 | 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 |
292 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 306 | # the path to the module subdirectory. |
293 | # the path to the module subdirectory. |
| 307 | KMEXTRA_NONFATAL+=" |
294 | KMEXTRA_NONFATAL+=" |
| 308 | doc/${KMMODULE##*/}" |
295 | doc/${KMMODULE##*/}" |
|
|
296 | fi |
|
|
297 | |
|
|
298 | # Add default handbook locations |
|
|
299 | if [[ -z ${KMNOMODULE} ]] && { [[ ${KDE_HANDBOOK} = always ]] || { [[ ${KDE_HANDBOOK} = optional ]] && use handbook; }; }; then |
|
|
300 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
| 309 | fi |
301 | fi |
| 310 | |
302 | |
| 311 | # Add some CMake-files to KMEXTRACTONLY. |
303 | # Add some CMake-files to KMEXTRACTONLY. |
| 312 | # Note that this actually doesn't include KMEXTRA handling. |
304 | # Note that this actually doesn't include KMEXTRA handling. |
| 313 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
305 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| … | |
… | |
| 337 | ;; |
329 | ;; |
| 338 | kdegames) |
330 | kdegames) |
| 339 | if [[ ${PN} != libkdegames ]]; then |
331 | if [[ ${PN} != libkdegames ]]; then |
| 340 | KMEXTRACTONLY+=" |
332 | KMEXTRACTONLY+=" |
| 341 | libkdegames/" |
333 | libkdegames/" |
|
|
334 | KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 342 | fi |
335 | fi |
| 343 | ;; |
336 | ;; |
| 344 | kdepim) |
337 | kdepim) |
| 345 | if [[ ${PN} != libkdepim ]]; then |
338 | if [[ ${PN} != libkdepim ]]; then |
| 346 | KMEXTRACTONLY+=" |
339 | KMEXTRACTONLY+=" |
| 347 | libkdepim/" |
340 | libkdepim/" |
| 348 | fi |
341 | 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+=" |
342 | KMEXTRACTONLY+=" |
|
|
343 | config-enterprise.h.cmake |
| 357 | kleopatra/ConfigureChecks.cmake" |
344 | kleopatra/ConfigureChecks.cmake" |
|
|
345 | if slot_is_at_least 4.5 ${SLOT}; then |
|
|
346 | KMEXTRACTONLY+=" |
|
|
347 | CTestCustom.cmake |
|
|
348 | kdepim-version.h.cmake" |
|
|
349 | else |
|
|
350 | KMEXTRACTONLY+=" |
|
|
351 | kdepim-version.h" |
|
|
352 | fi |
| 358 | if has kontact ${IUSE//+} && use kontact; then |
353 | if has kontact ${IUSE//+} && use kontact; then |
| 359 | KMEXTRA+=" |
354 | KMEXTRA+=" |
| 360 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
355 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 361 | KMEXTRACTONLY+=" |
|
|
| 362 | kontactinterfaces/" |
|
|
| 363 | fi |
356 | fi |
| 364 | ;; |
357 | ;; |
| 365 | kdeutils) |
358 | kdeutils) |
| 366 | case ${SLOT} in |
|
|
| 367 | 4.3|4.4|live) |
|
|
| 368 | KMEXTRACTONLY+=" |
359 | KMEXTRACTONLY+=" |
| 369 | kdeutils-version.h" |
360 | kdeutils-version.h" |
| 370 | ;; |
|
|
| 371 | esac |
|
|
| 372 | ;; |
361 | ;; |
| 373 | koffice) |
362 | koffice) |
| 374 | KMEXTRACTONLY+=" |
363 | KMEXTRACTONLY+=" |
| 375 | config-endian.h.cmake |
|
|
| 376 | filters/config-filters.h.cmake |
364 | filters/config-filters.h.cmake |
| 377 | config-openexr.h.cmake |
|
|
| 378 | config-opengl.h.cmake |
|
|
| 379 | config-prefix.h.cmake |
|
|
| 380 | " |
365 | " |
| 381 | case ${PV} in |
366 | case ${PV} in |
| 382 | 2.0.*) |
367 | 2.0.*) |
| 383 | KMEXTRACTONLY+=" |
368 | KMEXTRACTONLY+=" |
| 384 | config-openctl.h.cmake" |
369 | config-openctl.h.cmake |
|
|
370 | config-endian.h.cmake |
|
|
371 | config-openexr.h.cmake |
|
|
372 | config-opengl.h.cmake |
|
|
373 | config-prefix.h.cmake" |
|
|
374 | ;; |
|
|
375 | 2.[12].*) |
|
|
376 | KMEXTRACTONLY+=" |
|
|
377 | config-endian.h.cmake |
|
|
378 | config-openexr.h.cmake |
|
|
379 | config-opengl.h.cmake |
|
|
380 | config-prefix.h.cmake" |
| 385 | ;; |
381 | ;; |
| 386 | esac |
382 | esac |
| 387 | ;; |
383 | ;; |
| 388 | esac |
384 | esac |
| 389 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
385 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
| 390 | case ${KMNAME} in |
386 | 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) |
387 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
| 403 | case ${PN} in |
388 | case ${PN} in |
| 404 | libkdegames|libkdeedu|libkworkspace) |
389 | libkdegames|libkdeedu|libkworkspace) |
| 405 | KMEXTRA+=" |
390 | KMEXTRA+=" |
| 406 | cmake/modules/" |
391 | cmake/modules/" |
| … | |
… | |
| 492 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
477 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 493 | fi |
478 | fi |
| 494 | done |
479 | done |
| 495 | } |
480 | } |
| 496 | |
481 | |
| 497 | # FIXME: add description |
|
|
| 498 | # @FUNCTION: kde4-meta_change_cmakelists |
482 | # @FUNCTION: kde4-meta_change_cmakelists |
| 499 | # @DESCRIPTION: |
483 | # @DESCRIPTION: |
|
|
484 | # Adjust CMakeLists.txt to comply to our splitting. |
| 500 | kde4-meta_change_cmakelists() { |
485 | kde4-meta_change_cmakelists() { |
| 501 | debug-print-function ${FUNCNAME} "$@" |
486 | debug-print-function ${FUNCNAME} "$@" |
| 502 | |
487 | |
| 503 | pushd "${S}" > /dev/null |
488 | pushd "${S}" > /dev/null |
| 504 | |
489 | |
| 505 | comment_all_add_subdirectory ./ |
490 | comment_all_add_subdirectory ./ |
| 506 | |
491 | |
| 507 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
492 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
| 508 | if [[ -f "${S}"/CMakeLists.txt ]]; then |
493 | if [[ -f CMakeLists.txt ]]; then |
| 509 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
494 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 510 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
495 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 511 | -i "${S}"/CMakeLists.txt || die "${LINENO}: cmake sed died" |
496 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
| 512 | fi |
497 | fi |
| 513 | |
498 | |
| 514 | if [[ -z ${KMNOMODULE} ]]; then |
499 | if [[ -z ${KMNOMODULE} ]]; then |
| 515 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
500 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
| 516 | find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
501 | find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | \ |
|
|
502 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 517 | die "${LINENO}: died in KMMODULE section" |
503 | die "${LINENO}: died in KMMODULE section" |
| 518 | _change_cmakelists_parent_dirs ${KMMODULE} |
504 | _change_cmakelists_parent_dirs ${KMMODULE} |
| 519 | fi |
505 | fi |
| 520 | |
506 | |
| 521 | local i |
507 | local i |
| 522 | |
508 | |
| 523 | # KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
509 | # KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
| 524 | for i in ${KMEXTRACTONLY}; do |
510 | for i in ${KMEXTRACTONLY}; do |
| 525 | if [[ -d "${S}"/${i} && -f "${S}"/${i}/../CMakeLists.txt ]]; then |
511 | if [[ -d ${i} && -f ${i}/../CMakeLists.txt ]]; then |
| 526 | sed -i -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" "${S}"/${i}/../CMakeLists.txt || \ |
512 | sed -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
513 | -i ${i}/../CMakeLists.txt || \ |
| 527 | die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
514 | die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
| 528 | fi |
515 | fi |
| 529 | done |
516 | done |
| 530 | |
517 | |
| 531 | # KMCOMPILEONLY |
518 | # KMCOMPILEONLY |
| … | |
… | |
| 553 | # KMEXTRA_NONFATAL section |
540 | # KMEXTRA_NONFATAL section |
| 554 | for i in ${KMEXTRA_NONFATAL}; do |
541 | for i in ${KMEXTRA_NONFATAL}; do |
| 555 | if [[ -d "${S}"/${i} ]]; then |
542 | if [[ -d "${S}"/${i} ]]; then |
| 556 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
543 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 557 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
544 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 558 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
545 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
| 559 | _change_cmakelists_parent_dirs ${i} |
546 | _change_cmakelists_parent_dirs ${i} |
| 560 | fi |
547 | fi |
| 561 | done |
548 | done |
| 562 | |
549 | |
| 563 | case ${KMNAME} in |
550 | case ${KMNAME} in |
| 564 | kdebase-workspace) |
551 | kdebase-workspace) |
| 565 | # COLLISION PROTECT section |
552 | # COLLISION PROTECT section |
| 566 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
553 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
| 567 | # not as a part of every package. |
554 | # not as a part of every package. |
| 568 | if [[ ${PN} != kdebase-startkde && -f "${S}"/CMakeLists.txt ]]; then |
555 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
| 569 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
556 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| 570 | sed -i -e '/startkde/s/^/#DONOTINSTALL /' "${S}"/CMakeLists.txt || \ |
557 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
| 571 | die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
558 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
| 572 | fi |
559 | fi |
| 573 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
560 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
| 574 | if [[ ${PN} != libkworkspace ]]; then |
561 | if [[ ${PN} != libkworkspace ]]; then |
| 575 | sed -i \ |
|
|
| 576 | -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
562 | 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" |
563 | -i CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
| 578 | fi |
564 | fi |
| 579 | ;; |
565 | ;; |
| 580 | kdebase-runtime) |
566 | kdebase-runtime) |
| 581 | # COLLISION PROTECT section |
567 | # COLLISION PROTECT section |
| 582 | # Only install the kde4 script as part of kde-base/kdebase-data |
568 | # Only install the kde4 script as part of kde-base/kdebase-data |
| 583 | if [[ ${PN} != kdebase-data && -f "${S}"/CMakeLists.txt ]]; then |
569 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
| 584 | sed -i -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
570 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
| 585 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
571 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| 586 | fi |
572 | fi |
|
|
573 | ;; |
|
|
574 | kdenetwork) |
|
|
575 | # Disable hardcoded kdepimlibs check |
|
|
576 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
|
|
577 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 587 | ;; |
578 | ;; |
| 588 | kdepim) |
579 | kdepim) |
|
|
580 | # Disable hardcoded checks |
|
|
581 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
|
|
582 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
|
|
583 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
|
|
584 | -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
585 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
586 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
587 | # Disable broken or redundant build logic |
|
|
588 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
|
|
589 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
590 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
591 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
|
|
592 | fi |
|
|
593 | if ! slot_is_at_least 4.5 ${SLOT}; then |
| 589 | case ${PN} in |
594 | case ${PN} in |
| 590 | kaddressbook|kalarm|kmailcvt|kontact|korganizer|korn) |
595 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 591 | sed -i -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
596 | 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" |
597 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
|
|
598 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| 593 | _change_cmakelists_parent_dirs kmail |
599 | _change_cmakelists_parent_dirs kmail |
| 594 | ;; |
600 | ;; |
| 595 | esac |
601 | esac |
|
|
602 | fi |
| 596 | ;; |
603 | ;; |
| 597 | kdewebdev) |
604 | kdewebdev) |
| 598 | # Disable hardcoded kdepimlibs check |
605 | # Disable hardcoded checks |
| 599 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
606 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 600 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
607 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 601 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
608 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 602 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
609 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 603 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
610 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 604 | ;; |
611 | ;; |
| 605 | koffice) |
612 | koffice) |
| 606 | # prevent collisions |
613 | # Prevent collisions |
| 607 | if [[ ${PN} != koffice-data ]]; then |
614 | if [[ ${PN} != koffice-data ]]; then |
| 608 | sed -i -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
615 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 609 | "${S}"/cmake/modules/CMakeLists.txt || \ |
616 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
|
|
617 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
| 610 | die "${LINENO}: sed died in collision prevention section" |
618 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
|
|
619 | fi |
|
|
620 | # koffice 2.0 |
| 611 | case ${PV} in |
621 | case ${PV} in |
| 612 | 2.0.*) |
622 | 2.0.[1-9]) |
| 613 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
623 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
| 614 | "${S}"/CMakeLists.txt || \ |
624 | "${S}"/CMakeLists.txt || \ |
| 615 | die "${LINENO}: sed died in collision prevention section" |
625 | die "${LINENO}: sed died in collision prevention section" |
| 616 | ;; |
626 | ;; |
| 617 | *) |
627 | *) ;; |
| 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 |
628 | esac |
|
|
629 | # koffice 2.1.[8-9][0-9] and 9999 |
|
|
630 | case ${PV} in |
|
|
631 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
632 | sed -e '/^option(BUILD/s/ON/OFF/' \ |
|
|
633 | -e '/^if(NOT BUILD_kchart/,/^endif(NOT BUILD_kchart/d' \ |
|
|
634 | -e '/^if(BUILD_koreport/,/^endif(BUILD_koreport/d' \ |
|
|
635 | -e 's/set(SHOULD_BUILD_F_OFFICE TRUE)/set(SHOULD_BUILD_F_OFFICE FALSE)/' \ |
|
|
636 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
637 | if [[ ${PN} != koffice-data ]] && [[ ${PV} == 9999 ]]; then |
|
|
638 | sed -e '/config-opengl.h/d' \ |
|
|
639 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
640 | |
| 623 | fi |
641 | fi |
|
|
642 | ;; |
|
|
643 | *) ;; |
|
|
644 | esac |
| 624 | esac |
645 | esac |
| 625 | |
646 | |
| 626 | popd > /dev/null |
647 | popd > /dev/null |
| 627 | } |
648 | } |
| 628 | |
649 | |
| … | |
… | |
| 631 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
652 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
| 632 | # ebuilds. |
653 | # ebuilds. |
| 633 | kde4-meta_src_configure() { |
654 | kde4-meta_src_configure() { |
| 634 | debug-print-function ${FUNCNAME} "$@" |
655 | debug-print-function ${FUNCNAME} "$@" |
| 635 | |
656 | |
|
|
657 | # backwards-compatibility: make mycmakeargs an array, if it isn't already |
|
|
658 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
659 | mycmakeargs=(${mycmakeargs}) |
|
|
660 | fi |
|
|
661 | |
| 636 | # Set some cmake default values here (usually workarounds for automagic deps) |
662 | # Set some cmake default values here (usually workarounds for automagic deps) |
| 637 | case ${KMNAME} in |
663 | case ${KMNAME} in |
| 638 | kdewebdev) |
664 | kdewebdev) |
| 639 | mycmakeargs=" |
665 | mycmakeargs=( |
| 640 | -DWITH_KdepimLibs=OFF |
666 | -DWITH_KdepimLibs=OFF |
| 641 | -DWITH_LibXml2=OFF |
667 | -DWITH_LibXml2=OFF |
| 642 | -DWITH_LibXslt=OFF |
668 | -DWITH_LibXslt=OFF |
| 643 | -DWITH_Boost=OFF |
669 | -DWITH_Boost=OFF |
| 644 | -DWITH_LibTidy=OFF |
670 | -DWITH_LibTidy=OFF |
| 645 | ${mycmakeargs}" |
671 | "${mycmakeargs[@]}" |
|
|
672 | ) |
|
|
673 | ;; |
|
|
674 | koffice) |
|
|
675 | case ${PV} in |
|
|
676 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
677 | if [[ ${PN} != "kchart" ]]; then |
|
|
678 | mycmakeargs=( |
|
|
679 | -DBUILD_koreport=OFF |
|
|
680 | "${mycmakeargs[@]}" |
|
|
681 | ) |
|
|
682 | fi |
|
|
683 | ;; |
|
|
684 | esac |
| 646 | ;; |
685 | ;; |
| 647 | esac |
686 | esac |
| 648 | |
687 | |
| 649 | kde4-base_src_configure |
688 | kde4-base_src_configure |
| 650 | } |
689 | } |
| … | |
… | |
| 659 | kde4-base_src_compile "$@" |
698 | kde4-base_src_compile "$@" |
| 660 | } |
699 | } |
| 661 | |
700 | |
| 662 | # @FUNCTION: kde4-meta_src_test |
701 | # @FUNCTION: kde4-meta_src_test |
| 663 | # @DESCRIPTION: |
702 | # @DESCRIPTION: |
| 664 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
703 | # Currently just calls its equivalent in kde4-base.eclass(5) if |
| 665 | # ebuilds. |
704 | # I_KNOW_WHAT_I_AM_DOING is set. Use this in split ebuilds. |
| 666 | kde4-meta_src_test() { |
705 | kde4-meta_src_test() { |
| 667 | debug-print-function $FUNCNAME "$@" |
706 | debug-print-function $FUNCNAME "$@" |
| 668 | |
707 | |
|
|
708 | if [[ $I_KNOW_WHAT_I_AM_DOING ]]; then |
| 669 | kde4-base_src_test |
709 | kde4-base_src_test |
|
|
710 | else |
|
|
711 | einfo "Tests disabled" |
|
|
712 | fi |
| 670 | } |
713 | } |
| 671 | |
714 | |
| 672 | # @FUNCTION: kde4-meta_src_install |
715 | # @FUNCTION: kde4-meta_src_install |
| 673 | # @DESCRIPTION: |
716 | # @DESCRIPTION: |
| 674 | # Function for installing KDE4 split applications. |
717 | # Function for installing KDE4 split applications. |
| 675 | kde4-meta_src_install() { |
718 | kde4-meta_src_install() { |
| 676 | debug-print-function $FUNCNAME "$@" |
719 | debug-print-function $FUNCNAME "$@" |
| 677 | |
720 | |
|
|
721 | # Search ${S}/${KMMODULE} and install common documentation files found |
|
|
722 | local doc |
|
|
723 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
724 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
725 | done |
|
|
726 | |
| 678 | kde4-base_src_install |
727 | kde4-base_src_install |
| 679 | } |
728 | } |
| 680 | |
729 | |
| 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 |
730 | # @FUNCTION: kde4-meta_pkg_postinst |
| 697 | # @DESCRIPTION: |
731 | # @DESCRIPTION: |
| 698 | # Display information about application handbook and invoke kbuildsycoca4. |
732 | # Invoke kbuildsycoca4. |
| 699 | kde4-meta_pkg_postinst() { |
733 | kde4-meta_pkg_postinst() { |
| 700 | debug-print-function ${FUNCNAME} "$@" |
734 | 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 | |
735 | |
| 709 | kde4-base_pkg_postinst |
736 | kde4-base_pkg_postinst |
| 710 | } |
737 | } |
| 711 | |
738 | |
| 712 | # @FUNCTION: kde4-meta_pkg_postrm |
739 | # @FUNCTION: kde4-meta_pkg_postrm |