| 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.76 2010/10/27 21:24:22 dilfridge Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.96 2011/06/06 21:38:18 abcd 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 | inherit kde4-functions base eutils |
16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # For proper description see virtualx.eclass manpage. |
|
|
19 | # Here we redefine default value to be manual, if your package needs virtualx |
|
|
20 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
|
|
21 | : ${VIRTUALX_REQUIRED:=manual} |
| 17 | |
22 | |
| 18 | get_build_type |
23 | inherit kde4-functions toolchain-funcs fdo-mime gnome2-utils base virtualx versionator eutils |
|
|
24 | |
| 19 | if [[ ${BUILD_TYPE} = live ]]; then |
25 | if [[ ${BUILD_TYPE} = live ]]; then |
| 20 | if [[ ${KDEBASE} = kdevelop ]]; then |
26 | case ${KDE_SCM} in |
| 21 | inherit git |
|
|
| 22 | else |
|
|
| 23 | inherit subversion |
27 | svn) inherit subversion ;; |
| 24 | fi |
28 | git) inherit git-2 ;; |
|
|
29 | esac |
| 25 | fi |
30 | fi |
| 26 | |
31 | |
| 27 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
32 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 28 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 29 | # 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'. |
| … | |
… | |
| 54 | # One may override this variable to raise version requirements. |
59 | # One may override this variable to raise version requirements. |
| 55 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
60 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
| 56 | # Note that it is fixed to ${SLOT} for kde-base packages. |
61 | # Note that it is fixed to ${SLOT} for kde-base packages. |
| 57 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
62 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
| 58 | |
63 | |
| 59 | # Set slot for packages in kde-base, koffice and kdevelop |
64 | # Set slot for KDEBASE known packages |
| 60 | case ${KDEBASE} in |
65 | case ${KDEBASE} in |
| 61 | kde-base) |
66 | kde-base) |
| 62 | # Determine SLOT from PVs |
67 | SLOT=$(_calculate_kde_slot) |
| 63 | case ${PV} in |
68 | [[ -z ${SLOT} ]] && die "Unsupported ${PV}" |
| 64 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
|
|
| 65 | 4.6* | 4.5.[6-9][0-9]*) SLOT="4.6" ;; |
|
|
| 66 | 4.5* | 4.4.[6-9][0-9]*) SLOT="4.5" ;; |
|
|
| 67 | 4.4* | 4.3.[6-9][0-9]*) SLOT="4.4" ;; |
|
|
| 68 | 9999*) SLOT="live" ;; # regular live |
|
|
| 69 | *) die "Unsupported ${PV}" ;; |
|
|
| 70 | esac |
|
|
| 71 | KDE_MINIMAL="${SLOT}" |
69 | KDE_MINIMAL="${SLOT}" |
| 72 | ;; |
70 | ;; |
| 73 | koffice) |
71 | koffice) |
| 74 | SLOT="2" |
72 | SLOT="2" |
| 75 | ;; |
73 | ;; |
| … | |
… | |
| 102 | fi |
100 | fi |
| 103 | SLOT="4" |
101 | SLOT="4" |
| 104 | ;; |
102 | ;; |
| 105 | esac |
103 | esac |
| 106 | |
104 | |
| 107 | slot_is_at_least 4.5 ${KDE_MINIMAL} && CMAKE_MIN_VERSION="2.8.1" |
|
|
| 108 | |
|
|
| 109 | inherit ${buildsystem_eclass} |
105 | inherit ${buildsystem_eclass} |
| 110 | |
106 | |
| 111 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
107 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm |
| 112 | |
108 | |
| 113 | unset buildsystem_eclass |
109 | unset buildsystem_eclass |
| 114 | unset export_fns |
110 | unset export_fns |
|
|
111 | |
|
|
112 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Is qt-declarative required? Possible values are 'always', 'optional' and 'never'. |
|
|
115 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
116 | DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}" |
|
|
117 | |
|
|
118 | # @ECLASS-VARIABLE: QTHELP_REQUIRED |
|
|
119 | # @DESCRIPTION: |
|
|
120 | # Is qt-assistant required? Possible values are 'always', 'optional' and 'never'. |
|
|
121 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
122 | QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}" |
| 115 | |
123 | |
| 116 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
124 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
| 117 | # @DESCRIPTION: |
125 | # @DESCRIPTION: |
| 118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
126 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
| 119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
127 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| … | |
… | |
| 122 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
130 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
| 123 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 124 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
132 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
| 125 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
133 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 126 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
134 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
| 127 | |
|
|
| 128 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
| 129 | # @DESCRIPTION: |
|
|
| 130 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
| 131 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
| 132 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
| 133 | |
135 | |
| 134 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
136 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 135 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 136 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
138 | # 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'. |
139 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| … | |
… | |
| 151 | # (handbook USE flag) and 'never'. |
153 | # (handbook USE flag) and 'never'. |
| 152 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
154 | # 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 |
155 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
| 154 | # ensures buildtime and runtime dependencies. |
156 | # ensures buildtime and runtime dependencies. |
| 155 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
157 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
158 | |
|
|
159 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
160 | # @DESCRIPTION: |
|
|
161 | # Set this varible if you want your live package to manage its |
|
|
162 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
163 | # and translations in live ebuilds) |
|
|
164 | if [[ ${BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
165 | # Kdebase actualy provides the handbooks even for live stuff |
|
|
166 | [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never |
|
|
167 | KDE_LINGUAS="" |
|
|
168 | fi |
| 156 | |
169 | |
| 157 | # Setup packages inheriting this eclass |
170 | # Setup packages inheriting this eclass |
| 158 | case ${KDEBASE} in |
171 | case ${KDEBASE} in |
| 159 | kde-base) |
172 | kde-base) |
| 160 | HOMEPAGE="http://www.kde.org/" |
173 | HOMEPAGE="http://www.kde.org/" |
| 161 | LICENSE="GPL-2" |
174 | LICENSE="GPL-2" |
| 162 | if [[ $BUILD_TYPE = live ]]; then |
175 | if [[ $BUILD_TYPE = live ]]; then |
| 163 | # Disable tests for live ebuilds |
176 | # Disable tests for live ebuilds |
| 164 | RESTRICT+=" test" |
177 | RESTRICT+=" test" |
| 165 | # Live ebuilds in kde-base default to kdeprefix by default |
178 | fi |
| 166 | IUSE+=" +kdeprefix" |
179 | |
| 167 | else |
180 | # Only add the kdeprefix USE flag for older versions, to help |
| 168 | # All other ebuild types default to -kdeprefix as before |
181 | # non-portage package managers handle the upgrade |
|
|
182 | if [[ ${PV} < 4.6.4 ]]; then |
| 169 | IUSE+=" kdeprefix" |
183 | IUSE+=" kdeprefix" |
| 170 | fi |
184 | fi |
|
|
185 | |
| 171 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
186 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
| 172 | # packages that will never be mirrored. (As they only will ever be in |
187 | # packages that will never be mirrored. (As they only will ever be in |
| 173 | # the overlay). |
188 | # the overlay). |
| 174 | case ${PV} in |
189 | case ${PV} in |
| 175 | *9999* | 4.?.[6-9]?) |
190 | *9999* | 4.?.[6-9]?) |
| … | |
… | |
| 189 | ;; |
204 | ;; |
| 190 | esac |
205 | esac |
| 191 | |
206 | |
| 192 | # @ECLASS-VARIABLE: QT_MINIMAL |
207 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 193 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 194 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
209 | # Determine version of qt we enforce as minimal for the package. |
| 195 | # 4.6.0 for 4.4 and 4.6.3 for 4.5 and later |
|
|
| 196 | if slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
210 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
|
|
211 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
|
|
212 | else |
| 197 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
213 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
| 198 | else |
|
|
| 199 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
|
|
| 200 | fi |
214 | fi |
|
|
215 | |
|
|
216 | # Declarative dependencies |
|
|
217 | qtdeclarativedepend=" |
|
|
218 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
|
|
219 | " |
|
|
220 | case ${DECLARATIVE_REQUIRED} in |
|
|
221 | always) |
|
|
222 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
|
|
223 | ;; |
|
|
224 | optional) |
|
|
225 | IUSE+=" declarative" |
|
|
226 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
|
|
227 | ;; |
|
|
228 | *) ;; |
|
|
229 | esac |
|
|
230 | unset qtdeclarativedepend |
|
|
231 | |
|
|
232 | # QtHelp dependencies |
|
|
233 | qthelpdepend=" |
|
|
234 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
235 | " |
|
|
236 | case ${QTHELP_REQUIRED} in |
|
|
237 | always) |
|
|
238 | COMMONDEPEND+=" ${qthelpdepend}" |
|
|
239 | ;; |
|
|
240 | optional) |
|
|
241 | IUSE+=" qthelp" |
|
|
242 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
243 | ;; |
|
|
244 | esac |
|
|
245 | unset qthelpdepend |
| 201 | |
246 | |
| 202 | # OpenGL dependencies |
247 | # OpenGL dependencies |
| 203 | qtopengldepend=" |
248 | qtopengldepend=" |
| 204 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
249 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
| 205 | " |
250 | " |
| … | |
… | |
| 229 | ;; |
274 | ;; |
| 230 | *) ;; |
275 | *) ;; |
| 231 | esac |
276 | esac |
| 232 | unset qtmultimediadepend |
277 | unset qtmultimediadepend |
| 233 | |
278 | |
| 234 | # WebKit dependencies |
|
|
| 235 | case ${KDE_REQUIRED} in |
|
|
| 236 | always) |
|
|
| 237 | qtwebkitusedeps="[kde]" |
|
|
| 238 | ;; |
|
|
| 239 | optional) |
|
|
| 240 | qtwebkitusedeps="[kde?]" |
|
|
| 241 | ;; |
|
|
| 242 | *) ;; |
|
|
| 243 | esac |
|
|
| 244 | qtwebkitdepend=" |
|
|
| 245 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
|
|
| 246 | " |
|
|
| 247 | unset qtwebkitusedeps |
|
|
| 248 | case ${WEBKIT_REQUIRED} in |
|
|
| 249 | always) |
|
|
| 250 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
| 251 | ;; |
|
|
| 252 | optional) |
|
|
| 253 | IUSE+=" webkit" |
|
|
| 254 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
| 255 | ;; |
|
|
| 256 | *) ;; |
|
|
| 257 | esac |
|
|
| 258 | unset qtwebkitdepend |
|
|
| 259 | |
|
|
| 260 | # CppUnit dependencies |
279 | # CppUnit dependencies |
| 261 | cppuintdepend=" |
280 | cppuintdepend=" |
| 262 | dev-util/cppunit |
281 | dev-util/cppunit |
| 263 | " |
282 | " |
| 264 | case ${CPPUNIT_REQUIRED} in |
283 | case ${CPPUNIT_REQUIRED} in |
| … | |
… | |
| 271 | ;; |
290 | ;; |
| 272 | *) ;; |
291 | *) ;; |
| 273 | esac |
292 | esac |
| 274 | unset cppuintdepend |
293 | unset cppuintdepend |
| 275 | |
294 | |
|
|
295 | |
|
|
296 | # WebKit use dependencies |
|
|
297 | case ${KDE_REQUIRED} in |
|
|
298 | always) |
|
|
299 | qtwebkitusedeps="[kde]" |
|
|
300 | ;; |
|
|
301 | optional) |
|
|
302 | qtwebkitusedeps="[kde?]" |
|
|
303 | ;; |
|
|
304 | *) ;; |
|
|
305 | esac |
| 276 | # KDE dependencies |
306 | # KDE dependencies |
| 277 | # Qt accessibility classes are needed in various places, bug 325461 |
307 | # Qt accessibility classes are needed in various places, bug 325461 |
| 278 | kdecommondepend=" |
308 | kdecommondepend=" |
| 279 | dev-lang/perl |
309 | dev-lang/perl |
| 280 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
310 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| … | |
… | |
| 282 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
312 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 283 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
313 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 284 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
314 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| 285 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
315 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
| 286 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
316 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
317 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
| 287 | !aqua? ( |
318 | !aqua? ( |
| 288 | x11-libs/libXext |
319 | x11-libs/libXext |
| 289 | x11-libs/libXt |
320 | x11-libs/libXt |
| 290 | x11-libs/libXxf86vm |
321 | x11-libs/libXxf86vm |
|
|
322 | x11-libs/libXcomposite |
| 291 | ) |
323 | ) |
| 292 | " |
324 | " |
| 293 | |
325 | |
| 294 | if [[ ${PN} != kdelibs ]]; then |
326 | if [[ ${PN} != kdelibs ]]; then |
| 295 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
327 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| … | |
… | |
| 309 | *) ;; |
341 | *) ;; |
| 310 | esac |
342 | esac |
| 311 | fi |
343 | fi |
| 312 | fi |
344 | fi |
| 313 | fi |
345 | fi |
|
|
346 | |
| 314 | kdedepend=" |
347 | kdedepend=" |
| 315 | dev-util/automoc |
348 | dev-util/automoc |
| 316 | dev-util/pkgconfig |
349 | dev-util/pkgconfig |
| 317 | !aqua? ( |
350 | !aqua? ( |
| 318 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
351 | >=x11-libs/libXtst-1.1.0 |
| 319 | x11-proto/xf86vidmodeproto |
352 | x11-proto/xf86vidmodeproto |
| 320 | ) |
353 | ) |
| 321 | " |
354 | " |
|
|
355 | |
| 322 | kderdepend="" |
356 | kderdepend="" |
|
|
357 | |
|
|
358 | # all packages needs oxygen icons for basic iconset |
|
|
359 | if [[ ${PN} != oxygen-icons ]]; then |
|
|
360 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
|
|
361 | fi |
|
|
362 | |
|
|
363 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
364 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
365 | for _lingua in ${KDE_LINGUAS}; do |
|
|
366 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
367 | # but only for selected ones. |
|
|
368 | # this can't be done on one line because if user doesn't use any localisation |
|
|
369 | # then he is probably not interested in kde-l10n at all. |
|
|
370 | kderdepend+=" |
|
|
371 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
|
|
372 | " |
|
|
373 | done |
|
|
374 | unset _lingua |
|
|
375 | fi |
| 323 | |
376 | |
| 324 | kdehandbookdepend=" |
377 | kdehandbookdepend=" |
| 325 | app-text/docbook-xml-dtd:4.2 |
378 | app-text/docbook-xml-dtd:4.2 |
| 326 | app-text/docbook-xsl-stylesheets |
379 | app-text/docbook-xsl-stylesheets |
| 327 | " |
380 | " |
| … | |
… | |
| 367 | # Accumulate dependencies set by this eclass |
420 | # Accumulate dependencies set by this eclass |
| 368 | DEPEND+=" ${COMMONDEPEND}" |
421 | DEPEND+=" ${COMMONDEPEND}" |
| 369 | RDEPEND+=" ${COMMONDEPEND}" |
422 | RDEPEND+=" ${COMMONDEPEND}" |
| 370 | unset COMMONDEPEND |
423 | unset COMMONDEPEND |
| 371 | |
424 | |
| 372 | # Add experimental kdeenablefinal, disabled by default |
425 | # Add experimental kdeenablefinal, masked by default |
| 373 | IUSE+=" kdeenablefinal" |
426 | IUSE+=" kdeenablefinal" |
| 374 | |
427 | |
| 375 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
428 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 376 | # koffice ebuild, the URI should be set in the ebuild itself |
429 | # koffice ebuild, the URI should be set in the ebuild itself |
| 377 | case ${BUILD_TYPE} in |
430 | _calculate_src_uri() { |
| 378 | live) |
431 | debug-print-function ${FUNCNAME} "$@" |
|
|
432 | |
|
|
433 | local _kmname _kmname_pv |
|
|
434 | |
|
|
435 | # we calculate URI only for known KDEBASE modules |
|
|
436 | [[ -n ${KDEBASE} ]] || return |
|
|
437 | |
|
|
438 | # calculate tarball module name |
|
|
439 | if [[ -n ${KMNAME} ]]; then |
|
|
440 | # fixup kdebase-apps name |
|
|
441 | case ${KMNAME} in |
|
|
442 | kdebase-apps) |
|
|
443 | _kmname="kdebase" ;; |
|
|
444 | *) |
|
|
445 | _kmname="${KMNAME}" ;; |
|
|
446 | esac |
|
|
447 | else |
|
|
448 | _kmname=${PN} |
|
|
449 | fi |
|
|
450 | _kmname_pv="${_kmname}-${PV}" |
|
|
451 | case ${KDEBASE} in |
|
|
452 | kde-base) |
|
|
453 | case ${PV} in |
|
|
454 | 4.[456].8[05] | 4.[456].9[023568]) |
|
|
455 | # Unstable KDE SC releases |
|
|
456 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
457 | # KDEPIM IS SPECIAL |
|
|
458 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/unstable/kdepim/${PV}/${_kmname_pv}.tar.bz2" |
|
|
459 | ;; |
|
|
460 | 4.4.[6789] | 4.4.1?*) |
|
|
461 | # Stable kdepim releases |
|
|
462 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
463 | ;; |
|
|
464 | *) |
|
|
465 | # Stable KDE SC releases |
|
|
466 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
467 | ;; |
|
|
468 | esac |
|
|
469 | ;; |
|
|
470 | koffice) |
|
|
471 | case ${PV} in |
|
|
472 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
473 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
474 | esac |
|
|
475 | ;; |
|
|
476 | kdevelop) |
|
|
477 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
478 | ;; |
|
|
479 | esac |
|
|
480 | } |
|
|
481 | |
|
|
482 | _calculate_live_repo() { |
|
|
483 | debug-print-function ${FUNCNAME} "$@" |
|
|
484 | |
| 379 | SRC_URI="" |
485 | SRC_URI="" |
| 380 | if has subversion ${INHERITED}; then |
486 | case ${KDE_SCM} in |
|
|
487 | svn) |
| 381 | # Determine branch URL based on live type |
488 | # Determine branch URL based on live type |
| 382 | local branch_prefix |
489 | local branch_prefix |
| 383 | case ${PV} in |
490 | case ${PV} in |
| 384 | 9999*) |
491 | 9999*) |
| 385 | # trunk |
492 | # trunk |
| … | |
… | |
| 446 | # @DESCRIPTION: |
553 | # @DESCRIPTION: |
| 447 | # This variable is used for specifying the timeout between svn synces |
554 | # This variable is used for specifying the timeout between svn synces |
| 448 | # for kde-base and koffice modules. Does not affect misc apps. |
555 | # for kde-base and koffice modules. Does not affect misc apps. |
| 449 | # Default value is 1 hour. |
556 | # Default value is 1 hour. |
| 450 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
557 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
| 451 | elif has git ${INHERITED}; then |
|
|
| 452 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
| 453 | KMMODULE="${PN}" |
|
|
| 454 | fi |
|
|
| 455 | case ${KDEBASE} in |
|
|
| 456 | kdevelop) |
|
|
| 457 | EGIT_REPO_URI="git://gitorious.org/${KMNAME}/${KMMODULE}.git" |
|
|
| 458 | ;; |
|
|
| 459 | esac |
|
|
| 460 | fi |
|
|
| 461 | ;; |
558 | ;; |
| 462 | *) |
559 | git) |
|
|
560 | local _kmname |
|
|
561 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
562 | # @DESCRIPTION: |
|
|
563 | # This variable allows easy overriding of default kde mirror service |
|
|
564 | # (anongit) with anything else you might want to use. |
|
|
565 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
566 | |
|
|
567 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
568 | # @DESCRIPTION: |
|
|
569 | # This variable allows overriding of default repository |
|
|
570 | # name. Specify only if this differ from PN and KMNAME. |
| 463 | if [[ -n ${KDEBASE} ]]; then |
571 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
572 | # the repository and kmname different |
|
|
573 | _kmname=${EGIT_REPONAME} |
| 464 | if [[ -n ${KMNAME} ]]; then |
574 | elif [[ -n ${KMNAME} ]]; then |
| 465 | case ${KMNAME} in |
|
|
| 466 | kdebase-apps) |
|
|
| 467 | _kmname="kdebase" ;; |
|
|
| 468 | *) |
|
|
| 469 | _kmname="${KMNAME}" ;; |
575 | _kmname=${KMNAME} |
| 470 | esac |
|
|
| 471 | else |
576 | else |
| 472 | _kmname=${PN} |
577 | _kmname=${PN} |
| 473 | fi |
578 | fi |
| 474 | _kmname_pv="${_kmname}-${PV}" |
579 | |
| 475 | case ${KDEBASE} in |
580 | # default branching |
| 476 | kde-base) |
|
|
| 477 | case ${PV} in |
581 | case ${PV} in |
| 478 | 4.[456].8[05] | 4.[456].9[023568]) |
582 | 9999*) ;; |
| 479 | # Unstable KDE SC releases |
583 | *) |
| 480 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
584 | # set EGIT_BRANCH and EGIT_COMMIT to ${SLOT} |
|
|
585 | case ${_kmname} in |
|
|
586 | kdeplasma-addons | kdepim | kdepim-runtime | kdepimlibs | okular) |
|
|
587 | EGIT_BRANCH="${SLOT}" |
| 481 | ;; |
588 | ;; |
| 482 | 4.4.6 | 4.4.7) |
589 | marble) |
| 483 | # Only kdepim here |
590 | EGIT_BRANCH="kde-${SLOT}" |
| 484 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
| 485 | ;; |
591 | ;; |
| 486 | *) |
592 | *) EGIT_BRANCH="KDE/${SLOT}" ;; |
| 487 | # Stable KDE SC releases |
|
|
| 488 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
| 489 | ;; |
|
|
| 490 | esac |
593 | esac |
| 491 | ;; |
594 | ;; |
| 492 | koffice) |
|
|
| 493 | case ${PV} in |
|
|
| 494 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 495 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 496 | esac |
|
|
| 497 | ;; |
|
|
| 498 | kdevelop) |
|
|
| 499 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
| 500 | ;; |
|
|
| 501 | esac |
595 | esac |
| 502 | unset _kmname _kmname_pv |
596 | |
| 503 | fi |
597 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
|
|
598 | |
|
|
599 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
600 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
| 504 | ;; |
601 | ;; |
|
|
602 | esac |
|
|
603 | } |
|
|
604 | |
|
|
605 | case ${BUILD_TYPE} in |
|
|
606 | live) _calculate_live_repo ;; |
|
|
607 | *) _calculate_src_uri ;; |
| 505 | esac |
608 | esac |
| 506 | |
609 | |
| 507 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
610 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
| 508 | |
611 | |
| 509 | # @ECLASS-VARIABLE: PREFIX |
612 | # @ECLASS-VARIABLE: PREFIX |
| … | |
… | |
| 512 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
615 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
| 513 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
616 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
| 514 | |
617 | |
| 515 | # @FUNCTION: kde4-base_pkg_setup |
618 | # @FUNCTION: kde4-base_pkg_setup |
| 516 | # @DESCRIPTION: |
619 | # @DESCRIPTION: |
| 517 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
620 | # Do the basic KDEDIR settings and determine with which kde should |
| 518 | # optional applications link |
621 | # optional applications link |
| 519 | kde4-base_pkg_setup() { |
622 | kde4-base_pkg_setup() { |
| 520 | debug-print-function ${FUNCNAME} "$@" |
623 | debug-print-function ${FUNCNAME} "$@" |
| 521 | |
624 | |
| 522 | # Prefix compat: |
625 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
| 523 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
626 | eerror "Sorry, kdeprefix support has been removed." |
| 524 | EPREFIX= |
627 | eerror "Please remove kdeprefix from your USE variable." |
| 525 | EROOT=${ROOT} |
628 | die "kdeprefix support has been removed" |
| 526 | fi |
629 | fi |
| 527 | |
630 | |
| 528 | # Append missing trailing slash character |
631 | if [[ ${CATEGORY}/${PN} != kde-base/kdelibs && ${CATEGORY}/${PN} != kde-base/kde-env ]] && \ |
| 529 | [[ ${EROOT} = */ ]] || EROOT+="/" |
632 | { [[ ${KDE_REQUIRED} == always ]] || { [[ ${KDE_REQUIRED} == optional ]] && use kde; }; } && \ |
|
|
633 | has_version kde-base/kdelibs[kdeprefix]; then |
|
|
634 | eerror "Sorry, kdeprefix support has been removed." |
|
|
635 | eerror "Please rebuild kdelibs without kdeprefix support." |
|
|
636 | die "kdeprefix support has been removed" |
|
|
637 | fi |
| 530 | |
638 | |
| 531 | # QA ebuilds |
639 | # QA ebuilds |
| 532 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
640 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
| 533 | |
641 | |
| 534 | # Don't set KDEHOME during compilation, it will cause access violations |
642 | # Don't set KDEHOME during compilation, it will cause access violations |
| 535 | unset KDEHOME |
643 | unset KDEHOME |
| 536 | |
644 | |
| 537 | if [[ ${KDEBASE} = kde-base ]]; then |
645 | # Check if gcc compiler is fresh enough. |
| 538 | if use kdeprefix; then |
646 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
| 539 | KDEDIR=/usr/kde/${SLOT} |
647 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
| 540 | else |
648 | # executions consume quite some time. |
|
|
649 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
650 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
651 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
|
|
652 | |
| 541 | KDEDIR=/usr |
653 | KDEDIR=/usr |
| 542 | fi |
|
|
| 543 | : ${PREFIX:=${KDEDIR}} |
|
|
| 544 | else |
|
|
| 545 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
|
|
| 546 | KDEDIR= |
|
|
| 547 | local kde_minimal_met |
|
|
| 548 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
| 549 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
|
|
| 550 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
|
|
| 551 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
|
|
| 552 | KDEDIR=/usr/kde/${slot} |
|
|
| 553 | else |
|
|
| 554 | KDEDIR=/usr |
|
|
| 555 | fi |
|
|
| 556 | break; |
|
|
| 557 | fi |
|
|
| 558 | done |
|
|
| 559 | unset slot |
|
|
| 560 | |
|
|
| 561 | # Bail out if kdelibs required but not found |
|
|
| 562 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
|
|
| 563 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
|
|
| 564 | else |
|
|
| 565 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
|
|
| 566 | fi |
|
|
| 567 | |
|
|
| 568 | : ${PREFIX:=/usr} |
654 | : ${PREFIX:=/usr} |
| 569 | fi |
655 | EKDEDIR=${EPREFIX}/usr |
| 570 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
| 571 | |
656 | |
| 572 | # Point pkg-config path to KDE *.pc files |
657 | # Point pkg-config path to KDE *.pc files |
| 573 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
658 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
| 574 | # Point to correct QT plugins path |
659 | # Point to correct QT plugins path |
| 575 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
660 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
| … | |
… | |
| 583 | # This function unpacks the source tarballs for KDE4 applications. |
668 | # This function unpacks the source tarballs for KDE4 applications. |
| 584 | kde4-base_src_unpack() { |
669 | kde4-base_src_unpack() { |
| 585 | debug-print-function ${FUNCNAME} "$@" |
670 | debug-print-function ${FUNCNAME} "$@" |
| 586 | |
671 | |
| 587 | if [[ ${BUILD_TYPE} = live ]]; then |
672 | if [[ ${BUILD_TYPE} = live ]]; then |
| 588 | if has subversion ${INHERITED}; then |
673 | case ${KDE_SCM} in |
|
|
674 | svn) |
| 589 | migrate_store_dir |
675 | migrate_store_dir |
| 590 | subversion_src_unpack |
676 | subversion_src_unpack |
| 591 | elif has git ${INHERITED}; then |
|
|
| 592 | git_src_unpack |
|
|
| 593 | fi |
|
|
| 594 | elif [[ ${EAPI} == 2 ]]; then |
|
|
| 595 | local file |
|
|
| 596 | for file in ${A}; do |
|
|
| 597 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
|
|
| 598 | # directly, so we do it ourselves (using the exact same code as portage) |
|
|
| 599 | case ${file} in |
|
|
| 600 | *.tar.xz) |
|
|
| 601 | echo ">>> Unpacking ${file} to ${PWD}" |
|
|
| 602 | xz -dc "${DISTDIR}"/${file} | tar xof - |
|
|
| 603 | assert "failed unpacking ${file}" |
|
|
| 604 | ;; |
677 | ;; |
| 605 | *) |
678 | git) |
| 606 | unpack ${file} |
679 | git-2_src_unpack |
| 607 | ;; |
680 | ;; |
| 608 | esac |
681 | esac |
| 609 | done |
|
|
| 610 | else |
682 | else |
| 611 | # For EAPI >= 3, we can just use unpack() directly |
|
|
| 612 | unpack ${A} |
683 | unpack ${A} |
| 613 | fi |
684 | fi |
| 614 | } |
685 | } |
| 615 | |
686 | |
| 616 | # @FUNCTION: kde4-base_src_prepare |
687 | # @FUNCTION: kde4-base_src_prepare |
| … | |
… | |
| 620 | # enable_selected_linguas() and enable_selected_doc_linguas() |
691 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 621 | # in kde4-functions.eclass(5) for further details. |
692 | # in kde4-functions.eclass(5) for further details. |
| 622 | kde4-base_src_prepare() { |
693 | kde4-base_src_prepare() { |
| 623 | debug-print-function ${FUNCNAME} "$@" |
694 | debug-print-function ${FUNCNAME} "$@" |
| 624 | |
695 | |
|
|
696 | # enable handbook and linguas only when not using live ebuild |
|
|
697 | |
| 625 | # Only enable selected languages, used for KDE extragear apps. |
698 | # Only enable selected languages, used for KDE extragear apps. |
| 626 | if [[ -n ${KDE_LINGUAS} ]]; then |
699 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 627 | enable_selected_linguas |
700 | enable_selected_linguas |
| 628 | fi |
701 | fi |
| 629 | |
702 | |
| 630 | # Enable/disable handbooks for kde4-base packages |
703 | # Enable/disable handbooks for kde4-base packages |
| 631 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
704 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
| 632 | # kdelibs inherits kde4-base but handle installing the handbook itself |
705 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 633 | if ! has kde4-meta ${INHERITED}; then |
706 | if ! has kde4-meta ${INHERITED} && has handbook ${IUSE//+}; then |
| 634 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
707 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
708 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
709 | # documentation in kde4-functions |
|
|
710 | : ${KDE_DOC_DIRS:=doc} |
|
|
711 | local dir |
|
|
712 | for dir in ${KDE_DOC_DIRS}; do |
|
|
713 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
714 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
715 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
716 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
717 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
718 | done |
|
|
719 | fi |
|
|
720 | else |
|
|
721 | enable_selected_doc_linguas |
|
|
722 | fi |
| 635 | fi |
723 | fi |
| 636 | |
724 | |
| 637 | # SCM bootstrap |
725 | # SCM bootstrap |
| 638 | if [[ ${BUILD_TYPE} = live ]]; then |
726 | if [[ ${BUILD_TYPE} = live ]]; then |
| 639 | if has subversion ${INHERITED}; then |
727 | case ${KDE_SCM} in |
| 640 | subversion_src_prepare |
728 | svn) subversion_src_prepare ;; |
| 641 | elif has git ${INHERITED}; then |
729 | esac |
| 642 | git_src_prepare |
|
|
| 643 | fi |
|
|
| 644 | fi |
730 | fi |
| 645 | |
731 | |
| 646 | # Apply patches |
732 | # Apply patches |
| 647 | base_src_prepare |
733 | base_src_prepare |
| 648 | |
734 | |
| … | |
… | |
| 654 | # Inject library dependencies |
740 | # Inject library dependencies |
| 655 | if [[ -n ${KMLOADLIBS} ]] ; then |
741 | if [[ -n ${KMLOADLIBS} ]] ; then |
| 656 | load_library_dependencies |
742 | load_library_dependencies |
| 657 | fi |
743 | fi |
| 658 | |
744 | |
| 659 | # Hack for manuals relying on outdated DTD |
745 | # Replace KDE4Workspace library targets |
|
|
746 | find "${S}" -name CMakeLists.txt \ |
|
|
747 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_TASKMANAGER_(LIBRARY|LIBS)\}/taskmanager/g' {} + \ |
|
|
748 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWORKSPACE_(LIBRARY|LIBS)\}/kworkspace/g' {} + \ |
|
|
749 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROLIFACES_(LIBRARY|LIBS)\}/solidcontrolifaces/g' {} + \ |
|
|
750 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROL_(LIBRARY|LIBS)\}/solidcontrol/g' {} + \ |
|
|
751 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PROCESSUI_(LIBRARY|LIBS)\}/processui/g' {} + \ |
|
|
752 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_LSOFUI_(LIBRARY|LIBS)\}/lsofui/g' {} + \ |
|
|
753 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PLASMACLOCK_(LIBRARY|LIBS)\}/plasmaclock/g' {} + \ |
|
|
754 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERYCLIENT_(LIBRARY|LIBS)\}/nepomukqueryclient/g' {} + \ |
|
|
755 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERY_(LIBRARY|LIBS)\}/nepomukquery/g' {} + \ |
|
|
756 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSCREENSAVER_(LIBRARY|LIBS)\}/kscreensaver/g' {} + \ |
|
|
757 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_WEATHERION_(LIBRARY|LIBS)\}/weather_ion/g' {} + \ |
|
|
758 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWINEFFECTS_(LIBRARY|LIBS)\}/kwineffects/g' {} + \ |
|
|
759 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KDECORATIONS_(LIBRARY|LIBS)\}/kdecorations/g' {} + \ |
|
|
760 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSGRD_(LIBRARY|LIBS)\}/ksgrd/g' {} + \ |
|
|
761 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KEPHAL_(LIBRARY|LIBS)\}/kephal/g' {} + \ |
|
|
762 | || die 'failed to replace KDE4Workspace library targets' |
|
|
763 | |
|
|
764 | # Hack for manuals relying on outdated DTD, only outside kde-base/koffice/... |
|
|
765 | if [[ -z ${KDEBASE} ]]; then |
| 660 | find "${S}" -name "*.docbook" \ |
766 | find "${S}" -name "*.docbook" \ |
| 661 | -exec sed -i -r \ |
767 | -exec sed -i -r \ |
| 662 | -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' {} + \ |
768 | -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' {} + \ |
| 663 | || die 'failed to fix DocBook variant version' |
769 | || die 'failed to fix DocBook variant version' |
|
|
770 | fi |
| 664 | } |
771 | } |
| 665 | |
772 | |
| 666 | # @FUNCTION: kde4-base_src_configure |
773 | # @FUNCTION: kde4-base_src_configure |
| 667 | # @DESCRIPTION: |
774 | # @DESCRIPTION: |
| 668 | # Function for configuring the build of KDE4 applications. |
775 | # Function for configuring the build of KDE4 applications. |
| … | |
… | |
| 694 | QTEST_COLORED=1 |
801 | QTEST_COLORED=1 |
| 695 | |
802 | |
| 696 | # Shadow existing /usr installations |
803 | # Shadow existing /usr installations |
| 697 | unset KDEDIRS |
804 | unset KDEDIRS |
| 698 | |
805 | |
| 699 | # Handle kdeprefix-ed KDE |
|
|
| 700 | if [[ ${KDEDIR} != /usr ]]; then |
|
|
| 701 | # Override some environment variables - only when kdeprefix is different, |
|
|
| 702 | # to not break ccache/distcc |
|
|
| 703 | PATH="${EKDEDIR}/bin:${PATH}" |
|
|
| 704 | |
|
|
| 705 | # Append library search path |
|
|
| 706 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
|
|
| 707 | |
|
|
| 708 | # Append full RPATH |
|
|
| 709 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
|
|
| 710 | |
|
|
| 711 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
|
|
| 712 | # when more are present |
|
|
| 713 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
|
|
| 714 | fi |
|
|
| 715 | |
|
|
| 716 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
806 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
| 717 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
807 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/$(get_libdir)/qt4) |
| 718 | #kde-config -path data unavailable when cross-compiling |
808 | #kde-config -path data unavailable when cross-compiling |
| 719 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
809 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
| 720 | |
810 | |
| 721 | # Handle kdeprefix in application itself |
|
|
| 722 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
|
|
| 723 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
811 | # sysconf needs to be /etc, not /usr/etc |
| 724 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
812 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
| 725 | fi |
|
|
| 726 | |
813 | |
| 727 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
814 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 728 | mycmakeargs=(${mycmakeargs}) |
815 | mycmakeargs=(${mycmakeargs}) |
| 729 | fi |
816 | fi |
| 730 | |
817 | |
| … | |
… | |
| 751 | # Override this value, set in kde4-base_src_configure() |
838 | # Override this value, set in kde4-base_src_configure() |
| 752 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
839 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 753 | cmake-utils_src_configure |
840 | cmake-utils_src_configure |
| 754 | kde4-base_src_compile |
841 | kde4-base_src_compile |
| 755 | |
842 | |
|
|
843 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
844 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
845 | # emerge or on the tinderbox. |
|
|
846 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
847 | unset DBUS_SESSION_BUS_ADDRESS |
|
|
848 | |
|
|
849 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
850 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
851 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
|
|
852 | # surprise- we are already INSIDE virtualmake!!! |
|
|
853 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
854 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
855 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
856 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
857 | cmake-utils_src_test |
|
|
858 | else |
|
|
859 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
|
|
860 | fi |
|
|
861 | else |
| 756 | cmake-utils_src_test |
862 | cmake-utils_src_test |
|
|
863 | fi |
| 757 | } |
864 | } |
| 758 | |
865 | |
| 759 | # @FUNCTION: kde4-base_src_install |
866 | # @FUNCTION: kde4-base_src_install |
| 760 | # @DESCRIPTION: |
867 | # @DESCRIPTION: |
| 761 | # Function for installing KDE4 applications. |
868 | # Function for installing KDE4 applications. |
| 762 | kde4-base_src_install() { |
869 | kde4-base_src_install() { |
| 763 | debug-print-function ${FUNCNAME} "$@" |
870 | debug-print-function ${FUNCNAME} "$@" |
| 764 | |
|
|
| 765 | # Prefix support, for usage in ebuilds |
|
|
| 766 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 767 | ED=${D} |
|
|
| 768 | fi |
|
|
| 769 | |
871 | |
| 770 | if [[ -n ${KMSAVELIBS} ]] ; then |
872 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 771 | install_library_dependencies |
873 | install_library_dependencies |
| 772 | fi |
874 | fi |
| 773 | |
875 | |
| 774 | # Install common documentation of KDE4 applications |
876 | # Install common documentation of KDE4 applications |
| 775 | local doc |
877 | local doc |
| 776 | if ! has kde4-meta ${INHERITED}; then |
878 | if ! has kde4-meta ${INHERITED}; then |
| 777 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
879 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 778 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
880 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 779 | done |
881 | done |
| 780 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
882 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 781 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
883 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
| 782 | done |
884 | done |
| 783 | fi |
885 | fi |
| 784 | |
886 | |
| 785 | cmake-utils_src_install |
887 | cmake-utils_src_install |
|
|
888 | |
|
|
889 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
|
|
890 | # because then khelpcenter can't find the docs |
|
|
891 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
|
|
892 | docompress -x ${PREFIX}/share/doc/HTML |
|
|
893 | } |
|
|
894 | |
|
|
895 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
896 | # @DESCRIPTION: |
|
|
897 | # Function storing icon caches |
|
|
898 | kde4-base_pkg_preinst() { |
|
|
899 | debug-print-function ${FUNCNAME} "$@" |
|
|
900 | |
|
|
901 | gnome2_icon_savelist |
| 786 | } |
902 | } |
| 787 | |
903 | |
| 788 | # @FUNCTION: kde4-base_pkg_postinst |
904 | # @FUNCTION: kde4-base_pkg_postinst |
| 789 | # @DESCRIPTION: |
905 | # @DESCRIPTION: |
| 790 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
906 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 791 | kde4-base_pkg_postinst() { |
907 | kde4-base_pkg_postinst() { |
| 792 | debug-print-function ${FUNCNAME} "$@" |
908 | debug-print-function ${FUNCNAME} "$@" |
| 793 | |
909 | |
|
|
910 | gnome2_icon_cache_update |
|
|
911 | fdo-mime_desktop_database_update |
|
|
912 | fdo-mime_mime_database_update |
| 794 | buildsycoca |
913 | buildsycoca |
| 795 | |
914 | |
| 796 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
915 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 797 | echo |
916 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 798 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
| 799 | einfo "Use it at your own risk." |
|
|
| 800 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
| 801 | echo |
|
|
| 802 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
| 803 | # warning about kdeprefix for non-live users |
|
|
| 804 | echo |
|
|
| 805 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
| 806 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
| 807 | ewarn "with KDE update strategies." |
|
|
| 808 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
| 809 | ewarn "take responsibilities for dead kittens." |
|
|
| 810 | echo |
|
|
| 811 | fi |
|
|
| 812 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
| 813 | # warn about not supported approach |
|
|
| 814 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
| 815 | echo |
917 | echo |
|
|
918 | ewarn "WARNING! you have kdeenable final useflag enabled." |
|
|
919 | ewarn "This useflag needs to be enabled on ALL kde using packages and" |
|
|
920 | ewarn "is known to cause issues." |
|
|
921 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
922 | ewarn "take responsibilities for dead kittens." |
|
|
923 | echo |
|
|
924 | fi |
|
|
925 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
926 | echo |
|
|
927 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
928 | einfo "Use it at your own risk." |
|
|
929 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
930 | echo |
|
|
931 | fi |
|
|
932 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
933 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
934 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
935 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
936 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
937 | echo |
| 816 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
938 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
| 817 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
939 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
| 818 | ewarn "With this setting you are unsupported by KDE team." |
940 | ewarn "With this setting you are unsupported by KDE team." |
| 819 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
941 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
942 | fi |
| 820 | fi |
943 | fi |
| 821 | fi |
944 | fi |
| 822 | } |
945 | } |
| 823 | |
946 | |
| 824 | # @FUNCTION: kde4-base_pkg_postrm |
947 | # @FUNCTION: kde4-base_pkg_postrm |
| 825 | # @DESCRIPTION: |
948 | # @DESCRIPTION: |
| 826 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
949 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 827 | kde4-base_pkg_postrm() { |
950 | kde4-base_pkg_postrm() { |
| 828 | debug-print-function ${FUNCNAME} "$@" |
951 | debug-print-function ${FUNCNAME} "$@" |
| 829 | |
952 | |
|
|
953 | gnome2_icon_cache_update |
|
|
954 | fdo-mime_desktop_database_update |
|
|
955 | fdo-mime_mime_database_update |
| 830 | buildsycoca |
956 | buildsycoca |
| 831 | } |
957 | } |