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