| 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.69 2010/09/09 17:02:30 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.95 2011/06/06 18:42:55 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]*) SLOT="4.6" ;; |
|
|
| 66 | 4.5* | 4.4.[6-9]*) SLOT="4.5" ;; |
|
|
| 67 | 4.4* | 4.3.[6-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'. |
| … | |
… | |
| 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 | |
135 | |
| 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 | |
|
|
| 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'. |
| 138 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
140 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
| 139 | |
141 | |
| 140 | # @ECLASS-VARIABLE: KDE_REQUIRED |
142 | # @ECLASS-VARIABLE: KDE_REQUIRED |
| 141 | # @DESCRIPTION: |
143 | # @DESCRIPTION: |
| 142 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
144 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
| 143 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
145 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
| 144 | # If set to always or optional, KDE_MINIMAL may be overriden as well. |
146 | # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well. |
| 145 | # Note that for kde-base packages this variable is fixed to 'always'. |
147 | # Note that for kde-base packages this variable is fixed to 'always'. |
| 146 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
148 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
| 147 | |
149 | |
| 148 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
150 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
| 149 | # @DESCRIPTION: |
151 | # @DESCRIPTION: |
| 150 | # Set to enable handbook in application. It adds +handbook to IUSE, handbook dirs |
152 | # Set to enable handbook in application. Possible values are 'always', 'optional' |
|
|
153 | # (handbook USE flag) and 'never'. |
|
|
154 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
155 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
| 151 | # to KMEXTRA and ensures buildtime and runtime dependencies. |
156 | # ensures buildtime and runtime dependencies. |
| 152 | [[ -n ${KDE_HANDBOOK} ]] && IUSE+=" +handbook" |
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 |
| 153 | |
169 | |
| 154 | # Setup packages inheriting this eclass |
170 | # Setup packages inheriting this eclass |
| 155 | case ${KDEBASE} in |
171 | case ${KDEBASE} in |
| 156 | kde-base) |
172 | kde-base) |
| 157 | HOMEPAGE="http://www.kde.org/" |
173 | HOMEPAGE="http://www.kde.org/" |
| … | |
… | |
| 186 | ;; |
202 | ;; |
| 187 | esac |
203 | esac |
| 188 | |
204 | |
| 189 | # @ECLASS-VARIABLE: QT_MINIMAL |
205 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 190 | # @DESCRIPTION: |
206 | # @DESCRIPTION: |
| 191 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
207 | # Determine version of qt we enforce as minimal for the package. |
| 192 | # 4.6.0 for 4.4 and 4.6.3 for 4.5 and later |
|
|
| 193 | if slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
208 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
|
|
209 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
|
|
210 | else |
| 194 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
211 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
| 195 | else |
|
|
| 196 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
|
|
| 197 | fi |
212 | fi |
|
|
213 | |
|
|
214 | # Declarative dependencies |
|
|
215 | qtdeclarativedepend=" |
|
|
216 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
|
|
217 | " |
|
|
218 | case ${DECLARATIVE_REQUIRED} in |
|
|
219 | always) |
|
|
220 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
|
|
221 | ;; |
|
|
222 | optional) |
|
|
223 | IUSE+=" declarative" |
|
|
224 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
|
|
225 | ;; |
|
|
226 | *) ;; |
|
|
227 | esac |
|
|
228 | unset qtdeclarativedepend |
|
|
229 | |
|
|
230 | # QtHelp dependencies |
|
|
231 | qthelpdepend=" |
|
|
232 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
233 | " |
|
|
234 | case ${QTHELP_REQUIRED} in |
|
|
235 | always) |
|
|
236 | COMMONDEPEND+=" ${qthelpdepend}" |
|
|
237 | ;; |
|
|
238 | optional) |
|
|
239 | IUSE+=" qthelp" |
|
|
240 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
241 | ;; |
|
|
242 | esac |
|
|
243 | unset qthelpdepend |
| 198 | |
244 | |
| 199 | # OpenGL dependencies |
245 | # OpenGL dependencies |
| 200 | qtopengldepend=" |
246 | qtopengldepend=" |
| 201 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
247 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
| 202 | " |
248 | " |
| … | |
… | |
| 226 | ;; |
272 | ;; |
| 227 | *) ;; |
273 | *) ;; |
| 228 | esac |
274 | esac |
| 229 | unset qtmultimediadepend |
275 | unset qtmultimediadepend |
| 230 | |
276 | |
| 231 | # WebKit dependencies |
|
|
| 232 | case ${KDE_REQUIRED} in |
|
|
| 233 | always) |
|
|
| 234 | qtwebkitusedeps="[kde]" |
|
|
| 235 | ;; |
|
|
| 236 | optional) |
|
|
| 237 | qtwebkitusedeps="[kde?]" |
|
|
| 238 | ;; |
|
|
| 239 | *) ;; |
|
|
| 240 | esac |
|
|
| 241 | qtwebkitdepend=" |
|
|
| 242 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
|
|
| 243 | " |
|
|
| 244 | unset qtwebkitusedeps |
|
|
| 245 | case ${WEBKIT_REQUIRED} in |
|
|
| 246 | always) |
|
|
| 247 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
| 248 | ;; |
|
|
| 249 | optional) |
|
|
| 250 | IUSE+=" webkit" |
|
|
| 251 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
| 252 | ;; |
|
|
| 253 | *) ;; |
|
|
| 254 | esac |
|
|
| 255 | unset qtwebkitdepend |
|
|
| 256 | |
|
|
| 257 | # CppUnit dependencies |
277 | # CppUnit dependencies |
| 258 | cppuintdepend=" |
278 | cppuintdepend=" |
| 259 | dev-util/cppunit |
279 | dev-util/cppunit |
| 260 | " |
280 | " |
| 261 | case ${CPPUNIT_REQUIRED} in |
281 | case ${CPPUNIT_REQUIRED} in |
| … | |
… | |
| 268 | ;; |
288 | ;; |
| 269 | *) ;; |
289 | *) ;; |
| 270 | esac |
290 | esac |
| 271 | unset cppuintdepend |
291 | unset cppuintdepend |
| 272 | |
292 | |
|
|
293 | |
|
|
294 | # WebKit use dependencies |
|
|
295 | case ${KDE_REQUIRED} in |
|
|
296 | always) |
|
|
297 | qtwebkitusedeps="[kde]" |
|
|
298 | ;; |
|
|
299 | optional) |
|
|
300 | qtwebkitusedeps="[kde?]" |
|
|
301 | ;; |
|
|
302 | *) ;; |
|
|
303 | esac |
| 273 | # KDE dependencies |
304 | # KDE dependencies |
| 274 | # Qt accessibility classes are needed in various places, bug 325461 |
305 | # Qt accessibility classes are needed in various places, bug 325461 |
| 275 | kdecommondepend=" |
306 | kdecommondepend=" |
|
|
307 | dev-lang/perl |
| 276 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
308 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| 277 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
309 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
| 278 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
310 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 279 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
311 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 280 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
312 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| 281 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
313 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
| 282 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
314 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
315 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
| 283 | !aqua? ( |
316 | !aqua? ( |
| 284 | x11-libs/libXext |
317 | x11-libs/libXext |
| 285 | x11-libs/libXt |
318 | x11-libs/libXt |
| 286 | x11-libs/libXxf86vm |
319 | x11-libs/libXxf86vm |
|
|
320 | x11-libs/libXcomposite |
| 287 | ) |
321 | ) |
| 288 | " |
322 | " |
| 289 | #perl is not needed on host (+ difficult crosscompilation) |
|
|
| 290 | tc-is-cross-compiler || kdecommondepend+=" dev-lang/perl" |
|
|
| 291 | |
323 | |
| 292 | if [[ ${PN} != kdelibs ]]; then |
324 | if [[ ${PN} != kdelibs ]]; then |
| 293 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
| 294 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
325 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| 295 | else |
|
|
| 296 | kdecommondepend+=" |
|
|
| 297 | >=kde-base/kdelibs-${KDE_MINIMAL} |
|
|
| 298 | " |
|
|
| 299 | if [[ ${KDEBASE} = kdevelop ]]; then |
326 | if [[ ${KDEBASE} = kdevelop ]]; then |
| 300 | if [[ ${PN} != kdevplatform ]]; then |
327 | if [[ ${PN} != kdevplatform ]]; then |
| 301 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
328 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
| 302 | # @DESCRIPTION: |
329 | # @DESCRIPTION: |
| 303 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
330 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
| 304 | # Applies to KDEBASE=kdevelop only. |
331 | # Applies to KDEBASE=kdevelop only. |
| 305 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
332 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
| 306 | case ${KDEVPLATFORM_REQUIRED} in |
333 | case ${KDEVPLATFORM_REQUIRED} in |
| 307 | always) |
334 | always) |
| 308 | kdecommondepend+=" |
335 | kdecommondepend+=" |
| 309 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
336 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
| 310 | " |
337 | " |
| 311 | ;; |
338 | ;; |
| 312 | *) ;; |
339 | *) ;; |
| 313 | esac |
340 | esac |
| 314 | fi |
|
|
| 315 | fi |
341 | fi |
| 316 | fi |
342 | fi |
| 317 | fi |
343 | fi |
|
|
344 | |
| 318 | kdedepend=" |
345 | kdedepend=" |
| 319 | dev-util/automoc |
346 | dev-util/automoc |
| 320 | dev-util/pkgconfig |
347 | dev-util/pkgconfig |
| 321 | !aqua? ( |
348 | !aqua? ( |
| 322 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
349 | >=x11-libs/libXtst-1.1.0 |
| 323 | x11-proto/xf86vidmodeproto |
350 | x11-proto/xf86vidmodeproto |
| 324 | ) |
351 | ) |
| 325 | " |
352 | " |
| 326 | |
353 | |
| 327 | # Handbook handling - dependencies |
|
|
| 328 | if [[ -n ${KDE_HANDBOOK} ]]; then |
|
|
| 329 | kdedepend+=" |
354 | kderdepend="" |
| 330 | handbook? ( |
355 | |
| 331 | app-text/docbook-xml-dtd:4.2 |
356 | # all packages needs oxygen icons for basic iconset |
| 332 | app-text/docbook-xsl-stylesheets |
|
|
| 333 | ) |
|
|
| 334 | " |
|
|
| 335 | if [[ ${PN} != kdelibs ]]; then |
357 | if [[ ${PN} != oxygen-icons ]]; then |
| 336 | if [[ ${KDEBASE} = kde-base ]]; then |
358 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
| 337 | PDEPEND+=" handbook? ( $(add_kdebase_dep kdelibs 'handbook') )" |
|
|
| 338 | else |
|
|
| 339 | PDEPEND+=" handbook? ( >=kde-base/kdelibs-${KDE_MINIMAL}[handbook] )" |
|
|
| 340 | fi |
|
|
| 341 | elif [[ ${PN} != khelpcenter ]]; then |
|
|
| 342 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
| 343 | PDEPEND+=" handbook? ( $(add_kdebase_dep khelpcenter 'handbook') )" |
|
|
| 344 | else |
|
|
| 345 | PDEPEND+=" handbook? ( >=kde-base/khelpcenter-${KDE_MINIMAL}[handbook] )" |
|
|
| 346 | fi |
|
|
| 347 | fi |
|
|
| 348 | fi |
359 | fi |
|
|
360 | |
|
|
361 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
362 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
363 | for _lingua in ${KDE_LINGUAS}; do |
|
|
364 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
365 | # but only for selected ones. |
|
|
366 | # this can't be done on one line because if user doesn't use any localisation |
|
|
367 | # then he is probably not interested in kde-l10n at all. |
|
|
368 | kderdepend+=" |
|
|
369 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
|
|
370 | " |
|
|
371 | done |
|
|
372 | unset _lingua |
|
|
373 | fi |
|
|
374 | |
|
|
375 | kdehandbookdepend=" |
|
|
376 | app-text/docbook-xml-dtd:4.2 |
|
|
377 | app-text/docbook-xsl-stylesheets |
|
|
378 | " |
|
|
379 | kdehandbookrdepend=" |
|
|
380 | $(add_kdebase_dep kdelibs 'handbook') |
|
|
381 | " |
|
|
382 | case ${KDE_HANDBOOK} in |
|
|
383 | always) |
|
|
384 | kdedepend+=" ${kdehandbookdepend}" |
|
|
385 | [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}" |
|
|
386 | ;; |
|
|
387 | optional) |
|
|
388 | IUSE+=" +handbook" |
|
|
389 | kdedepend+=" handbook? ( ${kdehandbookdepend} )" |
|
|
390 | [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )" |
|
|
391 | ;; |
|
|
392 | *) ;; |
|
|
393 | esac |
|
|
394 | unset kdehandbookdepend kdehandbookrdepend |
| 349 | |
395 | |
| 350 | case ${KDE_REQUIRED} in |
396 | case ${KDE_REQUIRED} in |
| 351 | always) |
397 | always) |
| 352 | IUSE+=" aqua" |
398 | IUSE+=" aqua" |
| 353 | COMMONDEPEND+=" ${kdecommondepend}" |
399 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}" |
| 354 | DEPEND+=" ${kdedepend}" |
400 | [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}" |
|
|
401 | [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}" |
| 355 | ;; |
402 | ;; |
| 356 | optional) |
403 | optional) |
| 357 | IUSE+=" aqua kde" |
404 | IUSE+=" aqua kde" |
| 358 | COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
405 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
| 359 | DEPEND+=" kde? ( ${kdedepend} )" |
406 | [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )" |
|
|
407 | [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )" |
| 360 | ;; |
408 | ;; |
| 361 | *) ;; |
409 | *) ;; |
| 362 | esac |
410 | esac |
| 363 | |
411 | |
| 364 | unset kdecommondepend kdedepend |
412 | unset kdecommondepend kdedepend kderdepend |
| 365 | |
413 | |
| 366 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
414 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
| 367 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
415 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
| 368 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
416 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
| 369 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: PDEPEND is ${PDEPEND}" |
|
|
| 370 | |
417 | |
| 371 | # Accumulate dependencies set by this eclass |
418 | # Accumulate dependencies set by this eclass |
| 372 | DEPEND+=" ${COMMONDEPEND}" |
419 | DEPEND+=" ${COMMONDEPEND}" |
| 373 | RDEPEND+=" ${COMMONDEPEND}" |
420 | RDEPEND+=" ${COMMONDEPEND}" |
| 374 | unset COMMONDEPEND |
421 | unset COMMONDEPEND |
| 375 | |
422 | |
| 376 | # Add experimental kdeenablefinal, disabled by default |
423 | # Add experimental kdeenablefinal, masked by default |
| 377 | IUSE+=" kdeenablefinal" |
424 | IUSE+=" kdeenablefinal" |
| 378 | |
425 | |
| 379 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
426 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 380 | # koffice ebuild, the URI should be set in the ebuild itself |
427 | # koffice ebuild, the URI should be set in the ebuild itself |
| 381 | case ${BUILD_TYPE} in |
428 | _calculate_src_uri() { |
| 382 | live) |
429 | debug-print-function ${FUNCNAME} "$@" |
|
|
430 | |
|
|
431 | local _kmname _kmname_pv |
|
|
432 | |
|
|
433 | # we calculate URI only for known KDEBASE modules |
|
|
434 | [[ -n ${KDEBASE} ]] || return |
|
|
435 | |
|
|
436 | # calculate tarball module name |
|
|
437 | if [[ -n ${KMNAME} ]]; then |
|
|
438 | # fixup kdebase-apps name |
|
|
439 | case ${KMNAME} in |
|
|
440 | kdebase-apps) |
|
|
441 | _kmname="kdebase" ;; |
|
|
442 | *) |
|
|
443 | _kmname="${KMNAME}" ;; |
|
|
444 | esac |
|
|
445 | else |
|
|
446 | _kmname=${PN} |
|
|
447 | fi |
|
|
448 | _kmname_pv="${_kmname}-${PV}" |
|
|
449 | case ${KDEBASE} in |
|
|
450 | kde-base) |
|
|
451 | case ${PV} in |
|
|
452 | 4.[456].8[05] | 4.[456].9[023568]) |
|
|
453 | # Unstable KDE SC releases |
|
|
454 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
455 | # KDEPIM IS SPECIAL |
|
|
456 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/unstable/kdepim/${PV}/${_kmname_pv}.tar.bz2" |
|
|
457 | ;; |
|
|
458 | 4.4.[6789] | 4.4.1?*) |
|
|
459 | # Stable kdepim releases |
|
|
460 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
461 | ;; |
|
|
462 | *) |
|
|
463 | # Stable KDE SC releases |
|
|
464 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
465 | ;; |
|
|
466 | esac |
|
|
467 | ;; |
|
|
468 | koffice) |
|
|
469 | case ${PV} in |
|
|
470 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
471 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
472 | esac |
|
|
473 | ;; |
|
|
474 | kdevelop) |
|
|
475 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
476 | ;; |
|
|
477 | esac |
|
|
478 | } |
|
|
479 | |
|
|
480 | _calculate_live_repo() { |
|
|
481 | debug-print-function ${FUNCNAME} "$@" |
|
|
482 | |
| 383 | SRC_URI="" |
483 | SRC_URI="" |
| 384 | if has subversion ${INHERITED}; then |
484 | case ${KDE_SCM} in |
|
|
485 | svn) |
| 385 | # Determine branch URL based on live type |
486 | # Determine branch URL based on live type |
| 386 | local branch_prefix |
487 | local branch_prefix |
| 387 | case ${PV} in |
488 | case ${PV} in |
| 388 | 9999*) |
489 | 9999*) |
| 389 | # trunk |
490 | # trunk |
| … | |
… | |
| 450 | # @DESCRIPTION: |
551 | # @DESCRIPTION: |
| 451 | # This variable is used for specifying the timeout between svn synces |
552 | # This variable is used for specifying the timeout between svn synces |
| 452 | # for kde-base and koffice modules. Does not affect misc apps. |
553 | # for kde-base and koffice modules. Does not affect misc apps. |
| 453 | # Default value is 1 hour. |
554 | # Default value is 1 hour. |
| 454 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
555 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
| 455 | elif has git ${INHERITED}; then |
|
|
| 456 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
| 457 | KMMODULE="${PN}" |
|
|
| 458 | fi |
|
|
| 459 | case ${KDEBASE} in |
|
|
| 460 | kdevelop) |
|
|
| 461 | EGIT_REPO_URI="git://gitorious.org/${KMNAME}/${KMMODULE}.git" |
|
|
| 462 | ;; |
|
|
| 463 | esac |
|
|
| 464 | fi |
|
|
| 465 | ;; |
556 | ;; |
| 466 | *) |
557 | git) |
|
|
558 | local _kmname |
|
|
559 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
560 | # @DESCRIPTION: |
|
|
561 | # This variable allows easy overriding of default kde mirror service |
|
|
562 | # (anongit) with anything else you might want to use. |
|
|
563 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
564 | |
|
|
565 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
566 | # @DESCRIPTION: |
|
|
567 | # This variable allows overriding of default repository |
|
|
568 | # name. Specify only if this differ from PN and KMNAME. |
| 467 | if [[ -n ${KDEBASE} ]]; then |
569 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
570 | # the repository and kmname different |
|
|
571 | _kmname=${EGIT_REPONAME} |
| 468 | if [[ -n ${KMNAME} ]]; then |
572 | elif [[ -n ${KMNAME} ]]; then |
| 469 | case ${KMNAME} in |
|
|
| 470 | kdebase-apps) |
|
|
| 471 | _kmname="kdebase" ;; |
|
|
| 472 | *) |
|
|
| 473 | _kmname="${KMNAME}" ;; |
573 | _kmname=${KMNAME} |
| 474 | esac |
|
|
| 475 | else |
574 | else |
| 476 | _kmname=${PN} |
575 | _kmname=${PN} |
| 477 | fi |
576 | fi |
| 478 | _kmname_pv="${_kmname}-${PV}" |
577 | |
| 479 | case ${KDEBASE} in |
578 | # default branching |
| 480 | kde-base) |
|
|
| 481 | case ${PV} in |
579 | case ${PV} in |
| 482 | 4.[45].8[05] | 4.[45].9[02568]) |
580 | 9999*) ;; |
| 483 | # Normally packed unstable releases |
581 | *) |
| 484 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
582 | # set EGIT_BRANCH and EGIT_COMMIT to ${SLOT} |
| 485 | 4.[45].[6-9]*) |
583 | case ${_kmname} in |
| 486 | # Repacked tarballs: need to depend on xz-utils to ensure that they can be unpacked |
584 | kdeplasma-addons | kdepim | kdepim-runtime | kdepimlibs | okular) |
| 487 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/src/${_kmname_pv}.tar.xz" |
585 | EGIT_BRANCH="${SLOT}" |
| 488 | DEPEND+=" app-arch/xz-utils" |
|
|
| 489 | ;; |
586 | ;; |
| 490 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
587 | marble) |
|
|
588 | EGIT_BRANCH="kde-${SLOT}" |
|
|
589 | ;; |
|
|
590 | *) EGIT_BRANCH="KDE/${SLOT}" ;; |
| 491 | esac |
591 | esac |
| 492 | ;; |
592 | ;; |
| 493 | koffice) |
|
|
| 494 | case ${PV} in |
|
|
| 495 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 496 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
| 497 | esac |
|
|
| 498 | ;; |
|
|
| 499 | kdevelop) |
|
|
| 500 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
| 501 | ;; |
|
|
| 502 | esac |
593 | esac |
| 503 | unset _kmname _kmname_pv |
594 | |
| 504 | fi |
595 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
|
|
596 | |
|
|
597 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
598 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
| 505 | ;; |
599 | ;; |
|
|
600 | esac |
|
|
601 | } |
|
|
602 | |
|
|
603 | case ${BUILD_TYPE} in |
|
|
604 | live) _calculate_live_repo ;; |
|
|
605 | *) _calculate_src_uri ;; |
| 506 | esac |
606 | esac |
| 507 | |
607 | |
| 508 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
608 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
| 509 | |
609 | |
| 510 | # @ECLASS-VARIABLE: PREFIX |
610 | # @ECLASS-VARIABLE: PREFIX |
| … | |
… | |
| 518 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
618 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
| 519 | # optional applications link |
619 | # optional applications link |
| 520 | kde4-base_pkg_setup() { |
620 | kde4-base_pkg_setup() { |
| 521 | debug-print-function ${FUNCNAME} "$@" |
621 | debug-print-function ${FUNCNAME} "$@" |
| 522 | |
622 | |
| 523 | # Prefix compat: |
623 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
| 524 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
624 | eerror "Sorry, kdeprefix support has been removed." |
| 525 | EPREFIX= |
625 | eerror "Please remove kdeprefix from your USE variable." |
| 526 | EROOT=${ROOT} |
626 | die "kdeprefix support has been removed" |
| 527 | fi |
627 | fi |
| 528 | |
628 | |
| 529 | # Append missing trailing slash character |
629 | if [[ ${CATEGORY}/${PN} != kde-base/kdelibs && ${CATEGORY}/${PN} != kde-base/kde-env ]] && \ |
| 530 | [[ ${EROOT} = */ ]] || EROOT+="/" |
630 | { [[ ${KDE_REQUIRED} == always ]] || { [[ ${KDE_REQUIRED} == optional ]] && use kde; }; } && \ |
|
|
631 | has_version kde-base/kdelibs[kdeprefix]; then |
|
|
632 | eerror "Sorry, kdeprefix support has been removed." |
|
|
633 | eerror "Please rebuild kdelibs without kdeprefix support." |
|
|
634 | die "kdeprefix support has been removed" |
|
|
635 | fi |
| 531 | |
636 | |
| 532 | # QA ebuilds |
637 | # QA ebuilds |
| 533 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
638 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
| 534 | |
639 | |
| 535 | # Don't set KDEHOME during compilation, it will cause access violations |
640 | # Don't set KDEHOME during compilation, it will cause access violations |
| 536 | unset KDEHOME |
641 | unset KDEHOME |
|
|
642 | |
|
|
643 | # Check if gcc compiler is fresh enough. |
|
|
644 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
|
|
645 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
|
|
646 | # executions consume quite some time. |
|
|
647 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
648 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
649 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
| 537 | |
650 | |
| 538 | if [[ ${KDEBASE} = kde-base ]]; then |
651 | if [[ ${KDEBASE} = kde-base ]]; then |
| 539 | if use kdeprefix; then |
652 | if use kdeprefix; then |
| 540 | KDEDIR=/usr/kde/${SLOT} |
653 | KDEDIR=/usr/kde/${SLOT} |
| 541 | else |
654 | else |
| … | |
… | |
| 584 | # This function unpacks the source tarballs for KDE4 applications. |
697 | # This function unpacks the source tarballs for KDE4 applications. |
| 585 | kde4-base_src_unpack() { |
698 | kde4-base_src_unpack() { |
| 586 | debug-print-function ${FUNCNAME} "$@" |
699 | debug-print-function ${FUNCNAME} "$@" |
| 587 | |
700 | |
| 588 | if [[ ${BUILD_TYPE} = live ]]; then |
701 | if [[ ${BUILD_TYPE} = live ]]; then |
| 589 | if has subversion ${INHERITED}; then |
702 | case ${KDE_SCM} in |
|
|
703 | svn) |
| 590 | migrate_store_dir |
704 | migrate_store_dir |
| 591 | subversion_src_unpack |
705 | subversion_src_unpack |
| 592 | elif has git ${INHERITED}; then |
|
|
| 593 | git_src_unpack |
|
|
| 594 | fi |
|
|
| 595 | elif [[ ${EAPI} == 2 ]]; then |
|
|
| 596 | local file |
|
|
| 597 | for file in ${A}; do |
|
|
| 598 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
|
|
| 599 | # directly, so we do it ourselves (using the exact same code as portage) |
|
|
| 600 | case ${file} in |
|
|
| 601 | *.tar.xz) |
|
|
| 602 | echo ">>> Unpacking ${file} to ${PWD}" |
|
|
| 603 | xz -dc "${DISTDIR}"/${file} | tar xof - |
|
|
| 604 | assert "failed unpacking ${file}" |
|
|
| 605 | ;; |
706 | ;; |
| 606 | *) |
707 | git) |
| 607 | unpack ${file} |
708 | git-2_src_unpack |
| 608 | ;; |
709 | ;; |
| 609 | esac |
710 | esac |
| 610 | done |
|
|
| 611 | else |
711 | else |
| 612 | # For EAPI >= 3, we can just use unpack() directly |
|
|
| 613 | unpack ${A} |
712 | unpack ${A} |
| 614 | fi |
713 | fi |
| 615 | } |
714 | } |
| 616 | |
715 | |
| 617 | # @FUNCTION: kde4-base_src_prepare |
716 | # @FUNCTION: kde4-base_src_prepare |
| … | |
… | |
| 621 | # enable_selected_linguas() and enable_selected_doc_linguas() |
720 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 622 | # in kde4-functions.eclass(5) for further details. |
721 | # in kde4-functions.eclass(5) for further details. |
| 623 | kde4-base_src_prepare() { |
722 | kde4-base_src_prepare() { |
| 624 | debug-print-function ${FUNCNAME} "$@" |
723 | debug-print-function ${FUNCNAME} "$@" |
| 625 | |
724 | |
|
|
725 | # enable handbook and linguas only when not using live ebuild |
|
|
726 | |
| 626 | # Only enable selected languages, used for KDE extragear apps. |
727 | # Only enable selected languages, used for KDE extragear apps. |
| 627 | if [[ -n ${KDE_LINGUAS} ]]; then |
728 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 628 | enable_selected_linguas |
729 | enable_selected_linguas |
| 629 | fi |
730 | fi |
| 630 | |
731 | |
| 631 | # Enable/disable handbooks for kde4-base packages |
732 | # Enable/disable handbooks for kde4-base packages |
| 632 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
733 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
| 633 | # kdelibs inherits kde4-base but handle installing the handbook itself |
734 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 634 | if ! has kde4-meta ${INHERITED}; then |
735 | if ! has kde4-meta ${INHERITED} && has handbook ${IUSE//+}; then |
| 635 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
736 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
737 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
738 | # documentation in kde4-functions |
|
|
739 | : ${KDE_DOC_DIRS:=doc} |
|
|
740 | local dir |
|
|
741 | for dir in ${KDE_DOC_DIRS}; do |
|
|
742 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
743 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
744 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
745 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
746 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
747 | done |
|
|
748 | fi |
|
|
749 | else |
|
|
750 | enable_selected_doc_linguas |
|
|
751 | fi |
| 636 | fi |
752 | fi |
| 637 | |
753 | |
| 638 | # SCM bootstrap |
754 | # SCM bootstrap |
| 639 | if [[ ${BUILD_TYPE} = live ]]; then |
755 | if [[ ${BUILD_TYPE} = live ]]; then |
| 640 | if has subversion ${INHERITED}; then |
756 | case ${KDE_SCM} in |
| 641 | subversion_src_prepare |
757 | svn) subversion_src_prepare ;; |
| 642 | elif has git ${INHERITED}; then |
758 | esac |
| 643 | git_src_prepare |
|
|
| 644 | fi |
|
|
| 645 | fi |
759 | fi |
| 646 | |
760 | |
| 647 | # Apply patches |
761 | # Apply patches |
| 648 | base_src_prepare |
762 | base_src_prepare |
| 649 | |
763 | |
| … | |
… | |
| 653 | fi |
767 | fi |
| 654 | |
768 | |
| 655 | # Inject library dependencies |
769 | # Inject library dependencies |
| 656 | if [[ -n ${KMLOADLIBS} ]] ; then |
770 | if [[ -n ${KMLOADLIBS} ]] ; then |
| 657 | load_library_dependencies |
771 | load_library_dependencies |
|
|
772 | fi |
|
|
773 | |
|
|
774 | # Replace KDE4Workspace library targets |
|
|
775 | find "${S}" -name CMakeLists.txt \ |
|
|
776 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_TASKMANAGER_(LIBRARY|LIBS)\}/taskmanager/g' {} + \ |
|
|
777 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWORKSPACE_(LIBRARY|LIBS)\}/kworkspace/g' {} + \ |
|
|
778 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROLIFACES_(LIBRARY|LIBS)\}/solidcontrolifaces/g' {} + \ |
|
|
779 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROL_(LIBRARY|LIBS)\}/solidcontrol/g' {} + \ |
|
|
780 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PROCESSUI_(LIBRARY|LIBS)\}/processui/g' {} + \ |
|
|
781 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_LSOFUI_(LIBRARY|LIBS)\}/lsofui/g' {} + \ |
|
|
782 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PLASMACLOCK_(LIBRARY|LIBS)\}/plasmaclock/g' {} + \ |
|
|
783 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERYCLIENT_(LIBRARY|LIBS)\}/nepomukqueryclient/g' {} + \ |
|
|
784 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERY_(LIBRARY|LIBS)\}/nepomukquery/g' {} + \ |
|
|
785 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSCREENSAVER_(LIBRARY|LIBS)\}/kscreensaver/g' {} + \ |
|
|
786 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_WEATHERION_(LIBRARY|LIBS)\}/weather_ion/g' {} + \ |
|
|
787 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWINEFFECTS_(LIBRARY|LIBS)\}/kwineffects/g' {} + \ |
|
|
788 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KDECORATIONS_(LIBRARY|LIBS)\}/kdecorations/g' {} + \ |
|
|
789 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSGRD_(LIBRARY|LIBS)\}/ksgrd/g' {} + \ |
|
|
790 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KEPHAL_(LIBRARY|LIBS)\}/kephal/g' {} + \ |
|
|
791 | || die 'failed to replace KDE4Workspace library targets' |
|
|
792 | |
|
|
793 | # Hack for manuals relying on outdated DTD, only outside kde-base/koffice/... |
|
|
794 | if [[ -z ${KDEBASE} ]]; then |
|
|
795 | find "${S}" -name "*.docbook" \ |
|
|
796 | -exec sed -i -r \ |
|
|
797 | -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' {} + \ |
|
|
798 | || die 'failed to fix DocBook variant version' |
| 658 | fi |
799 | fi |
| 659 | } |
800 | } |
| 660 | |
801 | |
| 661 | # @FUNCTION: kde4-base_src_configure |
802 | # @FUNCTION: kde4-base_src_configure |
| 662 | # @DESCRIPTION: |
803 | # @DESCRIPTION: |
| … | |
… | |
| 746 | # Override this value, set in kde4-base_src_configure() |
887 | # Override this value, set in kde4-base_src_configure() |
| 747 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
888 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 748 | cmake-utils_src_configure |
889 | cmake-utils_src_configure |
| 749 | kde4-base_src_compile |
890 | kde4-base_src_compile |
| 750 | |
891 | |
|
|
892 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
893 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
894 | # emerge or on the tinderbox. |
|
|
895 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
896 | unset DBUS_SESSION_BUS_ADDRESS |
|
|
897 | |
|
|
898 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
899 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
900 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
|
|
901 | # surprise- we are already INSIDE virtualmake!!! |
|
|
902 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
903 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
904 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
905 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
906 | cmake-utils_src_test |
|
|
907 | else |
|
|
908 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
|
|
909 | fi |
|
|
910 | else |
| 751 | cmake-utils_src_test |
911 | cmake-utils_src_test |
|
|
912 | fi |
| 752 | } |
913 | } |
| 753 | |
914 | |
| 754 | # @FUNCTION: kde4-base_src_install |
915 | # @FUNCTION: kde4-base_src_install |
| 755 | # @DESCRIPTION: |
916 | # @DESCRIPTION: |
| 756 | # Function for installing KDE4 applications. |
917 | # Function for installing KDE4 applications. |
| 757 | kde4-base_src_install() { |
918 | kde4-base_src_install() { |
| 758 | debug-print-function ${FUNCNAME} "$@" |
919 | debug-print-function ${FUNCNAME} "$@" |
| 759 | |
|
|
| 760 | # Prefix support, for usage in ebuilds |
|
|
| 761 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 762 | ED=${D} |
|
|
| 763 | fi |
|
|
| 764 | |
920 | |
| 765 | if [[ -n ${KMSAVELIBS} ]] ; then |
921 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 766 | install_library_dependencies |
922 | install_library_dependencies |
| 767 | fi |
923 | fi |
| 768 | |
924 | |
| 769 | # Install common documentation of KDE4 applications |
925 | # Install common documentation of KDE4 applications |
| 770 | local doc |
926 | local doc |
| 771 | if ! has kde4-meta ${INHERITED}; then |
927 | if ! has kde4-meta ${INHERITED}; then |
| 772 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
928 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 773 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
929 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 774 | done |
930 | done |
| 775 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
931 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 776 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
932 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
| 777 | done |
933 | done |
| 778 | fi |
934 | fi |
| 779 | |
935 | |
| 780 | cmake-utils_src_install |
936 | cmake-utils_src_install |
|
|
937 | |
|
|
938 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
|
|
939 | # because then khelpcenter can't find the docs |
|
|
940 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
|
|
941 | docompress -x ${PREFIX}/share/doc/HTML |
|
|
942 | } |
|
|
943 | |
|
|
944 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
945 | # @DESCRIPTION: |
|
|
946 | # Function storing icon caches |
|
|
947 | kde4-base_pkg_preinst() { |
|
|
948 | debug-print-function ${FUNCNAME} "$@" |
|
|
949 | |
|
|
950 | gnome2_icon_savelist |
| 781 | } |
951 | } |
| 782 | |
952 | |
| 783 | # @FUNCTION: kde4-base_pkg_postinst |
953 | # @FUNCTION: kde4-base_pkg_postinst |
| 784 | # @DESCRIPTION: |
954 | # @DESCRIPTION: |
| 785 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
955 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 786 | kde4-base_pkg_postinst() { |
956 | kde4-base_pkg_postinst() { |
| 787 | debug-print-function ${FUNCNAME} "$@" |
957 | debug-print-function ${FUNCNAME} "$@" |
| 788 | |
958 | |
|
|
959 | gnome2_icon_cache_update |
|
|
960 | fdo-mime_desktop_database_update |
|
|
961 | fdo-mime_mime_database_update |
| 789 | buildsycoca |
962 | buildsycoca |
| 790 | |
963 | |
| 791 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
964 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
965 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 792 | echo |
966 | echo |
|
|
967 | ewarn "WARNING! you have kdeenable final useflag enabled." |
|
|
968 | ewarn "This useflag needs to be enabled on ALL kde using packages and" |
|
|
969 | ewarn "is known to cause issues." |
|
|
970 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
971 | ewarn "take responsibilities for dead kittens." |
|
|
972 | echo |
|
|
973 | fi |
|
|
974 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
975 | echo |
| 793 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
976 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
| 794 | einfo "Use it at your own risk." |
977 | einfo "Use it at your own risk." |
| 795 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
978 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
| 796 | echo |
979 | echo |
| 797 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
980 | fi |
| 798 | # warning about kdeprefix for non-live users |
981 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
982 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
983 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
984 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
985 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
986 | echo |
|
|
987 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
988 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
989 | ewarn "With this setting you are unsupported by KDE team." |
|
|
990 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
991 | fi |
|
|
992 | fi |
|
|
993 | fi |
|
|
994 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
995 | # warning about kdeprefix |
| 799 | echo |
996 | echo |
| 800 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
997 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
| 801 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
998 | eerror "This setting will be removed on or about 2011-06-06." |
| 802 | ewarn "with KDE update strategies." |
|
|
| 803 | ewarn "You are using this setup at your own risk and the kde team does not" |
999 | ewarn "You are using this setup at your own risk and the kde team does not" |
| 804 | ewarn "take responsibilities for dead kittens." |
1000 | ewarn "take responsibilities for dead kittens." |
| 805 | echo |
1001 | echo |
| 806 | fi |
1002 | fi |
| 807 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
| 808 | # warn about not supported approach |
|
|
| 809 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
| 810 | echo |
|
|
| 811 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
| 812 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
| 813 | ewarn "With this setting you are unsupported by KDE team." |
|
|
| 814 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
| 815 | fi |
|
|
| 816 | fi |
|
|
| 817 | } |
1003 | } |
| 818 | |
1004 | |
| 819 | # @FUNCTION: kde4-base_pkg_postrm |
1005 | # @FUNCTION: kde4-base_pkg_postrm |
| 820 | # @DESCRIPTION: |
1006 | # @DESCRIPTION: |
| 821 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
1007 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 822 | kde4-base_pkg_postrm() { |
1008 | kde4-base_pkg_postrm() { |
| 823 | debug-print-function ${FUNCNAME} "$@" |
1009 | debug-print-function ${FUNCNAME} "$@" |
| 824 | |
1010 | |
|
|
1011 | gnome2_icon_cache_update |
|
|
1012 | fdo-mime_desktop_database_update |
|
|
1013 | fdo-mime_mime_database_update |
| 825 | buildsycoca |
1014 | buildsycoca |
| 826 | } |
1015 | } |