| 1 | # Copyright 1999-2010 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-base.eclass,v 1.79 2010/12/06 10:17:04 tampakrap Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.105 2011/07/27 09:30:46 alexxy Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: kde4-base.eclass |
5 | # @ECLASS: kde4-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The kde4-base.eclass provides support for building KDE4 based ebuilds |
10 | # The kde4-base.eclass provides support for building KDE4 based ebuilds |
| 11 | # and KDE4 applications. |
11 | # and KDE4 applications. |
| 12 | # |
12 | # |
| 13 | # NOTE: KDE 4 ebuilds by default define EAPI="2", this can be redefined but |
13 | # NOTE: KDE 4 ebuilds currently support EAPI "3". This will be reviewed |
| 14 | # eclass will fail with version older than 2. |
14 | # over time as new EAPI versions are approved. |
| 15 | |
15 | |
| 16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
| 17 | # @DESCRIPTION: |
17 | # @DESCRIPTION: |
| 18 | # Do we need an X server? Valid values are "always", "optional", and "manual". |
18 | # For proper description see virtualx.eclass manpage. |
| 19 | # "tests" is a synonym for "optional". While virtualx.eclass supports in principle |
19 | # Here we redefine default value to be manual, if your package needs virtualx |
| 20 | # also the use of an X server during other ebuild phases, we only use it in |
20 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
| 21 | # src_test here. Most likely you'll want to set "optional", which introduces the |
|
|
| 22 | # use-flag "test" (if not already present), adds dependencies conditional on that |
|
|
| 23 | # use-flag, and automatically runs (only) the ebuild test phase with a virtual X server |
|
|
| 24 | # present. This makes things a lot more comfortable than the bare virtualx eclass. |
|
|
| 25 | |
|
|
| 26 | # In case the variable is not set in the ebuild, let virtualx eclass not do anything |
|
|
| 27 | : ${VIRTUALX_REQUIRED:=manual} |
21 | : ${VIRTUALX_REQUIRED:=manual} |
| 28 | |
22 | |
| 29 | inherit kde4-functions base virtualx eutils |
23 | inherit kde4-functions toolchain-funcs fdo-mime gnome2-utils base virtualx versionator eutils |
| 30 | |
24 | |
| 31 | get_build_type |
|
|
| 32 | if [[ ${BUILD_TYPE} = live ]]; then |
25 | if [[ ${BUILD_TYPE} = live ]]; then |
| 33 | if [[ ${KDEBASE} = kdevelop ]]; then |
26 | case ${KDE_SCM} in |
| 34 | inherit git |
|
|
| 35 | else |
|
|
| 36 | inherit subversion |
27 | svn) inherit subversion ;; |
| 37 | fi |
28 | git) inherit git-2 ;; |
|
|
29 | esac |
| 38 | fi |
30 | fi |
| 39 | |
31 | |
| 40 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
32 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 41 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 42 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
34 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
| … | |
… | |
| 47 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
39 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
| 48 | buildsystem_eclass="cmake-utils" |
40 | buildsystem_eclass="cmake-utils" |
| 49 | export_fns="src_configure src_compile src_test src_install" |
41 | export_fns="src_configure src_compile src_test src_install" |
| 50 | fi |
42 | fi |
| 51 | |
43 | |
| 52 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
|
|
| 53 | if [[ -n ${KDE_MINIMAL} ]]; then |
|
|
| 54 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
| 55 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
|
|
| 56 | done |
|
|
| 57 | unset slot |
|
|
| 58 | [[ -z ${KDE_MINIMAL_VALID} ]] && unset KDE_MINIMAL |
|
|
| 59 | else |
|
|
| 60 | KDE_MINIMAL_VALID=1 |
|
|
| 61 | fi |
|
|
| 62 | |
|
|
| 63 | # @ECLASS-VARIABLE: KDE_MINIMAL |
44 | # @ECLASS-VARIABLE: KDE_MINIMAL |
| 64 | # @DESCRIPTION: |
45 | # @DESCRIPTION: |
| 65 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
46 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
| 66 | # version for apps to work. Currently defaults to 4.4 |
47 | # version for apps to work. Currently defaults to 4.4 |
| 67 | # One may override this variable to raise version requirements. |
48 | # One may override this variable to raise version requirements. |
| 68 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
|
|
| 69 | # Note that it is fixed to ${SLOT} for kde-base packages. |
49 | # Note that it is fixed to ${PV} for kde-base packages. |
| 70 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
50 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
| 71 | |
51 | |
| 72 | # Set slot for packages in kde-base, koffice and kdevelop |
52 | # Set slot for KDEBASE known packages |
| 73 | case ${KDEBASE} in |
53 | case ${KDEBASE} in |
| 74 | kde-base) |
54 | kde-base) |
| 75 | # Determine SLOT from PVs |
55 | SLOT=4 |
| 76 | case ${PV} in |
|
|
| 77 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
|
|
| 78 | 4.6* | 4.5.[6-9][0-9]*) SLOT="4.6" ;; |
|
|
| 79 | 4.5* | 4.4.[6-9][0-9]*) SLOT="4.5" ;; |
|
|
| 80 | 4.4* | 4.3.[6-9][0-9]*) SLOT="4.4" ;; |
|
|
| 81 | 9999*) SLOT="live" ;; # regular live |
|
|
| 82 | *) die "Unsupported ${PV}" ;; |
|
|
| 83 | esac |
|
|
| 84 | KDE_MINIMAL="${SLOT}" |
56 | KDE_MINIMAL="${PV}" |
| 85 | ;; |
57 | ;; |
| 86 | koffice) |
58 | koffice) |
| 87 | SLOT="2" |
59 | SLOT="2" |
| 88 | ;; |
60 | ;; |
| 89 | kdevelop) |
61 | kdevelop) |
| … | |
… | |
| 115 | fi |
87 | fi |
| 116 | SLOT="4" |
88 | SLOT="4" |
| 117 | ;; |
89 | ;; |
| 118 | esac |
90 | esac |
| 119 | |
91 | |
| 120 | slot_is_at_least 4.5 ${KDE_MINIMAL} && CMAKE_MIN_VERSION="2.8.1" |
|
|
| 121 | |
|
|
| 122 | inherit ${buildsystem_eclass} |
92 | inherit ${buildsystem_eclass} |
| 123 | |
93 | |
| 124 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
94 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm |
| 125 | |
95 | |
| 126 | unset buildsystem_eclass |
96 | unset buildsystem_eclass |
| 127 | unset export_fns |
97 | unset export_fns |
| 128 | |
98 | |
| 129 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
99 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
| … | |
… | |
| 147 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
117 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
| 148 | # @DESCRIPTION: |
118 | # @DESCRIPTION: |
| 149 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
119 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
| 150 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
120 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 151 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
121 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
| 152 | |
|
|
| 153 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
| 154 | # @DESCRIPTION: |
|
|
| 155 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
| 156 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
| 157 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
| 158 | |
122 | |
| 159 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
123 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 160 | # @DESCRIPTION: |
124 | # @DESCRIPTION: |
| 161 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
125 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
| 162 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
126 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| … | |
… | |
| 176 | # (handbook USE flag) and 'never'. |
140 | # (handbook USE flag) and 'never'. |
| 177 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
141 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 178 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
142 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
| 179 | # ensures buildtime and runtime dependencies. |
143 | # ensures buildtime and runtime dependencies. |
| 180 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
144 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
145 | |
|
|
146 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
147 | # @DESCRIPTION: |
|
|
148 | # Set this varible if you want your live package to manage its |
|
|
149 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
150 | # and translations in live ebuilds) |
|
|
151 | if [[ ${BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
152 | # Kdebase actualy provides the handbooks even for live stuff |
|
|
153 | [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never |
|
|
154 | KDE_LINGUAS="" |
|
|
155 | fi |
| 181 | |
156 | |
| 182 | # Setup packages inheriting this eclass |
157 | # Setup packages inheriting this eclass |
| 183 | case ${KDEBASE} in |
158 | case ${KDEBASE} in |
| 184 | kde-base) |
159 | kde-base) |
| 185 | HOMEPAGE="http://www.kde.org/" |
160 | HOMEPAGE="http://www.kde.org/" |
| 186 | LICENSE="GPL-2" |
161 | LICENSE="GPL-2" |
| 187 | if [[ $BUILD_TYPE = live ]]; then |
162 | if [[ $BUILD_TYPE = live ]]; then |
| 188 | # Disable tests for live ebuilds |
163 | # Disable tests for live ebuilds |
| 189 | RESTRICT+=" test" |
164 | RESTRICT+=" test" |
| 190 | # Live ebuilds in kde-base default to kdeprefix by default |
165 | fi |
| 191 | IUSE+=" +kdeprefix" |
166 | |
| 192 | else |
167 | # Only add the kdeprefix USE flag for older versions, to help |
| 193 | # All other ebuild types default to -kdeprefix as before |
168 | # non-portage package managers handle the upgrade |
|
|
169 | if [[ ${PV} < 4.6.4 && ( ( ${KMNAME} != kdepim && ${PN} != kdepim-runtime ) || ${PV} < 4.6 ) ]]; then |
| 194 | IUSE+=" kdeprefix" |
170 | IUSE+=" kdeprefix" |
| 195 | fi |
171 | fi |
|
|
172 | |
| 196 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
173 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
| 197 | # packages that will never be mirrored. (As they only will ever be in |
174 | # packages that will never be mirrored. (As they only will ever be in |
| 198 | # the overlay). |
175 | # the overlay). |
| 199 | case ${PV} in |
176 | case ${PV} in |
| 200 | *9999* | 4.?.[6-9]?) |
177 | *9999* | 4.?.[6-9]?) |
| 201 | RESTRICT+=" mirror" |
178 | RESTRICT+=" mirror" |
| 202 | ;; |
179 | ;; |
| 203 | esac |
180 | esac |
| 204 | # Block installation of other SLOTS unless kdeprefix |
|
|
| 205 | RDEPEND+=" $(block_other_slots)" |
|
|
| 206 | ;; |
181 | ;; |
| 207 | koffice) |
182 | koffice) |
| 208 | HOMEPAGE="http://www.koffice.org/" |
183 | HOMEPAGE="http://www.koffice.org/" |
| 209 | LICENSE="GPL-2" |
184 | LICENSE="GPL-2" |
| 210 | ;; |
185 | ;; |
| … | |
… | |
| 214 | ;; |
189 | ;; |
| 215 | esac |
190 | esac |
| 216 | |
191 | |
| 217 | # @ECLASS-VARIABLE: QT_MINIMAL |
192 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 218 | # @DESCRIPTION: |
193 | # @DESCRIPTION: |
| 219 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
194 | # Determine version of qt we enforce as minimal for the package. |
| 220 | # 4.6.0 for 4.4, 4.6.3 for 4.5, and 4.7.0 for 4.6 and later |
|
|
| 221 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
195 | if version_is_at_least 4.5.50 "${KDE_MINIMAL}"; then |
| 222 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
196 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
| 223 | elif slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
197 | else |
| 224 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
198 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
| 225 | else |
|
|
| 226 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
|
|
| 227 | fi |
199 | fi |
| 228 | |
200 | |
| 229 | # Declarative dependencies |
201 | # Declarative dependencies |
| 230 | qtdeclarativedepend=" |
202 | qtdeclarativedepend=" |
| 231 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
203 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
| … | |
… | |
| 287 | ;; |
259 | ;; |
| 288 | *) ;; |
260 | *) ;; |
| 289 | esac |
261 | esac |
| 290 | unset qtmultimediadepend |
262 | unset qtmultimediadepend |
| 291 | |
263 | |
| 292 | # WebKit dependencies |
|
|
| 293 | case ${KDE_REQUIRED} in |
|
|
| 294 | always) |
|
|
| 295 | qtwebkitusedeps="[kde]" |
|
|
| 296 | ;; |
|
|
| 297 | optional) |
|
|
| 298 | qtwebkitusedeps="[kde?]" |
|
|
| 299 | ;; |
|
|
| 300 | *) ;; |
|
|
| 301 | esac |
|
|
| 302 | qtwebkitdepend=" |
|
|
| 303 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
|
|
| 304 | " |
|
|
| 305 | unset qtwebkitusedeps |
|
|
| 306 | case ${WEBKIT_REQUIRED} in |
|
|
| 307 | always) |
|
|
| 308 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
| 309 | ;; |
|
|
| 310 | optional) |
|
|
| 311 | IUSE+=" webkit" |
|
|
| 312 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
| 313 | ;; |
|
|
| 314 | *) ;; |
|
|
| 315 | esac |
|
|
| 316 | unset qtwebkitdepend |
|
|
| 317 | |
|
|
| 318 | # CppUnit dependencies |
264 | # CppUnit dependencies |
| 319 | cppuintdepend=" |
265 | cppuintdepend=" |
| 320 | dev-util/cppunit |
266 | dev-util/cppunit |
| 321 | " |
267 | " |
| 322 | case ${CPPUNIT_REQUIRED} in |
268 | case ${CPPUNIT_REQUIRED} in |
| … | |
… | |
| 329 | ;; |
275 | ;; |
| 330 | *) ;; |
276 | *) ;; |
| 331 | esac |
277 | esac |
| 332 | unset cppuintdepend |
278 | unset cppuintdepend |
| 333 | |
279 | |
|
|
280 | |
|
|
281 | # WebKit use dependencies |
|
|
282 | case ${KDE_REQUIRED} in |
|
|
283 | always) |
|
|
284 | qtwebkitusedeps="[kde]" |
|
|
285 | ;; |
|
|
286 | optional) |
|
|
287 | qtwebkitusedeps="[kde?]" |
|
|
288 | ;; |
|
|
289 | *) ;; |
|
|
290 | esac |
| 334 | # KDE dependencies |
291 | # KDE dependencies |
| 335 | # Qt accessibility classes are needed in various places, bug 325461 |
292 | # Qt accessibility classes are needed in various places, bug 325461 |
| 336 | kdecommondepend=" |
293 | kdecommondepend=" |
| 337 | dev-lang/perl |
294 | dev-lang/perl |
| 338 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
295 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| … | |
… | |
| 340 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
297 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 341 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
298 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 342 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
299 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| 343 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
300 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
| 344 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
301 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
302 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
| 345 | !aqua? ( |
303 | !aqua? ( |
| 346 | x11-libs/libXext |
304 | x11-libs/libXext |
| 347 | x11-libs/libXt |
305 | x11-libs/libXt |
| 348 | x11-libs/libXxf86vm |
306 | x11-libs/libXxf86vm |
|
|
307 | x11-libs/libXcomposite |
| 349 | ) |
308 | ) |
| 350 | " |
309 | " |
| 351 | |
310 | |
| 352 | if [[ ${PN} != kdelibs ]]; then |
311 | if [[ ${PN} != kdelibs ]]; then |
| 353 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
312 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| … | |
… | |
| 367 | *) ;; |
326 | *) ;; |
| 368 | esac |
327 | esac |
| 369 | fi |
328 | fi |
| 370 | fi |
329 | fi |
| 371 | fi |
330 | fi |
|
|
331 | |
| 372 | kdedepend=" |
332 | kdedepend=" |
| 373 | dev-util/automoc |
333 | dev-util/automoc |
| 374 | dev-util/pkgconfig |
334 | dev-util/pkgconfig |
| 375 | !aqua? ( |
335 | !aqua? ( |
| 376 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
336 | >=x11-libs/libXtst-1.1.0 |
| 377 | x11-proto/xf86vidmodeproto |
337 | x11-proto/xf86vidmodeproto |
| 378 | ) |
338 | ) |
| 379 | " |
339 | " |
|
|
340 | |
| 380 | kderdepend="" |
341 | kderdepend="" |
|
|
342 | |
|
|
343 | # all packages needs oxygen icons for basic iconset |
|
|
344 | if [[ ${PN} != oxygen-icons ]]; then |
|
|
345 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
|
|
346 | fi |
|
|
347 | |
|
|
348 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
349 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
350 | for _lingua in ${KDE_LINGUAS}; do |
|
|
351 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
352 | # but only for selected ones. |
|
|
353 | # this can't be done on one line because if user doesn't use any localisation |
|
|
354 | # then he is probably not interested in kde-l10n at all. |
|
|
355 | kderdepend+=" |
|
|
356 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
|
|
357 | " |
|
|
358 | done |
|
|
359 | unset _lingua |
|
|
360 | fi |
| 381 | |
361 | |
| 382 | kdehandbookdepend=" |
362 | kdehandbookdepend=" |
| 383 | app-text/docbook-xml-dtd:4.2 |
363 | app-text/docbook-xml-dtd:4.2 |
| 384 | app-text/docbook-xsl-stylesheets |
364 | app-text/docbook-xsl-stylesheets |
| 385 | " |
365 | " |
| … | |
… | |
| 425 | # Accumulate dependencies set by this eclass |
405 | # Accumulate dependencies set by this eclass |
| 426 | DEPEND+=" ${COMMONDEPEND}" |
406 | DEPEND+=" ${COMMONDEPEND}" |
| 427 | RDEPEND+=" ${COMMONDEPEND}" |
407 | RDEPEND+=" ${COMMONDEPEND}" |
| 428 | unset COMMONDEPEND |
408 | unset COMMONDEPEND |
| 429 | |
409 | |
| 430 | # Add experimental kdeenablefinal, disabled by default |
410 | # Add experimental kdeenablefinal, masked by default |
| 431 | IUSE+=" kdeenablefinal" |
411 | IUSE+=" kdeenablefinal" |
| 432 | |
412 | |
| 433 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
413 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 434 | # koffice ebuild, the URI should be set in the ebuild itself |
414 | # koffice ebuild, the URI should be set in the ebuild itself |
| 435 | case ${BUILD_TYPE} in |
415 | _calculate_src_uri() { |
| 436 | live) |
416 | debug-print-function ${FUNCNAME} "$@" |
|
|
417 | |
|
|
418 | local _kmname _kmname_pv |
|
|
419 | |
|
|
420 | # we calculate URI only for known KDEBASE modules |
|
|
421 | [[ -n ${KDEBASE} ]] || return |
|
|
422 | |
|
|
423 | # calculate tarball module name |
|
|
424 | if [[ -n ${KMNAME} ]]; then |
|
|
425 | # fixup kdebase-apps name |
|
|
426 | case ${KMNAME} in |
|
|
427 | kdebase-apps) |
|
|
428 | _kmname="kdebase" ;; |
|
|
429 | *) |
|
|
430 | _kmname="${KMNAME}" ;; |
|
|
431 | esac |
|
|
432 | else |
|
|
433 | _kmname=${PN} |
|
|
434 | fi |
|
|
435 | _kmname_pv="${_kmname}-${PV}" |
|
|
436 | case ${KDEBASE} in |
|
|
437 | kde-base) |
|
|
438 | case ${PV} in |
|
|
439 | 4.[456].8[05] | 4.[456].9[023568]) |
|
|
440 | # Unstable KDE SC releases |
|
|
441 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
442 | if ! version_is_at_least 4.6.80 ${PV} |
|
|
443 | then |
|
|
444 | # KDEPIM IS SPECIAL |
|
|
445 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/unstable/kdepim/${PV}/${_kmname_pv}.tar.bz2" |
|
|
446 | fi |
|
|
447 | ;; |
|
|
448 | *) |
|
|
449 | # Stable KDE SC releases |
|
|
450 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
451 | if ! version_is_at_least 4.6.80 ${PV} |
|
|
452 | then |
|
|
453 | # KDEPIM IS SPECIAL |
|
|
454 | # TODO: It might not be with KDE 4.7 (see above) |
|
|
455 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
456 | fi |
|
|
457 | ;; |
|
|
458 | esac |
|
|
459 | ;; |
|
|
460 | koffice) |
|
|
461 | case ${PV} in |
|
|
462 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
463 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
464 | esac |
|
|
465 | ;; |
|
|
466 | kdevelop) |
|
|
467 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
468 | ;; |
|
|
469 | esac |
|
|
470 | } |
|
|
471 | |
|
|
472 | _calculate_live_repo() { |
|
|
473 | debug-print-function ${FUNCNAME} "$@" |
|
|
474 | |
| 437 | SRC_URI="" |
475 | SRC_URI="" |
| 438 | if has subversion ${INHERITED}; then |
476 | case ${KDE_SCM} in |
|
|
477 | svn) |
| 439 | # Determine branch URL based on live type |
478 | # Determine branch URL based on live type |
| 440 | local branch_prefix |
479 | local branch_prefix |
| 441 | case ${PV} in |
480 | case ${PV} in |
| 442 | 9999*) |
481 | 9999*) |
| 443 | # trunk |
482 | # trunk |
| 444 | branch_prefix="trunk/KDE" |
483 | branch_prefix="trunk/KDE" |
| 445 | ;; |
484 | ;; |
| 446 | *) |
485 | *) |
| 447 | # branch |
486 | # branch |
| 448 | branch_prefix="branches/KDE/${SLOT}" |
487 | branch_prefix="branches/KDE/$(get_kde_version)" |
| 449 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
488 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
| 450 | # @DESCRIPTION |
489 | # @DESCRIPTION |
| 451 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
490 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
| 452 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
491 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
| 453 | ESVN_PROJECT_SUFFIX="-${PV}" |
492 | ESVN_PROJECT_SUFFIX="-${PV}" |
| … | |
… | |
| 504 | # @DESCRIPTION: |
543 | # @DESCRIPTION: |
| 505 | # This variable is used for specifying the timeout between svn synces |
544 | # This variable is used for specifying the timeout between svn synces |
| 506 | # for kde-base and koffice modules. Does not affect misc apps. |
545 | # for kde-base and koffice modules. Does not affect misc apps. |
| 507 | # Default value is 1 hour. |
546 | # Default value is 1 hour. |
| 508 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
547 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
| 509 | elif has git ${INHERITED}; then |
|
|
| 510 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
| 511 | KMMODULE="${PN}" |
|
|
| 512 | fi |
|
|
| 513 | case ${KDEBASE} in |
|
|
| 514 | kdevelop) |
|
|
| 515 | EGIT_REPO_URI="git://git.kde.org/${KMMODULE}" |
|
|
| 516 | ;; |
|
|
| 517 | esac |
|
|
| 518 | fi |
|
|
| 519 | ;; |
548 | ;; |
| 520 | *) |
549 | git) |
|
|
550 | local _kmname |
|
|
551 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
552 | # @DESCRIPTION: |
|
|
553 | # This variable allows easy overriding of default kde mirror service |
|
|
554 | # (anongit) with anything else you might want to use. |
|
|
555 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
556 | |
|
|
557 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
558 | # @DESCRIPTION: |
|
|
559 | # This variable allows overriding of default repository |
|
|
560 | # name. Specify only if this differ from PN and KMNAME. |
| 521 | if [[ -n ${KDEBASE} ]]; then |
561 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
562 | # the repository and kmname different |
|
|
563 | _kmname=${EGIT_REPONAME} |
| 522 | if [[ -n ${KMNAME} ]]; then |
564 | elif [[ -n ${KMNAME} ]]; then |
| 523 | case ${KMNAME} in |
|
|
| 524 | kdebase-apps) |
|
|
| 525 | _kmname="kdebase" ;; |
|
|
| 526 | *) |
|
|
| 527 | _kmname="${KMNAME}" ;; |
565 | _kmname=${KMNAME} |
| 528 | esac |
|
|
| 529 | else |
566 | else |
| 530 | _kmname=${PN} |
567 | _kmname=${PN} |
| 531 | fi |
568 | fi |
| 532 | _kmname_pv="${_kmname}-${PV}" |
569 | |
| 533 | case ${KDEBASE} in |
570 | # default branching |
| 534 | kde-base) |
|
|
| 535 | case ${PV} in |
571 | case ${PV} in |
| 536 | 4.[456].8[05] | 4.[456].9[023568]) |
572 | 9999*) ;; |
| 537 | # Unstable KDE SC releases |
573 | *) |
| 538 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
574 | # set EGIT_BRANCH and EGIT_COMMIT to $(get_kde_version) |
|
|
575 | # every package is listed explicitly now, as upstream |
|
|
576 | # seems to love being different :( |
|
|
577 | case ${_kmname} in |
|
|
578 | blinken|cantor|kalgebra|kalzium|kanagram|kbruch| \ |
|
|
579 | kdeplasma-addons|kdepim|kdepim-runtime|kdepimlibs| \ |
|
|
580 | kgeography|khangman|kig|kiten|klettres|kmplot|kstars| \ |
|
|
581 | ktouch|kturtle|kwordquiz|libkdeedu|mobipocket|okular| \ |
|
|
582 | parley|rocs|step) |
|
|
583 | EGIT_BRANCH="$(get_kde_version)" |
| 539 | ;; |
584 | ;; |
| 540 | 4.4.6 | 4.4.7 | 4.4.8) |
585 | marble) |
| 541 | # Only kdepim here |
586 | EGIT_BRANCH="kde-$(get_kde_version)" |
| 542 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
587 | ;; |
|
|
588 | gwenview|kamera|kate|kcolorchooser|kde-baseapps| \ |
|
|
589 | kde-runtime|kde-workspace|kgamma| \ |
|
|
590 | kdegraphics-strigi-analyzer|kdegraphics-thumbnailers| \ |
|
|
591 | kdelibs|kimono|kolourpaint|konsole|korundum| \ |
|
|
592 | kross-interpreters|kruler|ksaneplugin|ksnapshot| \ |
|
|
593 | libkdcraw|libkexiv2|libkipi|libksane|perlqt|perlkde| \ |
|
|
594 | pykde4|qtruby|qyoto|smokegen|smokekde|smokeqt|svgpart) |
|
|
595 | EGIT_BRANCH="KDE/$(get_kde_version)" |
| 543 | ;; |
596 | ;; |
| 544 | *) |
597 | *) |
| 545 | # Stable KDE SC releases |
598 | ewarn "Unknown KMNAME ${_kmname}: Guessing branch name 'KDE/$(get_kde_version)'" |
| 546 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
599 | EGIT_BRANCH="KDE/$(get_kde_version)" ;; |
| 547 | ;; |
|
|
| 548 | esac |
600 | esac |
| 549 | ;; |
601 | ;; |
| 550 | koffice) |
|
|
| 551 | case ${PV} in |
|
|
| 552 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 553 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 554 | esac |
|
|
| 555 | ;; |
|
|
| 556 | kdevelop) |
|
|
| 557 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
| 558 | ;; |
|
|
| 559 | esac |
602 | esac |
| 560 | unset _kmname _kmname_pv |
603 | |
| 561 | fi |
604 | # default repo uri |
|
|
605 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
|
|
606 | |
|
|
607 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
608 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
| 562 | ;; |
609 | ;; |
|
|
610 | esac |
|
|
611 | } |
|
|
612 | |
|
|
613 | case ${BUILD_TYPE} in |
|
|
614 | live) _calculate_live_repo ;; |
|
|
615 | *) _calculate_src_uri ;; |
| 563 | esac |
616 | esac |
| 564 | |
617 | |
| 565 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
618 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
| 566 | |
619 | |
| 567 | # @ECLASS-VARIABLE: PREFIX |
620 | # @ECLASS-VARIABLE: PREFIX |
| 568 | # @DESCRIPTION: |
621 | # @DESCRIPTION: |
| 569 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
622 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
| 570 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
623 | # kde-base packages go into KDE4 installation directory (/usr). |
| 571 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
624 | # No matter the PREFIX, package will be built against KDE installed in /usr. |
| 572 | |
625 | |
| 573 | # @FUNCTION: kde4-base_pkg_setup |
626 | # @FUNCTION: kde4-base_pkg_setup |
| 574 | # @DESCRIPTION: |
627 | # @DESCRIPTION: |
| 575 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
628 | # Do some basic settings |
| 576 | # optional applications link |
|
|
| 577 | kde4-base_pkg_setup() { |
629 | kde4-base_pkg_setup() { |
| 578 | debug-print-function ${FUNCNAME} "$@" |
630 | debug-print-function ${FUNCNAME} "$@" |
| 579 | |
631 | |
| 580 | # Prefix compat: |
632 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
| 581 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
633 | eerror "Sorry, kdeprefix support has been removed." |
| 582 | EPREFIX= |
634 | eerror "Please remove kdeprefix from your USE variable." |
| 583 | EROOT=${ROOT} |
635 | die "kdeprefix support has been removed" |
| 584 | fi |
636 | fi |
| 585 | |
637 | |
| 586 | # Append missing trailing slash character |
638 | if [[ ${CATEGORY}/${PN} != kde-base/kdelibs && ${CATEGORY}/${PN} != kde-base/kde-env ]] && \ |
| 587 | [[ ${EROOT} = */ ]] || EROOT+="/" |
639 | { [[ ${KDE_REQUIRED} == always ]] || { [[ ${KDE_REQUIRED} == optional ]] && use kde; }; } && \ |
| 588 | |
640 | has_version kde-base/kdelibs[kdeprefix]; then |
| 589 | # QA ebuilds |
641 | eerror "Sorry, kdeprefix support has been removed." |
| 590 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
642 | eerror "Please rebuild kdelibs without kdeprefix support." |
|
|
643 | die "kdeprefix support has been removed" |
|
|
644 | fi |
| 591 | |
645 | |
| 592 | # Don't set KDEHOME during compilation, it will cause access violations |
646 | # Don't set KDEHOME during compilation, it will cause access violations |
| 593 | unset KDEHOME |
647 | unset KDEHOME |
| 594 | |
648 | |
| 595 | if [[ ${KDEBASE} = kde-base ]]; then |
649 | # Check if gcc compiler is fresh enough. |
| 596 | if use kdeprefix; then |
650 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
| 597 | KDEDIR=/usr/kde/${SLOT} |
651 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
| 598 | else |
652 | # executions consume quite some time. |
|
|
653 | if [[ ${MERGE_TYPE} != binary ]]; then |
|
|
654 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
655 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
656 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
|
|
657 | fi |
|
|
658 | |
| 599 | KDEDIR=/usr |
659 | KDEDIR=/usr |
| 600 | fi |
|
|
| 601 | : ${PREFIX:=${KDEDIR}} |
|
|
| 602 | else |
|
|
| 603 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
|
|
| 604 | KDEDIR= |
|
|
| 605 | local kde_minimal_met |
|
|
| 606 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
| 607 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
|
|
| 608 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
|
|
| 609 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
|
|
| 610 | KDEDIR=/usr/kde/${slot} |
|
|
| 611 | else |
|
|
| 612 | KDEDIR=/usr |
|
|
| 613 | fi |
|
|
| 614 | break; |
|
|
| 615 | fi |
|
|
| 616 | done |
|
|
| 617 | unset slot |
|
|
| 618 | |
|
|
| 619 | # Bail out if kdelibs required but not found |
|
|
| 620 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
|
|
| 621 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
|
|
| 622 | else |
|
|
| 623 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
|
|
| 624 | fi |
|
|
| 625 | |
|
|
| 626 | : ${PREFIX:=/usr} |
660 | : ${PREFIX:=/usr} |
| 627 | fi |
661 | EKDEDIR=${EPREFIX}/usr |
| 628 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
| 629 | |
662 | |
| 630 | # Point pkg-config path to KDE *.pc files |
|
|
| 631 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
|
|
| 632 | # Point to correct QT plugins path |
663 | # Point to correct QT plugins path |
| 633 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
664 | QT_PLUGIN_PATH="${EPREFIX}/usr/$(get_libdir)/kde4/plugins/" |
| 634 | |
665 | |
| 635 | # Fix XDG collision with sandbox |
666 | # Fix XDG collision with sandbox |
| 636 | export XDG_CONFIG_HOME="${T}" |
667 | export XDG_CONFIG_HOME="${T}" |
| 637 | } |
668 | } |
| 638 | |
669 | |
| … | |
… | |
| 641 | # This function unpacks the source tarballs for KDE4 applications. |
672 | # This function unpacks the source tarballs for KDE4 applications. |
| 642 | kde4-base_src_unpack() { |
673 | kde4-base_src_unpack() { |
| 643 | debug-print-function ${FUNCNAME} "$@" |
674 | debug-print-function ${FUNCNAME} "$@" |
| 644 | |
675 | |
| 645 | if [[ ${BUILD_TYPE} = live ]]; then |
676 | if [[ ${BUILD_TYPE} = live ]]; then |
| 646 | if has subversion ${INHERITED}; then |
677 | case ${KDE_SCM} in |
|
|
678 | svn) |
| 647 | migrate_store_dir |
679 | migrate_store_dir |
| 648 | subversion_src_unpack |
680 | subversion_src_unpack |
| 649 | elif has git ${INHERITED}; then |
|
|
| 650 | git_src_unpack |
|
|
| 651 | fi |
|
|
| 652 | elif [[ ${EAPI} == 2 ]]; then |
|
|
| 653 | local file |
|
|
| 654 | for file in ${A}; do |
|
|
| 655 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
|
|
| 656 | # directly, so we do it ourselves (using the exact same code as portage) |
|
|
| 657 | case ${file} in |
|
|
| 658 | *.tar.xz) |
|
|
| 659 | echo ">>> Unpacking ${file} to ${PWD}" |
|
|
| 660 | xz -dc "${DISTDIR}"/${file} | tar xof - |
|
|
| 661 | assert "failed unpacking ${file}" |
|
|
| 662 | ;; |
681 | ;; |
| 663 | *) |
682 | git) |
| 664 | unpack ${file} |
683 | git-2_src_unpack |
| 665 | ;; |
684 | ;; |
| 666 | esac |
685 | esac |
| 667 | done |
|
|
| 668 | else |
686 | else |
| 669 | # For EAPI >= 3, we can just use unpack() directly |
|
|
| 670 | unpack ${A} |
687 | unpack ${A} |
| 671 | fi |
688 | fi |
| 672 | } |
689 | } |
| 673 | |
690 | |
| 674 | # @FUNCTION: kde4-base_src_prepare |
691 | # @FUNCTION: kde4-base_src_prepare |
| … | |
… | |
| 678 | # enable_selected_linguas() and enable_selected_doc_linguas() |
695 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 679 | # in kde4-functions.eclass(5) for further details. |
696 | # in kde4-functions.eclass(5) for further details. |
| 680 | kde4-base_src_prepare() { |
697 | kde4-base_src_prepare() { |
| 681 | debug-print-function ${FUNCNAME} "$@" |
698 | debug-print-function ${FUNCNAME} "$@" |
| 682 | |
699 | |
|
|
700 | # enable handbook and linguas only when not using live ebuild |
|
|
701 | |
| 683 | # Only enable selected languages, used for KDE extragear apps. |
702 | # Only enable selected languages, used for KDE extragear apps. |
| 684 | if [[ -n ${KDE_LINGUAS} ]]; then |
703 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 685 | enable_selected_linguas |
704 | enable_selected_linguas |
| 686 | fi |
705 | fi |
| 687 | |
706 | |
| 688 | # Enable/disable handbooks for kde4-base packages |
707 | # Enable/disable handbooks for kde4-base packages |
| 689 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
708 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
| 690 | # kdelibs inherits kde4-base but handle installing the handbook itself |
709 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 691 | if ! has kde4-meta ${INHERITED}; then |
710 | if ! has kde4-meta ${INHERITED} && has handbook ${IUSE//+}; then |
| 692 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
711 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
712 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
713 | # documentation in kde4-functions |
|
|
714 | : ${KDE_DOC_DIRS:=doc} |
|
|
715 | local dir |
|
|
716 | for dir in ${KDE_DOC_DIRS}; do |
|
|
717 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
718 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
719 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
720 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
721 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
722 | done |
|
|
723 | fi |
|
|
724 | else |
|
|
725 | enable_selected_doc_linguas |
|
|
726 | fi |
| 693 | fi |
727 | fi |
| 694 | |
728 | |
| 695 | # SCM bootstrap |
729 | # SCM bootstrap |
| 696 | if [[ ${BUILD_TYPE} = live ]]; then |
730 | if [[ ${BUILD_TYPE} = live ]]; then |
| 697 | if has subversion ${INHERITED}; then |
731 | case ${KDE_SCM} in |
| 698 | subversion_src_prepare |
732 | svn) subversion_src_prepare ;; |
| 699 | elif has git ${INHERITED}; then |
733 | esac |
| 700 | git_src_prepare |
|
|
| 701 | fi |
|
|
| 702 | fi |
734 | fi |
| 703 | |
735 | |
| 704 | # Apply patches |
736 | # Apply patches |
| 705 | base_src_prepare |
737 | base_src_prepare |
| 706 | |
738 | |
| … | |
… | |
| 770 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
802 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
| 771 | |
803 | |
| 772 | # Use colors |
804 | # Use colors |
| 773 | QTEST_COLORED=1 |
805 | QTEST_COLORED=1 |
| 774 | |
806 | |
| 775 | # Shadow existing /usr installations |
807 | # Shadow existing installations |
| 776 | unset KDEDIRS |
808 | unset KDEDIRS |
| 777 | |
809 | |
| 778 | # Handle kdeprefix-ed KDE |
|
|
| 779 | if [[ ${KDEDIR} != /usr ]]; then |
|
|
| 780 | # Override some environment variables - only when kdeprefix is different, |
|
|
| 781 | # to not break ccache/distcc |
|
|
| 782 | PATH="${EKDEDIR}/bin:${PATH}" |
|
|
| 783 | |
|
|
| 784 | # Append library search path |
|
|
| 785 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
|
|
| 786 | |
|
|
| 787 | # Append full RPATH |
|
|
| 788 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
|
|
| 789 | |
|
|
| 790 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
|
|
| 791 | # when more are present |
|
|
| 792 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
|
|
| 793 | fi |
|
|
| 794 | |
|
|
| 795 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
810 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
| 796 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
811 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/$(get_libdir)/qt4) |
| 797 | #kde-config -path data unavailable when cross-compiling |
812 | #kde-config -path data unavailable when cross-compiling |
| 798 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
813 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
| 799 | |
814 | |
| 800 | # Handle kdeprefix in application itself |
|
|
| 801 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
|
|
| 802 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
815 | # sysconf needs to be /etc, not /usr/etc |
| 803 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
816 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
| 804 | fi |
|
|
| 805 | |
817 | |
| 806 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
818 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 807 | mycmakeargs=(${mycmakeargs}) |
819 | mycmakeargs=(${mycmakeargs}) |
| 808 | fi |
820 | fi |
| 809 | |
821 | |
| … | |
… | |
| 830 | # Override this value, set in kde4-base_src_configure() |
842 | # Override this value, set in kde4-base_src_configure() |
| 831 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
843 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 832 | cmake-utils_src_configure |
844 | cmake-utils_src_configure |
| 833 | kde4-base_src_compile |
845 | kde4-base_src_compile |
| 834 | |
846 | |
| 835 | if [[ ${VIRTUALX_REQUIRED} == always ]] || |
847 | # When run as normal user during ebuild development with the ebuild command, the |
| 836 | ( [[ ${VIRTUALX_REQUIRED} != manual ]] && use test ); then |
848 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
849 | # emerge or on the tinderbox. |
|
|
850 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
851 | unset DBUS_SESSION_BUS_ADDRESS |
| 837 | |
852 | |
| 838 | if [[ ${maketype} ]]; then |
853 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
854 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
855 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
| 839 | # surprise- we are already INSIDE virtualmake!!! |
856 | # surprise- we are already INSIDE virtualmake!!! |
| 840 | ewarn "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
857 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
| 841 | ewarn " You may NOT set maketype or call virtualmake from the ebuild. Applying workaround." |
858 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
859 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
860 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
| 842 | cmake-utils_src_test |
861 | cmake-utils_src_test |
| 843 | else |
862 | else |
| 844 | export maketype="cmake-utils_src_test" |
863 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
| 845 | virtualmake |
|
|
| 846 | fi |
864 | fi |
| 847 | else |
865 | else |
| 848 | cmake-utils_src_test |
866 | cmake-utils_src_test |
| 849 | fi |
867 | fi |
| 850 | } |
868 | } |
| … | |
… | |
| 852 | # @FUNCTION: kde4-base_src_install |
870 | # @FUNCTION: kde4-base_src_install |
| 853 | # @DESCRIPTION: |
871 | # @DESCRIPTION: |
| 854 | # Function for installing KDE4 applications. |
872 | # Function for installing KDE4 applications. |
| 855 | kde4-base_src_install() { |
873 | kde4-base_src_install() { |
| 856 | debug-print-function ${FUNCNAME} "$@" |
874 | debug-print-function ${FUNCNAME} "$@" |
| 857 | |
|
|
| 858 | # Prefix support, for usage in ebuilds |
|
|
| 859 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 860 | ED=${D} |
|
|
| 861 | fi |
|
|
| 862 | |
875 | |
| 863 | if [[ -n ${KMSAVELIBS} ]] ; then |
876 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 864 | install_library_dependencies |
877 | install_library_dependencies |
| 865 | fi |
878 | fi |
| 866 | |
879 | |
| 867 | # Install common documentation of KDE4 applications |
880 | # Install common documentation of KDE4 applications |
| 868 | local doc |
881 | local doc |
| 869 | if ! has kde4-meta ${INHERITED}; then |
882 | if ! has kde4-meta ${INHERITED}; then |
| 870 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
883 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 871 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
884 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 872 | done |
885 | done |
| 873 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
886 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 874 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
887 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
| 875 | done |
888 | done |
| 876 | fi |
889 | fi |
| 877 | |
890 | |
| 878 | cmake-utils_src_install |
891 | cmake-utils_src_install |
|
|
892 | |
|
|
893 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
|
|
894 | # because then khelpcenter can't find the docs |
|
|
895 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
|
|
896 | docompress -x ${PREFIX}/share/doc/HTML |
|
|
897 | } |
|
|
898 | |
|
|
899 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
900 | # @DESCRIPTION: |
|
|
901 | # Function storing icon caches |
|
|
902 | kde4-base_pkg_preinst() { |
|
|
903 | debug-print-function ${FUNCNAME} "$@" |
|
|
904 | |
|
|
905 | gnome2_icon_savelist |
| 879 | } |
906 | } |
| 880 | |
907 | |
| 881 | # @FUNCTION: kde4-base_pkg_postinst |
908 | # @FUNCTION: kde4-base_pkg_postinst |
| 882 | # @DESCRIPTION: |
909 | # @DESCRIPTION: |
| 883 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
910 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 884 | kde4-base_pkg_postinst() { |
911 | kde4-base_pkg_postinst() { |
| 885 | debug-print-function ${FUNCNAME} "$@" |
912 | debug-print-function ${FUNCNAME} "$@" |
| 886 | |
913 | |
|
|
914 | gnome2_icon_cache_update |
|
|
915 | fdo-mime_desktop_database_update |
|
|
916 | fdo-mime_mime_database_update |
| 887 | buildsycoca |
917 | buildsycoca |
| 888 | |
918 | |
| 889 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
919 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 890 | echo |
920 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 891 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
| 892 | einfo "Use it at your own risk." |
|
|
| 893 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
| 894 | echo |
|
|
| 895 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
| 896 | # warning about kdeprefix for non-live users |
|
|
| 897 | echo |
|
|
| 898 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
| 899 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
| 900 | ewarn "with KDE update strategies." |
|
|
| 901 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
| 902 | ewarn "take responsibilities for dead kittens." |
|
|
| 903 | echo |
|
|
| 904 | fi |
|
|
| 905 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
| 906 | # warn about not supported approach |
|
|
| 907 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
| 908 | echo |
921 | echo |
|
|
922 | ewarn "WARNING! you have kdeenable final useflag enabled." |
|
|
923 | ewarn "This useflag needs to be enabled on ALL kde using packages and" |
|
|
924 | ewarn "is known to cause issues." |
|
|
925 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
926 | ewarn "take responsibilities for dead kittens." |
|
|
927 | echo |
|
|
928 | fi |
|
|
929 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
930 | echo |
|
|
931 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
932 | einfo "Use it at your own risk." |
|
|
933 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
934 | echo |
|
|
935 | fi |
|
|
936 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
937 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
938 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
939 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
940 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
941 | echo |
| 909 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
942 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
| 910 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
943 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
| 911 | ewarn "With this setting you are unsupported by KDE team." |
944 | ewarn "With this setting you are unsupported by KDE team." |
| 912 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
945 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
946 | fi |
| 913 | fi |
947 | fi |
| 914 | fi |
948 | fi |
| 915 | } |
949 | } |
| 916 | |
950 | |
| 917 | # @FUNCTION: kde4-base_pkg_postrm |
951 | # @FUNCTION: kde4-base_pkg_postrm |
| 918 | # @DESCRIPTION: |
952 | # @DESCRIPTION: |
| 919 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
953 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 920 | kde4-base_pkg_postrm() { |
954 | kde4-base_pkg_postrm() { |
| 921 | debug-print-function ${FUNCNAME} "$@" |
955 | debug-print-function ${FUNCNAME} "$@" |
| 922 | |
956 | |
|
|
957 | gnome2_icon_cache_update |
|
|
958 | fdo-mime_desktop_database_update |
|
|
959 | fdo-mime_mime_database_update |
| 923 | buildsycoca |
960 | buildsycoca |
| 924 | } |
961 | } |