| 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.31 2009/12/14 19:44:15 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.50 2011/03/11 19:50:52 dilfridge 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. |
| … | |
… | |
| 10 | # This eclass provides all necessary functions for writing split KDE ebuilds. |
10 | # This eclass provides all necessary functions for writing split KDE ebuilds. |
| 11 | # |
11 | # |
| 12 | # You must define KMNAME to use this eclass, and do so before inheriting it. All other variables are optional. |
12 | # You must define KMNAME to use this eclass, and do so before inheriting it. All other variables are optional. |
| 13 | # Do not include the same item in more than one of KMMODULE, KMMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY. |
13 | # Do not include the same item in more than one of KMMODULE, KMMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY. |
| 14 | |
14 | |
| 15 | inherit kde4-base versionator |
15 | inherit kde4-base toolchain-funcs versionator |
| 16 | |
16 | |
|
|
17 | case ${EAPI:-0} in |
|
|
18 | 3) |
| 17 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
19 | KDEMETA_EXPF="pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm" |
|
|
20 | ;; |
|
|
21 | *) |
|
|
22 | KDEMETA_EXPF="pkg_pretend pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm" |
|
|
23 | ;; |
|
|
24 | esac |
|
|
25 | EXPORT_FUNCTIONS ${KDEMETA_EXPF} |
| 18 | |
26 | |
| 19 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
27 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
| 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 | |
28 | |
| 26 | # Add dependencies that all packages in a certain module share. |
29 | # Add dependencies that all packages in a certain module share. |
| 27 | case ${KMNAME} in |
30 | case ${KMNAME} in |
| 28 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
31 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
| 29 | COMMONDEPEND+=" >=kde-base/qimageblitz-0.0.4" |
32 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 30 | ;; |
33 | ;; |
| 31 | kdepim|kdepim-runtime) |
34 | kdepim|kdepim-runtime) |
| 32 | COMMONDEPEND+=" $(add_kdebase_dep kdepimlibs)" |
|
|
| 33 | case ${PN} in |
35 | case ${PN} in |
| 34 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
36 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| 35 | IUSE+=" +kontact" |
37 | IUSE+=" +kontact" |
| 36 | if ! slot_is_at_least 4.4 ${SLOT}; then |
|
|
| 37 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontactinterfaces) )" |
38 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
| 38 | fi |
|
|
| 39 | ;; |
39 | ;; |
| 40 | esac |
40 | esac |
| 41 | ;; |
41 | ;; |
| 42 | kdegames) |
42 | kdegames) |
| 43 | if [[ ${PN} != libkdegames ]]; then |
43 | if [[ ${PN} != libkdegames ]]; then |
| … | |
… | |
| 106 | # If set to "true", $KMMODULE doesn't have to be defined. |
106 | # If set to "true", $KMMODULE doesn't have to be defined. |
| 107 | # |
107 | # |
| 108 | # Example usage: If you're installing subdirectories of a package, like plugins, |
108 | # Example usage: If you're installing subdirectories of a package, like plugins, |
| 109 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
109 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
| 110 | # set KMNOMODULE="true". |
110 | # set KMNOMODULE="true". |
| 111 | if [[ -z ${KMMODULE} && ${KMNOMODULE} != true ]]; then |
111 | if [[ -z ${KMMODULE} ]] && [[ ${KMNOMODULE} != true ]]; then |
| 112 | KMMODULE=${PN} |
112 | KMMODULE=${PN} |
| 113 | fi |
113 | fi |
| 114 | |
114 | |
| 115 | # @ECLASS-VARIABLE: KMEXTRA |
115 | # @ECLASS-VARIABLE: KMEXTRA |
| 116 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| 117 | # All subdirectories listed here will be extracted, compiled & installed. |
117 | # All subdirectories listed here will be extracted, compiled & installed. |
| 118 | # $KMMODULE is always added to $KMEXTRA. |
118 | # $KMMODULE is always added to $KMEXTRA. |
| 119 | # If the handbook USE-flag is set, and if this directory exists, |
119 | # If KDE_HANDBOOK is 'always' or 'optional' and handbook USE-flag is set, and if this |
| 120 | # then "doc/$KMMODULE" is added to $KMEXTRA. In other cases, this should be |
120 | # directory exists, then "doc/$KMMODULE" is added to $KMEXTRA. If there's additional |
| 121 | # handled in the ebuild. |
|
|
| 122 | # If the documentation is in a different subdirectory, you should add it to KMEXTRA. |
121 | # documentation in different subdirectories, it should be added to KMEXTRA manually.. |
| 123 | |
122 | |
| 124 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
123 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
| 125 | # @DESCRIPTION: |
124 | # @DESCRIPTION: |
| 126 | # All subdirectories listed here will be extracted & compiled, but not installed. |
125 | # All subdirectories listed here will be extracted & compiled, but not installed. |
| 127 | |
126 | |
| … | |
… | |
| 134 | # @ECLASS-VARIABLE: KMTARPARAMS |
133 | # @ECLASS-VARIABLE: KMTARPARAMS |
| 135 | # @DESCRIPTION: |
134 | # @DESCRIPTION: |
| 136 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
135 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
| 137 | # '-xpf -j' are passed to tar by default. |
136 | # '-xpf -j' are passed to tar by default. |
| 138 | |
137 | |
|
|
138 | # @FUNCTION: kde4-meta_pkg_pretend |
|
|
139 | # @DESCRIPTION: |
|
|
140 | # Currently only checks the gcc version. |
|
|
141 | kde4-meta_pkg_pretend() { |
|
|
142 | debug-print-function ${FUNCNAME} "$@" |
|
|
143 | |
|
|
144 | slot_is_at_least 4.6 ${SLOT} && ( [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
145 | ( [[ $(gcc-major-version) -eq 4 ]] && [[ $(gcc-minor-version) -le 3 ]] ) ) \ |
|
|
146 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE SC 4.6 (see bug 354837)." |
|
|
147 | } |
|
|
148 | |
| 139 | # @FUNCTION: kde4-meta_pkg_setup |
149 | # @FUNCTION: kde4-meta_pkg_setup |
| 140 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 141 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in |
151 | # Currently calls its equivalent in kde4-base.eclass(5) and checks the gcc version. |
| 142 | # split ebuilds. |
152 | # Use this one in split ebuilds. |
| 143 | kde4-meta_pkg_setup() { |
153 | kde4-meta_pkg_setup() { |
| 144 | debug-print-function ${FUNCNAME} "$@" |
154 | debug-print-function ${FUNCNAME} "$@" |
|
|
155 | |
|
|
156 | has pkg_pretend ${KDEMETA_EXPF} || kde4-meta_pkg_pretend |
| 145 | |
157 | |
| 146 | kde4-base_pkg_setup |
158 | kde4-base_pkg_setup |
| 147 | } |
159 | } |
| 148 | |
160 | |
| 149 | # @FUNCTION: kde4-meta_src_unpack |
161 | # @FUNCTION: kde4-meta_src_unpack |
| … | |
… | |
| 209 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
221 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| 210 | fi |
222 | fi |
| 211 | else |
223 | else |
| 212 | local abort tarball tarfile f extractlist moduleprefix postfix |
224 | local abort tarball tarfile f extractlist moduleprefix postfix |
| 213 | case ${PV} in |
225 | case ${PV} in |
| 214 | 4.3.8[05] | 4.3.9[0568]) |
226 | 4.[45].8[05] | 4.[45].9[023568]) |
| 215 | # block for normally packed upstream unstable snapshots |
227 | # Block for normally packed upstream unstable snapshots |
| 216 | KMTARPARAMS+=" --bzip2" # bz2 |
228 | KMTARPARAMS+=" --bzip2" # bz2 |
| 217 | postfix="bz2" |
229 | postfix="bz2" |
| 218 | ;; |
|
|
| 219 | 4.3.[6-9]*) |
|
|
| 220 | # Not passing --xz, as it doesn't work with stable tar |
|
|
| 221 | KMTARPARAMS+=" --use-compress-program=xz" # xz |
|
|
| 222 | postfix="xz" |
|
|
| 223 | ;; |
230 | ;; |
| 224 | *) |
231 | *) |
| 225 | KMTARPARAMS+=" --bzip2" # bz2 |
232 | KMTARPARAMS+=" --bzip2" # bz2 |
| 226 | postfix="bz2" |
233 | postfix="bz2" |
| 227 | ;; |
234 | ;; |
| 228 | esac |
235 | esac |
| 229 | case ${KMNAME} in |
236 | case ${KMNAME} in |
| 230 | kdebase-apps) |
237 | kdebase-apps) |
| 231 | # kdebase/apps -> kdebase-apps |
238 | # kdebase/apps -> kdebase-apps |
| 232 | tarball="kdebase-${PV}.tar.${postfix}" |
239 | tarball="kdebase-${PV}.tar.${postfix}" |
|
|
240 | case ${PV} in |
|
|
241 | 4.6.1) |
|
|
242 | ;; |
|
|
243 | *) |
| 233 | # Go one level deeper for kdebase-apps in tarballs |
244 | # Go one level deeper for kdebase-apps in tarballs |
| 234 | moduleprefix=apps/ |
245 | moduleprefix=apps/ |
| 235 | KMTARPARAMS+=" --transform=s|apps/||" |
246 | KMTARPARAMS+=" --transform=s|apps/||" |
|
|
247 | ;; |
|
|
248 | esac |
|
|
249 | ;; |
|
|
250 | kdepim) |
|
|
251 | if [[ ${PV} == 4.5.93 ]] ; then |
|
|
252 | tarball="kdepim-4.6beta3.tar.${postfix}" |
|
|
253 | else |
|
|
254 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
|
|
255 | fi |
| 236 | ;; |
256 | ;; |
| 237 | *) |
257 | *) |
| 238 | # Create tarball name from module name (this is the default) |
258 | # Create tarball name from module name (this is the default) |
| 239 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
259 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
| 240 | ;; |
260 | ;; |
| … | |
… | |
| 257 | extractlist+=" ${topdir}${moduleprefix}${f}" |
277 | extractlist+=" ${topdir}${moduleprefix}${f}" |
| 258 | done |
278 | done |
| 259 | extractlist+=" $(__list_needed_subdirectories)" |
279 | extractlist+=" $(__list_needed_subdirectories)" |
| 260 | |
280 | |
| 261 | pushd "${WORKDIR}" > /dev/null |
281 | pushd "${WORKDIR}" > /dev/null |
| 262 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} >&2 |
282 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} |
| 263 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null |
283 | if [[ ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
284 | # to make the devs happy - bug 338397 |
|
|
285 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" |
|
|
286 | else |
|
|
287 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
|
|
288 | fi |
| 264 | |
289 | |
| 265 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
290 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
| 266 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
291 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
| 267 | |
292 | |
| 268 | popd > /dev/null |
293 | popd > /dev/null |
| … | |
… | |
| 293 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
318 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
| 294 | # KMEXTRACTONLY and KMTARPARAMS. |
319 | # KMEXTRACTONLY and KMTARPARAMS. |
| 295 | kde4-meta_create_extractlists() { |
320 | kde4-meta_create_extractlists() { |
| 296 | debug-print-function ${FUNCNAME} "$@" |
321 | debug-print-function ${FUNCNAME} "$@" |
| 297 | |
322 | |
| 298 | # TODO change to KMEXTRA for more strict check |
323 | # Add default handbook locations |
|
|
324 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
| 299 | if has handbook ${IUSE//+} && use handbook && [[ -n ${KMMODULE} ]]; then |
325 | if ! slot_is_at_least 4.5 ${SLOT} && has handbook ${IUSE//+} && use handbook && [[ -z ${KMNOMODULE} ]]; then |
| 300 | # We use the basename of $KMMODULE because $KMMODULE can contain |
326 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 301 | # the path to the module subdirectory. |
327 | # the path to the module subdirectory. |
| 302 | KMEXTRA_NONFATAL+=" |
328 | KMEXTRA_NONFATAL+=" |
| 303 | doc/${KMMODULE##*/}" |
329 | doc/${KMMODULE##*/}" |
|
|
330 | fi |
|
|
331 | |
|
|
332 | # Add default handbook locations |
|
|
333 | if [[ -z ${KMNOMODULE} ]] && { [[ ${KDE_HANDBOOK} = always ]] || { [[ ${KDE_HANDBOOK} = optional ]] && use handbook; }; }; then |
|
|
334 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
| 304 | fi |
335 | fi |
| 305 | |
336 | |
| 306 | # Add some CMake-files to KMEXTRACTONLY. |
337 | # Add some CMake-files to KMEXTRACTONLY. |
| 307 | # Note that this actually doesn't include KMEXTRA handling. |
338 | # Note that this actually doesn't include KMEXTRA handling. |
| 308 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
339 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| 309 | case ${KMNAME} in |
340 | case ${KMNAME} in |
| 310 | kdebase) |
341 | kdebase) |
|
|
342 | case ${PV} in |
|
|
343 | 4.6.1) |
| 311 | KMEXTRACTONLY+=" |
344 | KMEXTRACTONLY+=" |
|
|
345 | config-apps.h.cmake |
|
|
346 | ConfigureChecks.cmake" |
|
|
347 | ;; |
|
|
348 | *) |
|
|
349 | KMEXTRACTONLY+=" |
| 312 | apps/config-apps.h.cmake |
350 | apps/config-apps.h.cmake |
| 313 | apps/ConfigureChecks.cmake" |
351 | apps/ConfigureChecks.cmake" |
|
|
352 | ;; |
|
|
353 | esac |
| 314 | ;; |
354 | ;; |
| 315 | kdebase-apps) |
355 | kdebase-apps) |
| 316 | KMEXTRACTONLY+=" |
356 | KMEXTRACTONLY+=" |
| 317 | config-apps.h.cmake |
357 | config-apps.h.cmake |
| 318 | ConfigureChecks.cmake" |
358 | ConfigureChecks.cmake" |
| … | |
… | |
| 332 | ;; |
372 | ;; |
| 333 | kdegames) |
373 | kdegames) |
| 334 | if [[ ${PN} != libkdegames ]]; then |
374 | if [[ ${PN} != libkdegames ]]; then |
| 335 | KMEXTRACTONLY+=" |
375 | KMEXTRACTONLY+=" |
| 336 | libkdegames/" |
376 | libkdegames/" |
|
|
377 | KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 337 | fi |
378 | fi |
| 338 | ;; |
379 | ;; |
| 339 | kdepim) |
380 | kdepim) |
| 340 | if [[ ${PN} != libkdepim ]]; then |
381 | if [[ ${PN} != libkdepim ]]; then |
| 341 | KMEXTRACTONLY+=" |
382 | KMEXTRACTONLY+=" |
| 342 | libkdepim/" |
383 | libkdepim/" |
| 343 | fi |
384 | 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+=" |
385 | KMEXTRACTONLY+=" |
|
|
386 | config-enterprise.h.cmake |
| 352 | kleopatra/ConfigureChecks.cmake" |
387 | kleopatra/ConfigureChecks.cmake" |
|
|
388 | if slot_is_at_least 4.5 ${SLOT}; then |
|
|
389 | KMEXTRACTONLY+=" |
|
|
390 | CTestCustom.cmake |
|
|
391 | kdepim-version.h.cmake" |
|
|
392 | else |
|
|
393 | KMEXTRACTONLY+=" |
|
|
394 | kdepim-version.h" |
|
|
395 | fi |
| 353 | if has kontact ${IUSE//+} && use kontact; then |
396 | if has kontact ${IUSE//+} && use kontact; then |
| 354 | KMEXTRA+=" |
397 | KMEXTRA+=" |
| 355 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
398 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 356 | if ! slot_is_at_least 4.4 ${SLOT}; then |
|
|
| 357 | KMEXTRACTONLY+=" |
|
|
| 358 | kontactinterfaces/" |
|
|
| 359 | fi |
|
|
| 360 | fi |
399 | fi |
| 361 | ;; |
400 | ;; |
| 362 | kdeutils) |
401 | kdeutils) |
| 363 | case ${SLOT} in |
|
|
| 364 | 4.3|4.4|live) |
|
|
| 365 | KMEXTRACTONLY+=" |
402 | KMEXTRACTONLY+=" |
| 366 | kdeutils-version.h" |
403 | kdeutils-version.h" |
| 367 | ;; |
|
|
| 368 | esac |
|
|
| 369 | ;; |
404 | ;; |
| 370 | koffice) |
405 | koffice) |
| 371 | KMEXTRACTONLY+=" |
406 | KMEXTRACTONLY+=" |
| 372 | config-endian.h.cmake |
|
|
| 373 | filters/config-filters.h.cmake |
407 | filters/config-filters.h.cmake |
| 374 | config-openexr.h.cmake |
|
|
| 375 | config-opengl.h.cmake |
|
|
| 376 | config-prefix.h.cmake |
|
|
| 377 | " |
408 | " |
| 378 | case ${PV} in |
409 | case ${PV} in |
| 379 | 2.0.*) |
410 | 2.0.*) |
| 380 | KMEXTRACTONLY+=" |
411 | KMEXTRACTONLY+=" |
| 381 | config-openctl.h.cmake" |
412 | config-openctl.h.cmake |
|
|
413 | config-endian.h.cmake |
|
|
414 | config-openexr.h.cmake |
|
|
415 | config-opengl.h.cmake |
|
|
416 | config-prefix.h.cmake" |
|
|
417 | ;; |
|
|
418 | 2.[12].*) |
|
|
419 | KMEXTRACTONLY+=" |
|
|
420 | config-endian.h.cmake |
|
|
421 | config-openexr.h.cmake |
|
|
422 | config-opengl.h.cmake |
|
|
423 | config-prefix.h.cmake" |
| 382 | ;; |
424 | ;; |
| 383 | esac |
425 | esac |
| 384 | ;; |
426 | ;; |
| 385 | esac |
427 | esac |
| 386 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
428 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
| 387 | case ${KMNAME} in |
429 | 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) |
430 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
| 399 | case ${PN} in |
431 | case ${PN} in |
| 400 | libkdegames|libkdeedu|libkworkspace) |
432 | libkdegames|libkdeedu|libkworkspace) |
| 401 | KMEXTRA+=" |
433 | KMEXTRA+=" |
| 402 | cmake/modules/" |
434 | cmake/modules/" |
| … | |
… | |
| 488 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
520 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 489 | fi |
521 | fi |
| 490 | done |
522 | done |
| 491 | } |
523 | } |
| 492 | |
524 | |
| 493 | # FIXME: add description |
|
|
| 494 | # @FUNCTION: kde4-meta_change_cmakelists |
525 | # @FUNCTION: kde4-meta_change_cmakelists |
| 495 | # @DESCRIPTION: |
526 | # @DESCRIPTION: |
|
|
527 | # Adjust CMakeLists.txt to comply to our splitting. |
| 496 | kde4-meta_change_cmakelists() { |
528 | kde4-meta_change_cmakelists() { |
| 497 | debug-print-function ${FUNCNAME} "$@" |
529 | debug-print-function ${FUNCNAME} "$@" |
| 498 | |
530 | |
| 499 | pushd "${S}" > /dev/null |
531 | pushd "${S}" > /dev/null |
| 500 | |
532 | |
| … | |
… | |
| 586 | # Disable hardcoded kdepimlibs check |
618 | # Disable hardcoded kdepimlibs check |
| 587 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
619 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 588 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
620 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 589 | ;; |
621 | ;; |
| 590 | kdepim) |
622 | kdepim) |
|
|
623 | # Disable hardcoded checks |
|
|
624 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
|
|
625 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
|
|
626 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
|
|
627 | -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
628 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
629 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
630 | # Disable broken or redundant build logic |
|
|
631 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
|
|
632 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
|
|
633 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
|
|
634 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
|
|
635 | fi |
|
|
636 | if ! slot_is_at_least 4.5 ${SLOT}; then |
| 591 | case ${PN} in |
637 | case ${PN} in |
| 592 | kaddressbook|kalarm|kmailcvt|kontact|korganizer|korn) |
638 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 593 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
639 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 594 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
640 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
| 595 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
641 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| 596 | _change_cmakelists_parent_dirs kmail |
642 | _change_cmakelists_parent_dirs kmail |
| 597 | ;; |
643 | ;; |
| 598 | esac |
644 | esac |
|
|
645 | fi |
| 599 | ;; |
646 | ;; |
| 600 | kdewebdev) |
647 | kdewebdev) |
| 601 | # Disable hardcoded kdepimlibs check |
648 | # Disable hardcoded checks |
| 602 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
649 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 603 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
650 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 604 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
651 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 605 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
652 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 606 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
653 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 607 | ;; |
654 | ;; |
| 608 | koffice) |
655 | koffice) |
| 609 | # prevent collisions |
656 | # Prevent collisions |
| 610 | if [[ ${PN} != koffice-data ]]; then |
657 | if [[ ${PN} != koffice-data ]]; then |
| 611 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
658 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 612 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
659 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 613 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
660 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
| 614 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
661 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| … | |
… | |
| 618 | 2.0.[1-9]) |
665 | 2.0.[1-9]) |
| 619 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
666 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
| 620 | "${S}"/CMakeLists.txt || \ |
667 | "${S}"/CMakeLists.txt || \ |
| 621 | die "${LINENO}: sed died in collision prevention section" |
668 | die "${LINENO}: sed died in collision prevention section" |
| 622 | ;; |
669 | ;; |
|
|
670 | *) ;; |
|
|
671 | esac |
|
|
672 | # koffice 2.1.[8-9][0-9] and 9999 |
|
|
673 | case ${PV} in |
|
|
674 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
675 | sed -e '/^option(BUILD/s/ON/OFF/' \ |
|
|
676 | -e '/^if(NOT BUILD_kchart/,/^endif(NOT BUILD_kchart/d' \ |
|
|
677 | -e '/^if(BUILD_koreport/,/^endif(BUILD_koreport/d' \ |
|
|
678 | -e 's/set(SHOULD_BUILD_F_OFFICE TRUE)/set(SHOULD_BUILD_F_OFFICE FALSE)/' \ |
|
|
679 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
680 | if [[ ${PN} != koffice-data ]] && [[ ${PV} == 9999 ]]; then |
|
|
681 | sed -e '/config-opengl.h/d' \ |
|
|
682 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
683 | |
|
|
684 | fi |
|
|
685 | ;; |
| 623 | *) ;; |
686 | *) ;; |
| 624 | esac |
687 | esac |
| 625 | esac |
688 | esac |
| 626 | |
689 | |
| 627 | popd > /dev/null |
690 | popd > /dev/null |
| … | |
… | |
| 649 | -DWITH_Boost=OFF |
712 | -DWITH_Boost=OFF |
| 650 | -DWITH_LibTidy=OFF |
713 | -DWITH_LibTidy=OFF |
| 651 | "${mycmakeargs[@]}" |
714 | "${mycmakeargs[@]}" |
| 652 | ) |
715 | ) |
| 653 | ;; |
716 | ;; |
|
|
717 | koffice) |
|
|
718 | case ${PV} in |
|
|
719 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
720 | if [[ ${PN} != "kchart" ]]; then |
|
|
721 | mycmakeargs=( |
|
|
722 | -DBUILD_koreport=OFF |
|
|
723 | "${mycmakeargs[@]}" |
|
|
724 | ) |
|
|
725 | fi |
|
|
726 | ;; |
|
|
727 | esac |
|
|
728 | ;; |
| 654 | esac |
729 | esac |
| 655 | |
730 | |
| 656 | kde4-base_src_configure |
731 | kde4-base_src_configure |
| 657 | } |
732 | } |
| 658 | |
733 | |
| … | |
… | |
| 684 | # @DESCRIPTION: |
759 | # @DESCRIPTION: |
| 685 | # Function for installing KDE4 split applications. |
760 | # Function for installing KDE4 split applications. |
| 686 | kde4-meta_src_install() { |
761 | kde4-meta_src_install() { |
| 687 | debug-print-function $FUNCNAME "$@" |
762 | debug-print-function $FUNCNAME "$@" |
| 688 | |
763 | |
|
|
764 | # Search ${S}/${KMMODULE} and install common documentation files found |
|
|
765 | local doc |
|
|
766 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
767 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
768 | done |
|
|
769 | |
| 689 | kde4-base_src_install |
770 | 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 | } |
771 | } |
| 706 | |
772 | |
| 707 | # @FUNCTION: kde4-meta_pkg_postinst |
773 | # @FUNCTION: kde4-meta_pkg_postinst |
| 708 | # @DESCRIPTION: |
774 | # @DESCRIPTION: |
| 709 | # Invoke kbuildsycoca4. |
775 | # Invoke kbuildsycoca4. |