x11-misc/alock: Take ownership of package
[gentoo.git] / eclass / kde4-base.eclass
1 # Copyright 1999-2015 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: kde4-base.eclass
6 # @MAINTAINER:
7 # kde@gentoo.org
8 # @BLURB: This eclass provides functions for kde 4.X ebuilds
9 # @DESCRIPTION:
10 # The kde4-base.eclass provides support for building KDE4 based ebuilds
11 # and KDE4 applications.
12 #
13 # NOTE: KDE 4 ebuilds currently support EAPI 5. This will be
14 # reviewed over time as new EAPI versions are approved.
15
16 if [[ -z ${_KDE4_BASE_ECLASS} ]]; then
17 _KDE4_BASE_ECLASS=1
18
19 # @ECLASS-VARIABLE: KDE_SELINUX_MODULE
20 # @DESCRIPTION:
21 # If set to "none", do nothing.
22 # For any other value, add selinux to IUSE, and depending on that useflag
23 # add a dependency on sec-policy/selinux-${KDE_SELINUX_MODULE} to (R)DEPEND
24 : ${KDE_SELINUX_MODULE:=none}
25
26 # @ECLASS-VARIABLE: VIRTUALDBUS_TEST
27 # @DESCRIPTION:
28 # If defined, launch and use a private dbus session during src_test.
29
30 # @ECLASS-VARIABLE: VIRTUALX_REQUIRED
31 # @DESCRIPTION:
32 # For proper description see virtualx.eclass manpage.
33 # Here we redefine default value to be manual, if your package needs virtualx
34 # for tests you should proceed with setting VIRTUALX_REQUIRED=test.
35 : ${VIRTUALX_REQUIRED:=manual}
36
37 inherit kde4-functions toolchain-funcs fdo-mime flag-o-matic gnome2-utils virtualx versionator eutils multilib
38
39 if [[ ${KDE_BUILD_TYPE} = live ]]; then
40         case ${KDE_SCM} in
41                 svn) inherit subversion ;;
42                 git) inherit git-r3 ;;
43         esac
44 fi
45
46 # @ECLASS-VARIABLE: CMAKE_REQUIRED
47 # @DESCRIPTION:
48 # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'.
49 # Please note that if it's set to 'never' you need to explicitly override following phases:
50 # src_configure, src_compile, src_test and src_install.
51 # Defaults to 'always'.
52 : ${CMAKE_REQUIRED:=always}
53 if [[ ${CMAKE_REQUIRED} = always ]]; then
54         buildsystem_eclass="cmake-utils"
55         export_fns="src_configure src_compile src_test src_install"
56 fi
57
58 # @ECLASS-VARIABLE: KDE_MINIMAL
59 # @DESCRIPTION:
60 # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal
61 # version for apps to work. Currently defaults to 4.4
62 # One may override this variable to raise version requirements.
63 # Note that it is fixed to ${PV} for kde-base packages.
64 KDE_MINIMAL="${KDE_MINIMAL:-4.4}"
65
66 # Set slot for KDEBASE known packages
67 case ${KDEBASE} in
68         kde-base)
69                 SLOT=4/$(get_version_component_range 1-2)
70                 KDE_MINIMAL="${PV}"
71                 ;;
72         kdevelop)
73                 if [[ ${KDE_BUILD_TYPE} = live ]]; then
74                         # @ECLASS-VARIABLE: KDEVELOP_VERSION
75                         # @DESCRIPTION:
76                         # Specifies KDevelop version. Default is 4.0.0 for tagged packages and 9999 for live packages.
77                         # Applies to KDEBASE=kdevelop only.
78                         KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.9999}"
79                         # @ECLASS-VARIABLE: KDEVPLATFORM_VERSION
80                         # @DESCRIPTION:
81                         # Specifies KDevplatform version. Default is 1.0.0 for tagged packages and 9999 for live packages.
82                         # Applies to KDEBASE=kdevelop only.
83                         KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-4.9999}"
84                 else
85                         case ${PN} in
86                                 kdevelop)
87                                         KDEVELOP_VERSION=${PV}
88                                         KDEVPLATFORM_VERSION="$(($(get_major_version)-3)).$(get_after_major_version)"
89                                         ;;
90                                 kdevplatform|kdevelop-php*|kdevelop-python)
91                                         KDEVELOP_VERSION="$(($(get_major_version)+3)).$(get_after_major_version)"
92                                         KDEVPLATFORM_VERSION=${PV}
93                                         ;;
94                                 *)
95                                         KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.0.0}"
96                                         KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-1.0.0}"
97                         esac
98                 fi
99                 SLOT="4"
100                 ;;
101 esac
102
103 inherit ${buildsystem_eclass}
104
105 EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm
106
107 unset buildsystem_eclass
108 unset export_fns
109
110 # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED
111 # @DESCRIPTION:
112 # Is qtdeclarative required? Possible values are 'always', 'optional' and 'never'.
113 # This variable must be set before inheriting any eclasses. Defaults to 'never'.
114 DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}"
115
116 # @ECLASS-VARIABLE: QTHELP_REQUIRED
117 # @DESCRIPTION:
118 # Is qthelp required? Possible values are 'always', 'optional' and 'never'.
119 # This variable must be set before inheriting any eclasses. Defaults to 'never'.
120 QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}"
121
122 # @ECLASS-VARIABLE: OPENGL_REQUIRED
123 # @DESCRIPTION:
124 # Is qtopengl required? Possible values are 'always', 'optional' and 'never'.
125 # This variable must be set before inheriting any eclasses. Defaults to 'never'.
126 OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}"
127
128 # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED
129 # @DESCRIPTION:
130 # Is qtmultimedia required? Possible values are 'always', 'optional' and 'never'.
131 # This variable must be set before inheriting any eclasses. Defaults to 'never'.
132 MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}"
133
134 # @ECLASS-VARIABLE: CPPUNIT_REQUIRED
135 # @DESCRIPTION:
136 # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'.
137 # This variable must be set before inheriting any eclasses. Defaults to 'never'.
138 CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}"
139
140 # @ECLASS-VARIABLE: KDE_REQUIRED
141 # @DESCRIPTION:
142 # Is kde required? Possible values are 'always', 'optional' and 'never'.
143 # This variable must be set before inheriting any eclasses. Defaults to 'always'
144 # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well.
145 # Note that for kde-base packages this variable is fixed to 'always'.
146 KDE_REQUIRED="${KDE_REQUIRED:-always}"
147
148 # @ECLASS-VARIABLE: KDE_HANDBOOK
149 # @DESCRIPTION:
150 # Set to enable handbook in application. Possible values are 'always', 'optional'
151 # (handbook USE flag) and 'never'.
152 # This variable must be set before inheriting any eclasses. Defaults to 'never'.
153 # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it
154 # ensures buildtime and runtime dependencies.
155 KDE_HANDBOOK="${KDE_HANDBOOK:-never}"
156
157 # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE
158 # @DESCRIPTION:
159 # Set this varible if you want your live package to manage its
160 # translations. (Mostly all kde ebuilds does not ship documentation
161 # and translations in live ebuilds)
162 if [[ ${KDE_BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then
163         # Kdebase actualy provides the handbooks even for live stuff
164         [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never
165         KDE_LINGUAS=""
166 fi
167
168 # Setup packages inheriting this eclass
169 case ${KDEBASE} in
170         kde-base)
171                 HOMEPAGE="https://www.kde.org/"
172                 LICENSE="GPL-2"
173                 if [[ ${KDE_BUILD_TYPE} = live && -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then
174                         # Disable tests for live ebuilds by default
175                         RESTRICT+=" test"
176                 fi
177
178                 # This code is to prevent portage from searching GENTOO_MIRRORS for
179                 # packages that will never be mirrored. (As they only will ever be in
180                 # the overlay).
181                 case ${PV} in
182                         *9999* | 4.?.[6-9]? | 4.??.[6-9]? | ??.?.[6-9]? | ??.??.[6-9]?)
183                                 RESTRICT+=" mirror"
184                                 ;;
185                 esac
186                 ;;
187         kdevelop)
188                 HOMEPAGE="https://www.kdevelop.org/"
189                 LICENSE="GPL-2"
190                 ;;
191 esac
192
193 # @ECLASS-VARIABLE: QT_MINIMAL
194 # @DESCRIPTION:
195 # Determine version of qt we enforce as minimal for the package.
196 QT_MINIMAL="${QT_MINIMAL:-4.8.5}"
197
198 # Declarative dependencies
199 qtdeclarativedepend="
200         >=dev-qt/qtdeclarative-${QT_MINIMAL}:4
201 "
202 case ${DECLARATIVE_REQUIRED} in
203         always)
204                 COMMONDEPEND+=" ${qtdeclarativedepend}"
205                 ;;
206         optional)
207                 IUSE+=" declarative"
208                 COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )"
209                 ;;
210         *) ;;
211 esac
212 unset qtdeclarativedepend
213
214 # QtHelp dependencies
215 qthelpdepend="
216         >=dev-qt/qthelp-${QT_MINIMAL}:4
217 "
218 case ${QTHELP_REQUIRED} in
219         always)
220                 COMMONDEPEND+=" ${qthelpdepend}"
221                 ;;
222         optional)
223                 IUSE+=" qthelp"
224                 COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )"
225                 ;;
226 esac
227 unset qthelpdepend
228
229 # OpenGL dependencies
230 qtopengldepend="
231         >=dev-qt/qtopengl-${QT_MINIMAL}:4
232 "
233 case ${OPENGL_REQUIRED} in
234         always)
235                 COMMONDEPEND+=" ${qtopengldepend}"
236                 ;;
237         optional)
238                 IUSE+=" opengl"
239                 COMMONDEPEND+=" opengl? ( ${qtopengldepend} )"
240                 ;;
241         *) ;;
242 esac
243 unset qtopengldepend
244
245 # MultiMedia dependencies
246 qtmultimediadepend="
247         >=dev-qt/qtmultimedia-${QT_MINIMAL}:4
248 "
249 case ${MULTIMEDIA_REQUIRED} in
250         always)
251                 COMMONDEPEND+=" ${qtmultimediadepend}"
252                 ;;
253         optional)
254                 IUSE+=" multimedia"
255                 COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )"
256                 ;;
257         *) ;;
258 esac
259 unset qtmultimediadepend
260
261 # CppUnit dependencies
262 cppuintdepend="
263         dev-util/cppunit
264 "
265 case ${CPPUNIT_REQUIRED} in
266         always)
267                 DEPEND+=" ${cppuintdepend}"
268                 ;;
269         optional)
270                 IUSE+=" test"
271                 DEPEND+=" test? ( ${cppuintdepend} )"
272                 ;;
273         *) ;;
274 esac
275 unset cppuintdepend
276
277 # KDE dependencies
278 # Qt accessibility classes are needed in various places, bug 325461
279 kdecommondepend="
280         dev-lang/perl
281         >=dev-qt/qt3support-${QT_MINIMAL}:4[accessibility]
282         >=dev-qt/qtcore-${QT_MINIMAL}:4[qt3support,ssl]
283         >=dev-qt/qtdbus-${QT_MINIMAL}:4
284         >=dev-qt/designer-${QT_MINIMAL}:4
285         >=dev-qt/qtgui-${QT_MINIMAL}:4[accessibility,dbus(+)]
286         >=dev-qt/qtscript-${QT_MINIMAL}:4
287         >=dev-qt/qtsql-${QT_MINIMAL}:4[qt3support]
288         >=dev-qt/qtsvg-${QT_MINIMAL}:4
289         >=dev-qt/qttest-${QT_MINIMAL}:4
290         >=dev-qt/qtwebkit-${QT_MINIMAL}:4
291 "
292
293 if [[ ${PN} != kdelibs ]]; then
294         kdecommondepend+=" $(add_kdebase_dep kdelibs)"
295         if [[ ${KDEBASE} = kdevelop ]]; then
296                 if [[ ${PN} != kdevplatform ]]; then
297                         # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED
298                         # @DESCRIPTION:
299                         # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'.
300                         # Applies to KDEBASE=kdevelop only.
301                         KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}"
302                         case ${KDEVPLATFORM_REQUIRED} in
303                                 always)
304                                         kdecommondepend+="
305                                                 >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION}:4
306                                         "
307                                         ;;
308                                 *) ;;
309                         esac
310                 fi
311         fi
312 fi
313
314 kdedepend="
315         dev-util/automoc
316         virtual/pkgconfig
317         !aqua? (
318                 >=x11-libs/libXtst-1.1.0
319                 x11-proto/xf86vidmodeproto
320         )
321 "
322
323 kderdepend=""
324
325 if [[ ${CATEGORY} == kde-apps ]]; then
326         kderdepend+=" !kde-base/${PN}:4"
327 fi
328
329 # all packages needs oxygen icons for basic iconset
330 if [[ ${PN} != oxygen-icons ]]; then
331         kderdepend+=" kde-frameworks/oxygen-icons"
332 fi
333
334 # add a dependency over kde4-l10n
335 if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} ]]; then
336         for _lingua in ${KDE_LINGUAS}; do
337                 # if our package has linguas, pull in kde4-l10n with selected lingua enabled,
338                 # but only for selected ones.
339                 # this can't be done on one line because if user doesn't use any localisation
340                 # then he is probably not interested in kde4-l10n at all.
341                 kderdepend+="
342                 linguas_${_lingua}? ( $(add_kdeapps_dep kde4-l10n "linguas_${_lingua}(+)") )
343                 "
344         done
345         unset _lingua
346 fi
347
348 kdehandbookdepend="
349         app-text/docbook-xml-dtd:4.2
350         app-text/docbook-xsl-stylesheets
351 "
352 kdehandbookrdepend="
353         $(add_kdebase_dep kdelibs 'handbook')
354 "
355 case ${KDE_HANDBOOK} in
356         always)
357                 kdedepend+=" ${kdehandbookdepend}"
358                 [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}"
359                 ;;
360         optional)
361                 IUSE+=" +handbook"
362                 kdedepend+=" handbook? ( ${kdehandbookdepend} )"
363                 [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )"
364                 ;;
365         *) ;;
366 esac
367 unset kdehandbookdepend kdehandbookrdepend
368
369 case ${KDE_SELINUX_MODULE} in
370         none)   ;;
371         *)
372                 IUSE+=" selinux"
373                 kderdepend+=" selinux? ( sec-policy/selinux-${KDE_SELINUX_MODULE} )"
374                 ;;
375 esac
376
377 # We always need the aqua useflag because otherwise we cannot = refer to it inside
378 # add_kdebase_dep. This was always kind of a bug, but came to light with EAPI=5
379 # (where referring to a use flag not in IUSE masks the ebuild).
380 # The only alternative would be to prohibit using add_kdebase_dep if KDE_REQUIRED=never
381 IUSE+=" aqua"
382
383 case ${KDE_REQUIRED} in
384         always)
385                 [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}"
386                 [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}"
387                 [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}"
388                 ;;
389         optional)
390                 IUSE+=" kde"
391                 [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )"
392                 [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )"
393                 [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )"
394                 ;;
395         *) ;;
396 esac
397
398 unset kdecommondepend kdedepend kderdepend
399
400 debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}"
401 debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}"
402 debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}"
403
404 # Accumulate dependencies set by this eclass
405 DEPEND+=" ${COMMONDEPEND}"
406 RDEPEND+=" ${COMMONDEPEND}"
407 unset COMMONDEPEND
408
409 # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a
410 # kdevelop ebuild, the URI should be set in the ebuild itself
411 _calculate_src_uri() {
412         debug-print-function ${FUNCNAME} "$@"
413
414         local _kmname _kmname_pv
415
416         # we calculate URI only for known KDEBASE modules
417         [[ -n ${KDEBASE} ]] || return
418
419         # calculate tarball module name
420         if [[ -n ${KMNAME} ]]; then
421                 _kmname="${KMNAME}"
422         else
423                 _kmname=${PN}
424         fi
425         _kmname_pv="${_kmname}-${PV}"
426         case ${KDEBASE} in
427                 kde-base)
428                         case ${PV} in
429                                 4.4.11.1)
430                                         # KDEPIM 4.4, special case
431                                         # TODO: Remove this part when KDEPIM 4.4 gets out of the tree
432                                         SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" ;;
433                                 4.4.20*)
434                                         # KDEPIM 4.4 no-akonadi branch, special case
435                                         # TODO: Remove this part when KDEPIM 4.4 gets out of the tree
436                                         SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${_kmname_pv}.tar.xz" ;;
437                                 4.?.[6-9]? | 4.??.[6-9]?)
438                                         # Unstable KDE SC releases
439                                         SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.xz" ;;
440                                 4.11.19)
441                                         # Part of 15.04.1 actually, sigh. Not stable for next release!
442                                         SRC_URI="mirror://kde/stable/applications/15.04.1/src/${_kmname_pv}.tar.xz" ;;
443                                 4.11.22)
444                                         # Part of 15.08.0 actually, sigh. Not stable for next release!
445                                         SRC_URI="mirror://kde/stable/applications/15.08.0/src/${_kmname_pv}.tar.xz" ;;
446                                 4.14.3)
447                                         # Last SC release
448                                         SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.xz" ;;
449                                 4.14.8)
450                                         # Part of 15.04.1 actually, sigh. Not stable for next release!
451                                         SRC_URI="mirror://kde/stable/applications/15.04.1/src/${_kmname_pv}.tar.xz" ;;
452                                 4.14.10)
453                                         # Part of 15.04.3 actually, sigh. Not stable for next release!
454                                         SRC_URI="mirror://kde/stable/applications/15.04.3/src/${_kmname_pv}.tar.xz" ;;
455                                 4.14.13)
456                                         # Part of 15.08.2 actually, sigh. Not stable for next release!
457                                         SRC_URI="mirror://kde/stable/applications/15.08.2/src/${_kmname_pv}.tar.xz" ;;
458                                 4.14.14)
459                                         # Part of 15.08.3 actually, sigh. Not stable for next release!
460                                         SRC_URI="mirror://kde/stable/applications/15.08.3/src/${_kmname_pv}.tar.xz" ;;
461                                 4.14.15)
462                                         # Part of 15.12.0 actually, sigh. Not stable for next release!
463                                         SRC_URI="mirror://kde/stable/applications/15.12.0/src/${_kmname_pv}.tar.xz" ;;
464                                 ??.?.[6-9]? | ??.??.[4-9]?)
465                                         # Unstable KDE Applications releases
466                                         SRC_URI="mirror://kde/unstable/applications/${PV}/src/${_kmname}-${PV}.tar.xz" ;;
467                                 *)
468                                         # Stable KDE Applications releases
469                                         SRC_URI="mirror://kde/stable/applications/${PV}/src/${_kmname}-${PV}.tar.xz"
470                                 ;;
471                         esac
472                         ;;
473                 kdevelop|kdevelop-php*|kdevplatform)
474                         case ${KDEVELOP_VERSION} in
475                                 4.[123].[6-9]*) SRC_URI="mirror://kde/unstable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.xz" ;;
476                                 *) SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.xz" ;;
477                         esac
478                         ;;
479         esac
480 }
481
482 _calculate_live_repo() {
483         debug-print-function ${FUNCNAME} "$@"
484
485         SRC_URI=""
486         case ${KDE_SCM} in
487                 svn)
488                         # Determine branch URL based on live type
489                         local branch_prefix
490                         case ${PV} in
491                                 9999*)
492                                         # trunk
493                                         branch_prefix="trunk/KDE"
494                                         ;;
495                                 *)
496                                         # branch
497                                         branch_prefix="branches/KDE/$(get_kde_version)"
498
499                                         if [[ ${PV} == ??.??.49.9999 && ${CATEGORY} = kde-apps ]]; then
500                                                 branch_prefix="branches/Applications/$(get_kde_version)"
501                                         fi
502
503                                         # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX
504                                         # @DESCRIPTION
505                                         # Suffix appended to ESVN_PROJECT depending on fetched branch.
506                                         # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise.
507                                         ESVN_PROJECT_SUFFIX="-${PV}"
508                                         ;;
509                         esac
510                         # @ECLASS-VARIABLE: ESVN_MIRROR
511                         # @DESCRIPTION:
512                         # This variable allows easy overriding of default kde mirror service
513                         # (anonsvn) with anything else you might want to use.
514                         ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde}
515                         # Split ebuild, or extragear stuff
516                         if [[ -n ${KMNAME} ]]; then
517                                 ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}"
518                                 if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then
519                                         KMMODULE="${PN}"
520                                 fi
521                                 # Split kde-base/ ebuilds: (they reside in trunk/KDE)
522                                 case ${KMNAME} in
523                                         kdebase-*)
524                                                 ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}"
525                                                 ;;
526                                         kdelibs-*)
527                                                 ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}"
528                                                 ;;
529                                         kdereview*)
530                                                 ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}"
531                                                 ;;
532                                         kdesupport)
533                                                 ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}"
534                                                 ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}"
535                                                 ;;
536                                         kde*)
537                                                 ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}"
538                                                 ;;
539                                         extragear*|playground*)
540                                                 # Unpack them in toplevel dir, so that they won't conflict with kde4-meta
541                                                 # build packages from same svn location.
542                                                 ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}"
543                                                 ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}"
544                                                 ;;
545                                         *)
546                                                 ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}"
547                                                 ;;
548                                 esac
549                         else
550                                 # kdelibs, kdepimlibs
551                                 ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}"
552                                 ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}"
553                         fi
554                         # @ECLASS-VARIABLE: ESVN_UP_FREQ
555                         # @DESCRIPTION:
556                         # This variable is used for specifying the timeout between svn synces
557                         # for kde-base modules. Does not affect misc apps.
558                         # Default value is 1 hour.
559                         [[ ${KDEBASE} = kde-base ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1}
560                         ;;
561                 git)
562                         local _kmname
563                         # @ECLASS-VARIABLE: EGIT_MIRROR
564                         # @DESCRIPTION:
565                         # This variable allows easy overriding of default kde mirror service
566                         # (anongit) with anything else you might want to use.
567                         EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org}
568
569                         # @ECLASS-VARIABLE: EGIT_REPONAME
570                         # @DESCRIPTION:
571                         # This variable allows overriding of default repository
572                         # name. Specify only if this differ from PN and KMNAME.
573                         if [[ -n ${EGIT_REPONAME} ]]; then
574                                 # the repository and kmname different
575                                 _kmname=${EGIT_REPONAME}
576                         elif [[ -n ${KMNAME} ]]; then
577                                 _kmname=${KMNAME}
578                         else
579                                 _kmname=${PN}
580                         fi
581
582                         # default branching
583                         [[ ${PV} != 4.9999* && ${PV} != 9999 && ${KDEBASE} == kde-base ]] && \
584                                 EGIT_BRANCH="KDE/$(get_kde_version)"
585
586                         # Applications branching
587                         [[ ${PV} == ??.??.49.9999 && ${KDEBASE} == kde-base ]] && \
588                                 EGIT_BRANCH="Applications/$(get_kde_version)"
589
590                         # default repo uri
591                         EGIT_REPO_URI+=( "${EGIT_MIRROR}/${_kmname}" )
592
593                         debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}"
594                         debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}"
595                         ;;
596         esac
597 }
598
599 case ${KDE_BUILD_TYPE} in
600         live) _calculate_live_repo ;;
601         *) _calculate_src_uri ;;
602 esac
603
604 debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}"
605
606 # @ECLASS-VARIABLE: PREFIX
607 # @DESCRIPTION:
608 # Set the installation PREFIX for non kde-base applications. It defaults to /usr.
609 # kde-base packages go into KDE4 installation directory (/usr).
610 # No matter the PREFIX, package will be built against KDE installed in /usr.
611
612 # @FUNCTION: kde4-base_pkg_setup
613 # @DESCRIPTION:
614 # Do some basic settings
615 kde4-base_pkg_setup() {
616         debug-print-function ${FUNCNAME} "$@"
617
618         if has handbook ${IUSE} || has "+handbook" ${IUSE} && [ "${KDE_HANDBOOK}" != optional ] ; then
619                 eqawarn "Handbook support is enabled via KDE_HANDBOOK=optional in the ebuild."
620                 eqawarn "Please do not just set IUSE=handbook, as this leads to dependency errors."
621         fi
622
623         # Don't set KDEHOME during compilation, it will cause access violations
624         unset KDEHOME
625
626         # Check if gcc compiler is fresh enough.
627         # In theory should be in pkg_pretend but we check it only for kdelibs there
628         # and for others we do just quick scan in pkg_setup because pkg_pretend
629         # executions consume quite some time (ie. when merging 300 packages at once will cause 300 checks)
630         if [[ ${MERGE_TYPE} != binary ]]; then
631                 [[ $(gcc-major-version) -lt 4 ]] || \
632                                 ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 6 ]] ) \
633                         && die "Sorry, but gcc-4.6 and earlier wont work for some KDE packages."
634         fi
635
636         KDEDIR=/usr
637         : ${PREFIX:=/usr}
638         EKDEDIR=${EPREFIX}/usr
639
640         # Point to correct QT plugins path
641         QT_PLUGIN_PATH="${EPREFIX}/usr/$(get_libdir)/kde4/plugins/"
642
643         # Fix XDG collision with sandbox
644         export XDG_CONFIG_HOME="${T}"
645 }
646
647 # @FUNCTION: kde4-base_src_unpack
648 # @DESCRIPTION:
649 # This function unpacks the source tarballs for KDE4 applications.
650 kde4-base_src_unpack() {
651         debug-print-function ${FUNCNAME} "$@"
652
653         if [[ ${KDE_BUILD_TYPE} = live ]]; then
654                 case ${KDE_SCM} in
655                         svn)
656                                 subversion_src_unpack
657                                 ;;
658                         git)
659                                 git-r3_src_unpack
660                                 ;;
661                 esac
662         else
663                 unpack ${A}
664         fi
665 }
666
667 # @FUNCTION: kde4-base_src_prepare
668 # @DESCRIPTION:
669 # General pre-configure and pre-compile function for KDE4 applications.
670 # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and
671 # enable_selected_linguas() and enable_selected_doc_linguas()
672 # in kde4-functions.eclass(5) for further details.
673 kde4-base_src_prepare() {
674         debug-print-function ${FUNCNAME} "$@"
675
676         # enable handbook and linguas only when not using live ebuild
677
678         # Only enable selected languages, used for KDE extragear apps.
679         if [[ -n ${KDE_LINGUAS} ]]; then
680                 enable_selected_linguas
681         fi
682
683         # Enable/disable handbooks for kde4-base packages
684         # kde4-l10n inherits kde4-base but is metapackage, so no check for doc
685         # kdelibs inherits kde4-base but handle installing the handbook itself
686         if ! has kde4-meta ${INHERITED} && in_iuse handbook; then
687                 if [[ ${KDEBASE} == kde-base ]]; then
688                         if [[ ${PN} != kde4-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then
689                                 # documentation in kde4-functions
690                                 : ${KDE_DOC_DIRS:=doc}
691                                 local dir
692                                 for dir in ${KDE_DOC_DIRS}; do
693                                         sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \
694                                                 -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \
695                                                 -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \
696                                                 -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \
697                                                 -i CMakeLists.txt || die "failed to comment out handbook"
698                                 done
699                         fi
700                 else
701                         enable_selected_doc_linguas
702                 fi
703         fi
704
705         # SCM bootstrap
706         if [[ ${KDE_BUILD_TYPE} = live ]]; then
707                 case ${KDE_SCM} in
708                         svn) subversion_src_prepare ;;
709                 esac
710         fi
711
712         # Apply patches, cmake-utils does the job already
713         cmake-utils_src_prepare
714
715         # Save library dependencies
716         if [[ -n ${KMSAVELIBS} ]] ; then
717                 save_library_dependencies
718         fi
719
720         # Inject library dependencies
721         if [[ -n ${KMLOADLIBS} ]] ; then
722                 load_library_dependencies
723         fi
724
725         # Hack for manuals relying on outdated DTD, only outside kde-base/...
726         if [[ -z ${KDEBASE} ]]; then
727                 find "${S}" -name "*.docbook" \
728                         -exec sed -i -r \
729                                 -e 's:-//KDE//DTD DocBook XML V4\.1(\..)?-Based Variant V1\.[01]//EN:-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN:g' {} + \
730                         || die 'failed to fix DocBook variant version'
731         fi
732 }
733
734 # @FUNCTION: kde4-base_src_configure
735 # @DESCRIPTION:
736 # Function for configuring the build of KDE4 applications.
737 kde4-base_src_configure() {
738         debug-print-function ${FUNCNAME} "$@"
739
740         # Build tests in src_test only, where we override this value
741         local cmakeargs=(-DKDE4_BUILD_TESTS=OFF)
742
743         if use_if_iuse debug; then
744                 # Set "real" debug mode
745                 CMAKE_KDE_BUILD_TYPE="Debugfull"
746         else
747                 # Handle common release builds
748                 append-cppflags -DQT_NO_DEBUG
749         fi
750
751         # Set distribution name
752         [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo)
753
754         # Here we set the install prefix
755         tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}")
756
757         # Use colors
758         QTEST_COLORED=1
759
760         # Shadow existing installations
761         unset KDEDIRS
762
763         #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling
764         tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/$(get_libdir)/qt4)
765         #kde-config -path data unavailable when cross-compiling
766         tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/)
767
768         # sysconf needs to be /etc, not /usr/etc
769         cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc)
770
771         if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then
772                 if [[ ${mycmakeargs} ]]; then
773                         eqawarn "mycmakeargs should always be declared as an array, not a string"
774                 fi
775                 mycmakeargs=(${mycmakeargs})
776         fi
777
778         mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}")
779
780         cmake-utils_src_configure
781 }
782
783 # @FUNCTION: kde4-base_src_compile
784 # @DESCRIPTION:
785 # General function for compiling KDE4 applications.
786 kde4-base_src_compile() {
787         debug-print-function ${FUNCNAME} "$@"
788
789         cmake-utils_src_compile "$@"
790 }
791
792 # @FUNCTION: kde4-base_src_test
793 # @DESCRIPTION:
794 # Function for testing KDE4 applications.
795 kde4-base_src_test() {
796         debug-print-function ${FUNCNAME} "$@"
797
798         local kded4_pid
799
800         _test_runner() {
801                 if [[ -n "${VIRTUALDBUS_TEST}" ]]; then
802                         export $(dbus-launch)
803                         kded4 2>&1 > /dev/null &
804                         kded4_pid=$!
805                 fi
806
807                 cmake-utils_src_test
808         }
809
810         # When run as normal user during ebuild development with the ebuild command, the
811         # kde tests tend to access the session DBUS. This however is not possible in a real
812         # emerge or on the tinderbox.
813         # > make sure it does not happen, so bad tests can be recognized and disabled
814         unset DBUS_SESSION_BUS_ADDRESS DBUS_SESSION_BUS_PID
815
816         # Override this value, set in kde4-base_src_configure()
817         mycmakeargs+=(-DKDE4_BUILD_TESTS=ON)
818         cmake-utils_src_configure
819         kde4-base_src_compile
820
821         if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then
822                 # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default
823                 if [[ ${VIRTUALX_COMMAND} != emake ]]; then
824                         # surprise- we are already INSIDE virtualmake!!!
825                         debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality."
826                         debug-print "           You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild."
827                         debug-print "           Setting VIRTUALX_REQUIRED is completely sufficient. See the"
828                         debug-print "           kde4-base.eclass docs for details... Applying workaround."
829                         _test_runner
830                 else
831                         VIRTUALX_COMMAND="_test_runner" virtualmake
832                 fi
833         else
834                 _test_runner
835         fi
836
837         if [ -n "${kded4_pid}" ] ; then
838                 kill ${kded4_pid}
839         fi
840
841         if [ -n "${DBUS_SESSION_BUS_PID}" ] ; then
842                 kill ${DBUS_SESSION_BUS_PID}
843         fi
844 }
845
846 # @FUNCTION: kde4-base_src_install
847 # @DESCRIPTION:
848 # Function for installing KDE4 applications.
849 kde4-base_src_install() {
850         debug-print-function ${FUNCNAME} "$@"
851
852         if [[ -n ${KMSAVELIBS} ]] ; then
853                 install_library_dependencies
854         fi
855
856         # Install common documentation of KDE4 applications
857         local doc
858         if ! has kde4-meta ${INHERITED}; then
859                 for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do
860                         [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}"
861                 done
862                 for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do
863                         [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})"
864                 done
865         fi
866
867         cmake-utils_src_install
868
869         # We don't want ${PREFIX}/share/doc/HTML to be compressed,
870         # because then khelpcenter can't find the docs
871         [[ -d ${ED}/${PREFIX}/share/doc/HTML ]] &&
872                 docompress -x ${PREFIX}/share/doc/HTML
873 }
874
875 # @FUNCTION: kde4-base_pkg_preinst
876 # @DESCRIPTION:
877 # Function storing icon caches
878 kde4-base_pkg_preinst() {
879         debug-print-function ${FUNCNAME} "$@"
880
881         gnome2_icon_savelist
882         if [[ ${KDE_BUILD_TYPE} == live && ${KDE_SCM} == svn ]]; then
883                 subversion_pkg_preinst
884         fi
885 }
886
887 # @FUNCTION: kde4-base_pkg_postinst
888 # @DESCRIPTION:
889 # Function to rebuild the KDE System Configuration Cache after an application has been installed.
890 kde4-base_pkg_postinst() {
891         debug-print-function ${FUNCNAME} "$@"
892
893         gnome2_icon_cache_update
894         fdo-mime_desktop_database_update
895         fdo-mime_mime_database_update
896         buildsycoca
897
898         if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then
899                 if [[ ${KDE_BUILD_TYPE} = live ]]; then
900                         echo
901                         einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}"
902                         einfo "Use it at your own risk."
903                         einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
904                         echo
905                 fi
906                 # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta
907                 if [[ ${KDEBASE} != kde-base ]] && \
908                                 ! has_version 'kde-apps/kdebase-runtime-meta'; then
909                         if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then
910                                 echo
911                                 ewarn "WARNING! Your system configuration does not contain \"kde-apps/kdebase-runtime-meta\"."
912                                 ewarn "With this setting you are unsupported by KDE team."
913                                 ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID."
914                         fi
915                 fi
916         fi
917 }
918
919 # @FUNCTION: kde4-base_pkg_postrm
920 # @DESCRIPTION:
921 # Function to rebuild the KDE System Configuration Cache after an application has been removed.
922 kde4-base_pkg_postrm() {
923         debug-print-function ${FUNCNAME} "$@"
924
925         gnome2_icon_cache_update
926         fdo-mime_desktop_database_update
927         fdo-mime_mime_database_update
928         buildsycoca
929 }
930
931 fi