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