| 1 | # Copyright 2007-2008 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.4 2008/03/10 21:41:56 zlin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.69 2010/09/09 17:02:30 reavertm 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.0 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 monolithic 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: This eclass uses the SLOT dependencies from EAPI="1" or compatible, |
13 | # NOTE: KDE 4 ebuilds by default define EAPI="2", this can be redefined but |
| 14 | # hence you must define EAPI="1" in the ebuild, before inheriting any eclasses. |
14 | # eclass will fail with version older than 2. |
| 15 | |
15 | |
| 16 | inherit base eutils multilib cmake-utils kde4-functions |
16 | inherit kde4-functions base eutils |
| 17 | |
17 | |
|
|
18 | get_build_type |
|
|
19 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
20 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
21 | inherit git |
|
|
22 | else |
|
|
23 | inherit subversion |
|
|
24 | fi |
|
|
25 | fi |
|
|
26 | |
|
|
27 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
|
|
30 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
|
|
31 | # src_configure, src_compile, src_test and src_install. |
|
|
32 | # Defaults to 'always'. |
|
|
33 | : ${CMAKE_REQUIRED:=always} |
|
|
34 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
|
|
35 | buildsystem_eclass="cmake-utils" |
|
|
36 | export_fns="src_configure src_compile src_test src_install" |
|
|
37 | fi |
|
|
38 | |
|
|
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 |
|
|
51 | # @DESCRIPTION: |
|
|
52 | # 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 |
|
|
54 | # 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. |
|
|
57 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
|
|
58 | |
|
|
59 | # Set slot for packages in kde-base, koffice and kdevelop |
|
|
60 | case ${KDEBASE} in |
|
|
61 | kde-base) |
|
|
62 | # Determine SLOT from PVs |
|
|
63 | case ${PV} in |
|
|
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}" |
|
|
72 | ;; |
|
|
73 | koffice) |
|
|
74 | SLOT="2" |
|
|
75 | ;; |
|
|
76 | kdevelop) |
|
|
77 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
78 | # @ECLASS-VARIABLE: KDEVELOP_VERSION |
|
|
79 | # @DESCRIPTION: |
|
|
80 | # Specifies KDevelop version. Default is 4.0.0 for tagged packages and 9999 for live packages. |
|
|
81 | # Applies to KDEBASE=kdevelop only. |
|
|
82 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-9999}" |
|
|
83 | # @ECLASS-VARIABLE: KDEVPLATFORM_VERSION |
|
|
84 | # @DESCRIPTION: |
|
|
85 | # Specifies KDevplatform version. Default is 1.0.0 for tagged packages and 9999 for live packages. |
|
|
86 | # Applies to KDEBASE=kdevelop only. |
|
|
87 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-9999}" |
|
|
88 | else |
|
|
89 | case ${PN} in |
|
|
90 | kdevelop|quanta) |
|
|
91 | KDEVELOP_VERSION=${PV} |
|
|
92 | KDEVPLATFORM_VERSION="$(($(get_major_version)-3)).$(get_after_major_version)" |
|
|
93 | ;; |
|
|
94 | kdevplatform) |
|
|
95 | KDEVELOP_VERSION="$(($(get_major_version)+3)).$(get_after_major_version)" |
|
|
96 | KDEVPLATFORM_VERSION=${PV} |
|
|
97 | ;; |
|
|
98 | *) |
|
|
99 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.0.0}" |
|
|
100 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-1.0.0}" |
|
|
101 | esac |
|
|
102 | fi |
|
|
103 | SLOT="4" |
|
|
104 | ;; |
|
|
105 | esac |
|
|
106 | |
|
|
107 | slot_is_at_least 4.5 ${KDE_MINIMAL} && CMAKE_MIN_VERSION="2.8.1" |
|
|
108 | |
|
|
109 | inherit ${buildsystem_eclass} |
|
|
110 | |
| 18 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
111 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
| 19 | |
112 | |
| 20 | COMMONDEPEND="|| ( ( |
113 | unset buildsystem_eclass |
| 21 | x11-libs/qt-core:4 |
114 | unset export_fns |
| 22 | x11-libs/qt-gui:4 |
|
|
| 23 | x11-libs/qt-qt3support:4 |
|
|
| 24 | x11-libs/qt-svg:4 |
|
|
| 25 | x11-libs/qt-test:4 ) |
|
|
| 26 | >=x11-libs/qt-4.3.3:4 )" |
|
|
| 27 | |
115 | |
| 28 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
116 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
| 29 | # @DESCRIPTION: |
117 | # @DESCRIPTION: |
| 30 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
| 31 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 32 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
120 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
| 33 | |
121 | |
| 34 | OPENGLDEPEND="|| ( x11-libs/qt-opengl:4 |
122 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
| 35 | >=x11-libs/qt-4.3.3:4 )" |
123 | # @DESCRIPTION: |
| 36 | case "${OPENGL_REQUIRED}" in |
124 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
| 37 | always) |
125 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 38 | COMMONDEPEND="${COMMONDEPEND} |
126 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
| 39 | ${OPENGLDEPEND}" |
|
|
| 40 | ;; |
|
|
| 41 | optional) |
|
|
| 42 | IUSE="${IUSE} opengl" |
|
|
| 43 | COMMONDEPEND="${COMMONDEPEND} |
|
|
| 44 | opengl? ( ${OPENGLDEPEND} )" |
|
|
| 45 | ;; |
|
|
| 46 | *) |
|
|
| 47 | OPENGL_REQUIRED="never" |
|
|
| 48 | ;; |
|
|
| 49 | esac |
|
|
| 50 | |
127 | |
| 51 | DEPEND="${DEPEND} ${COMMONDEPEND} |
128 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
| 52 | >=dev-util/cmake-2.4.7-r1 |
129 | # @DESCRIPTION: |
| 53 | dev-util/pkgconfig |
130 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
| 54 | x11-libs/libXt |
131 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 55 | x11-proto/xf86vidmodeproto" |
132 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
| 56 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
|
|
| 57 | |
133 | |
| 58 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
134 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 59 | # @DESCRIPTION: |
135 | # @DESCRIPTION: |
| 60 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
136 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
| 61 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
137 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 62 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
138 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
| 63 | |
139 | |
|
|
140 | # @ECLASS-VARIABLE: KDE_REQUIRED |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
|
|
143 | # 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. |
|
|
145 | # Note that for kde-base packages this variable is fixed to 'always'. |
|
|
146 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
|
|
147 | |
|
|
148 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
|
|
149 | # @DESCRIPTION: |
|
|
150 | # Set to enable handbook in application. It adds +handbook to IUSE, handbook dirs |
|
|
151 | # to KMEXTRA and ensures buildtime and runtime dependencies. |
|
|
152 | [[ -n ${KDE_HANDBOOK} ]] && IUSE+=" +handbook" |
|
|
153 | |
|
|
154 | # Setup packages inheriting this eclass |
|
|
155 | case ${KDEBASE} in |
|
|
156 | kde-base) |
|
|
157 | HOMEPAGE="http://www.kde.org/" |
|
|
158 | LICENSE="GPL-2" |
|
|
159 | if [[ $BUILD_TYPE = live ]]; then |
|
|
160 | # Disable tests for live ebuilds |
|
|
161 | RESTRICT+=" test" |
|
|
162 | # Live ebuilds in kde-base default to kdeprefix by default |
|
|
163 | IUSE+=" +kdeprefix" |
|
|
164 | else |
|
|
165 | # All other ebuild types default to -kdeprefix as before |
|
|
166 | IUSE+=" kdeprefix" |
|
|
167 | fi |
|
|
168 | # 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 |
|
|
170 | # the overlay). |
|
|
171 | case ${PV} in |
|
|
172 | *9999* | 4.?.[6-9]?) |
|
|
173 | RESTRICT+=" mirror" |
|
|
174 | ;; |
|
|
175 | esac |
|
|
176 | # Block installation of other SLOTS unless kdeprefix |
|
|
177 | RDEPEND+=" $(block_other_slots)" |
|
|
178 | ;; |
|
|
179 | koffice) |
|
|
180 | HOMEPAGE="http://www.koffice.org/" |
|
|
181 | LICENSE="GPL-2" |
|
|
182 | ;; |
|
|
183 | kdevelop) |
|
|
184 | HOMEPAGE="http://www.kdevelop.org/" |
|
|
185 | LICENSE="GPL-2" |
|
|
186 | ;; |
|
|
187 | esac |
|
|
188 | |
|
|
189 | # @ECLASS-VARIABLE: QT_MINIMAL |
|
|
190 | # @DESCRIPTION: |
|
|
191 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
|
|
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 |
|
|
194 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
|
|
195 | else |
|
|
196 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
|
|
197 | fi |
|
|
198 | |
|
|
199 | # OpenGL dependencies |
|
|
200 | qtopengldepend=" |
|
|
201 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
|
|
202 | " |
| 64 | case "${CPPUNIT_REQUIRED}" in |
203 | case ${OPENGL_REQUIRED} in |
| 65 | always) |
204 | always) |
| 66 | DEPEND="${DEPEND} dev-util/cppunit" |
205 | COMMONDEPEND+=" ${qtopengldepend}" |
| 67 | ;; |
206 | ;; |
| 68 | optional) |
207 | optional) |
| 69 | IUSE="${IUSE} test" |
208 | IUSE+=" opengl" |
| 70 | DEPEND="${DEPEND} |
209 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
| 71 | test? ( dev-util/cppunit )" |
|
|
| 72 | ;; |
210 | ;; |
| 73 | *) |
211 | *) ;; |
| 74 | CPPUNIT_REQUIRED="never" |
|
|
| 75 | ;; |
|
|
| 76 | esac |
212 | esac |
|
|
213 | unset qtopengldepend |
| 77 | |
214 | |
| 78 | # @ECLASS-VARIABLE: NEED_KDE |
215 | # MultiMedia dependencies |
| 79 | # @DESCRIPTION: |
216 | qtmultimediadepend=" |
| 80 | # This variable sets the version of KDE4 which will be used by the eclass. |
217 | >=x11-libs/qt-multimedia-${QT_MINIMAL}:4 |
| 81 | # This variable must be set by the ebuild, for all categories except for "kde-base". |
218 | " |
| 82 | # For kde-base packages, if it is not set by the ebuild, |
219 | case ${MULTIMEDIA_REQUIRED} in |
| 83 | # it's assumed that the required KDE4 version is the latest, non-live, available. |
220 | always) |
| 84 | # |
221 | COMMONDEPEND+=" ${qtmultimediadepend}" |
| 85 | # @CODE |
222 | ;; |
| 86 | # Acceptable values are: |
223 | optional) |
| 87 | # - latest - Use latest version in the portage tree |
224 | IUSE+=" multimedia" |
| 88 | # Default for kde-base ebuilds. Banned for ebuilds not part of kde or koffice. |
225 | COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )" |
| 89 | # - svn - Use svn release (live ebuilds) |
226 | ;; |
| 90 | # - :SLOT - Use any version in the SLOT specified in the NEED_KDE value. |
227 | *) ;; |
| 91 | # - VERSION_NUMBER - Use the minimum KDE4 version specified in the NEED_KDE value. |
228 | esac |
| 92 | # - VERSION_NUMBER:SLOT - Use the minimum KDE4 version and the SLOT specified in the NEED_KDE value. |
229 | unset qtmultimediadepend |
| 93 | # - none - Let the ebuild handle SLOT, kde dependencies, KDEDIR, ... |
230 | |
| 94 | # @CODE |
231 | # WebKit dependencies |
| 95 | # |
232 | case ${KDE_REQUIRED} in |
| 96 | # Note: There is no default NEED_KDE for ebuilds not in kde-base or part of |
233 | always) |
| 97 | # koffice, so you must set it explicitly in the ebuild, in all other cases. |
234 | qtwebkitusedeps="[kde]" |
| 98 | if [[ -z ${NEED_KDE} ]]; then |
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 |
|
|
258 | cppuintdepend=" |
|
|
259 | dev-util/cppunit |
|
|
260 | " |
|
|
261 | case ${CPPUNIT_REQUIRED} in |
|
|
262 | always) |
|
|
263 | DEPEND+=" ${cppuintdepend}" |
|
|
264 | ;; |
|
|
265 | optional) |
|
|
266 | IUSE+=" test" |
|
|
267 | DEPEND+=" test? ( ${cppuintdepend} )" |
|
|
268 | ;; |
|
|
269 | *) ;; |
|
|
270 | esac |
|
|
271 | unset cppuintdepend |
|
|
272 | |
|
|
273 | # KDE dependencies |
|
|
274 | # Qt accessibility classes are needed in various places, bug 325461 |
|
|
275 | kdecommondepend=" |
|
|
276 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
|
|
277 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
|
|
278 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
|
|
279 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
|
|
280 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
|
|
281 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
|
|
282 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
283 | !aqua? ( |
|
|
284 | x11-libs/libXext |
|
|
285 | x11-libs/libXt |
|
|
286 | x11-libs/libXxf86vm |
|
|
287 | ) |
|
|
288 | " |
|
|
289 | #perl is not needed on host (+ difficult crosscompilation) |
|
|
290 | tc-is-cross-compiler || kdecommondepend+=" dev-lang/perl" |
|
|
291 | |
|
|
292 | if [[ ${PN} != kdelibs ]]; then |
| 99 | if [[ -n ${KDEBASE} ]]; then |
293 | if [[ ${KDEBASE} = kde-base ]]; then |
| 100 | NEED_KDE="latest" |
294 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| 101 | else |
295 | else |
| 102 | die "kde4-base.eclass inherited but NEED_KDE not defined - broken ebuild" |
296 | kdecommondepend+=" |
|
|
297 | >=kde-base/kdelibs-${KDE_MINIMAL} |
|
|
298 | " |
|
|
299 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
300 | if [[ ${PN} != kdevplatform ]]; then |
|
|
301 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
|
|
302 | # @DESCRIPTION: |
|
|
303 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
|
|
304 | # Applies to KDEBASE=kdevelop only. |
|
|
305 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
|
|
306 | case ${KDEVPLATFORM_REQUIRED} in |
|
|
307 | always) |
|
|
308 | kdecommondepend+=" |
|
|
309 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
|
|
310 | " |
|
|
311 | ;; |
|
|
312 | *) ;; |
|
|
313 | esac |
|
|
314 | fi |
|
|
315 | fi |
| 103 | fi |
316 | fi |
| 104 | fi |
317 | fi |
| 105 | export NEED_KDE |
318 | kdedepend=" |
|
|
319 | dev-util/automoc |
|
|
320 | dev-util/pkgconfig |
|
|
321 | !aqua? ( |
|
|
322 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
|
|
323 | x11-proto/xf86vidmodeproto |
|
|
324 | ) |
|
|
325 | " |
| 106 | |
326 | |
| 107 | case ${NEED_KDE} in |
327 | # Handbook handling - dependencies |
| 108 | latest) |
328 | if [[ -n ${KDE_HANDBOOK} ]]; then |
| 109 | # Should only be used by 'kde-base'-ebuilds |
329 | kdedepend+=" |
|
|
330 | handbook? ( |
|
|
331 | app-text/docbook-xml-dtd:4.2 |
|
|
332 | app-text/docbook-xsl-stylesheets |
|
|
333 | ) |
|
|
334 | " |
|
|
335 | if [[ ${PN} != kdelibs ]]; then |
| 110 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
336 | if [[ ${KDEBASE} = kde-base ]]; then |
| 111 | case ${PV} in |
337 | PDEPEND+=" handbook? ( $(add_kdebase_dep kdelibs 'handbook') )" |
| 112 | 3.9*) _kdedir="3.9" ;; |
|
|
| 113 | 4*) _kdedir="4.0" ;; |
|
|
| 114 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 115 | esac |
|
|
| 116 | _operator=">=" |
|
|
| 117 | _pv="-${PV}:kde-4" |
|
|
| 118 | else |
338 | else |
| 119 | _kdedir="4.0" |
339 | PDEPEND+=" handbook? ( >=kde-base/kdelibs-${KDE_MINIMAL}[handbook] )" |
| 120 | _pv=":kde-4" |
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 |
| 121 | fi |
347 | fi |
|
|
348 | fi |
|
|
349 | |
|
|
350 | case ${KDE_REQUIRED} in |
|
|
351 | always) |
|
|
352 | IUSE+=" aqua" |
|
|
353 | COMMONDEPEND+=" ${kdecommondepend}" |
|
|
354 | DEPEND+=" ${kdedepend}" |
| 122 | ;; |
355 | ;; |
| 123 | svn|9999*|:kde-svn) |
356 | optional) |
| 124 | _kdedir="svn" |
357 | IUSE+=" aqua kde" |
| 125 | _pv=":kde-svn" |
358 | COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
| 126 | export NEED_KDE="svn" |
359 | DEPEND+=" kde? ( ${kdedepend} )" |
| 127 | ;; |
360 | ;; |
| 128 | *:kde-svn) |
361 | *) ;; |
| 129 | _kdedir="svn" |
|
|
| 130 | _operator=">=" |
|
|
| 131 | _pv="-${NEED_KDE}" |
|
|
| 132 | export NEED_KDE="svn" |
|
|
| 133 | ;; |
|
|
| 134 | # The ebuild handles dependencies, KDEDIR, SLOT. |
|
|
| 135 | none) |
|
|
| 136 | : |
|
|
| 137 | ;; |
|
|
| 138 | # NEED_KDE=":${SLOT}" |
|
|
| 139 | :kde-4) |
|
|
| 140 | _kdedir="4.0" |
|
|
| 141 | _pv="${NEED_KDE}" |
|
|
| 142 | ;; |
|
|
| 143 | # NEED_KDE="${PV}:${SLOT}" |
|
|
| 144 | *:kde-4) |
|
|
| 145 | _kdedir="4.0" |
|
|
| 146 | _operator=">=" |
|
|
| 147 | _pv="-${NEED_KDE}" |
|
|
| 148 | ;; |
|
|
| 149 | 3.9*) |
|
|
| 150 | _kdedir="3.9" |
|
|
| 151 | _operator=">=" |
|
|
| 152 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 153 | ;; |
|
|
| 154 | 4*) |
|
|
| 155 | _kdedir="4.0" |
|
|
| 156 | _operator=">=" |
|
|
| 157 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 158 | ;; |
|
|
| 159 | *) die "NEED_KDE=${NEED_KDE} currently not supported." |
|
|
| 160 | ;; |
|
|
| 161 | esac |
362 | esac |
| 162 | |
363 | |
| 163 | if [[ ${NEED_KDE} != none ]]; then |
364 | unset kdecommondepend kdedepend |
| 164 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
| 165 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 166 | |
365 | |
| 167 | if [[ -n ${KDEBASE} ]]; then |
366 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
| 168 | if [[ ${NEED_KDE} = svn ]]; then |
367 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
| 169 | SLOT="kde-svn" |
368 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
| 170 | else |
369 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: PDEPEND is ${PDEPEND}" |
| 171 | SLOT="kde-4" |
|
|
| 172 | fi |
|
|
| 173 | fi |
|
|
| 174 | |
370 | |
| 175 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
371 | # Accumulate dependencies set by this eclass |
| 176 | if [[ ${PN} != "kdelibs" ]]; then |
|
|
| 177 | DEPEND="${DEPEND} |
372 | DEPEND+=" ${COMMONDEPEND}" |
| 178 | ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 179 | RDEPEND="${RDEPEND} |
373 | RDEPEND+=" ${COMMONDEPEND}" |
| 180 | ${_operator}kde-base/kdelibs${_pv}" |
374 | unset COMMONDEPEND |
| 181 | if [[ ${PN} != "kdepimlibs" ]]; then |
|
|
| 182 | DEPEND="${DEPEND} |
|
|
| 183 | ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 184 | RDEPEND="${RDEPEND} |
|
|
| 185 | ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 186 | fi |
|
|
| 187 | fi |
|
|
| 188 | |
375 | |
| 189 | unset _operator _pv _kdedir |
376 | # Add experimental kdeenablefinal, disabled by default |
| 190 | fi |
377 | IUSE+=" kdeenablefinal" |
| 191 | |
378 | |
| 192 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
379 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 193 | # koffice ebuild, the URI should be set in the ebuild itself |
380 | # koffice ebuild, the URI should be set in the ebuild itself |
| 194 | if [[ -n ${KDEBASE} ]]; then |
381 | case ${BUILD_TYPE} in |
|
|
382 | live) |
|
|
383 | SRC_URI="" |
|
|
384 | if has subversion ${INHERITED}; then |
|
|
385 | # Determine branch URL based on live type |
|
|
386 | local branch_prefix |
|
|
387 | case ${PV} in |
|
|
388 | 9999*) |
|
|
389 | # trunk |
|
|
390 | branch_prefix="trunk/KDE" |
|
|
391 | ;; |
|
|
392 | *) |
|
|
393 | # branch |
|
|
394 | branch_prefix="branches/KDE/${SLOT}" |
|
|
395 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
396 | # @DESCRIPTION |
|
|
397 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
398 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
399 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
400 | ;; |
|
|
401 | esac |
|
|
402 | # @ECLASS-VARIABLE: ESVN_MIRROR |
|
|
403 | # @DESCRIPTION: |
|
|
404 | # This variable allows easy overriding of default kde mirror service |
|
|
405 | # (anonsvn) with anything else you might want to use. |
|
|
406 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
|
|
407 | # Split ebuild, or extragear stuff |
| 195 | if [[ -n ${KMNAME} ]]; then |
408 | if [[ -n ${KMNAME} ]]; then |
|
|
409 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
410 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
411 | KMMODULE="${PN}" |
|
|
412 | fi |
|
|
413 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
414 | case ${KMNAME} in |
|
|
415 | kdebase-*) |
|
|
416 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
417 | ;; |
|
|
418 | kdelibs-*) |
|
|
419 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
420 | ;; |
|
|
421 | kdereview*) |
|
|
422 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
423 | ;; |
|
|
424 | kdesupport) |
|
|
425 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
426 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
427 | ;; |
|
|
428 | kde*) |
|
|
429 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
430 | ;; |
|
|
431 | extragear*|playground*) |
|
|
432 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
433 | # build packages from same svn location. |
|
|
434 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
435 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
436 | ;; |
|
|
437 | koffice) |
|
|
438 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
439 | ;; |
|
|
440 | *) |
|
|
441 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
442 | ;; |
|
|
443 | esac |
|
|
444 | else |
|
|
445 | # kdelibs, kdepimlibs |
|
|
446 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
447 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
448 | fi |
|
|
449 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
450 | # @DESCRIPTION: |
|
|
451 | # This variable is used for specifying the timeout between svn synces |
|
|
452 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
453 | # Default value is 1 hour. |
|
|
454 | [[ ${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 | ;; |
|
|
466 | *) |
|
|
467 | if [[ -n ${KDEBASE} ]]; then |
|
|
468 | if [[ -n ${KMNAME} ]]; then |
|
|
469 | case ${KMNAME} in |
|
|
470 | kdebase-apps) |
|
|
471 | _kmname="kdebase" ;; |
|
|
472 | *) |
| 196 | _kmname=${KMNAME} |
473 | _kmname="${KMNAME}" ;; |
|
|
474 | esac |
|
|
475 | else |
|
|
476 | _kmname=${PN} |
|
|
477 | fi |
|
|
478 | _kmname_pv="${_kmname}-${PV}" |
|
|
479 | case ${KDEBASE} in |
|
|
480 | kde-base) |
|
|
481 | case ${PV} in |
|
|
482 | 4.[45].8[05] | 4.[45].9[02568]) |
|
|
483 | # Normally packed unstable releases |
|
|
484 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
485 | 4.[45].[6-9]*) |
|
|
486 | # Repacked tarballs: need to depend on xz-utils to ensure that they can be unpacked |
|
|
487 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/src/${_kmname_pv}.tar.xz" |
|
|
488 | DEPEND+=" app-arch/xz-utils" |
|
|
489 | ;; |
|
|
490 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
491 | esac |
|
|
492 | ;; |
|
|
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 |
|
|
503 | unset _kmname _kmname_pv |
|
|
504 | fi |
|
|
505 | ;; |
|
|
506 | esac |
|
|
507 | |
|
|
508 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
509 | |
|
|
510 | # @ECLASS-VARIABLE: PREFIX |
|
|
511 | # @DESCRIPTION: |
|
|
512 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
|
|
513 | # 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. |
|
|
515 | |
|
|
516 | # @FUNCTION: kde4-base_pkg_setup |
|
|
517 | # @DESCRIPTION: |
|
|
518 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
|
|
519 | # optional applications link |
|
|
520 | kde4-base_pkg_setup() { |
|
|
521 | debug-print-function ${FUNCNAME} "$@" |
|
|
522 | |
|
|
523 | # Prefix compat: |
|
|
524 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
525 | EPREFIX= |
|
|
526 | EROOT=${ROOT} |
|
|
527 | fi |
|
|
528 | |
|
|
529 | # Append missing trailing slash character |
|
|
530 | [[ ${EROOT} = */ ]] || EROOT+="/" |
|
|
531 | |
|
|
532 | # QA ebuilds |
|
|
533 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
|
|
534 | |
|
|
535 | # Don't set KDEHOME during compilation, it will cause access violations |
|
|
536 | unset KDEHOME |
|
|
537 | |
|
|
538 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
539 | if use kdeprefix; then |
|
|
540 | KDEDIR=/usr/kde/${SLOT} |
|
|
541 | else |
|
|
542 | KDEDIR=/usr |
|
|
543 | fi |
|
|
544 | : ${PREFIX:=${KDEDIR}} |
| 197 | else |
545 | else |
| 198 | _kmname=${PN} |
546 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
| 199 | fi |
547 | KDEDIR= |
| 200 | _kmname_pv="${_kmname}-${PV}" |
548 | local kde_minimal_met |
| 201 | if [[ ${NEED_KDE} != "svn" ]]; then |
549 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
| 202 | case ${KDEBASE} in |
550 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
| 203 | kde-base) |
551 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
| 204 | case ${PV} in |
552 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
| 205 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
553 | KDEDIR=/usr/kde/${slot} |
| 206 | esac |
|
|
| 207 | ;; |
|
|
| 208 | koffice) |
|
|
| 209 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
|
|
| 210 | ;; |
|
|
| 211 | esac |
|
|
| 212 | fi |
|
|
| 213 | unset _kmname _kmname_pv |
|
|
| 214 | fi |
|
|
| 215 | |
|
|
| 216 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
| 217 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND ${DEPEND} - before blockers" |
|
|
| 218 | |
|
|
| 219 | # Monolithic ebuilds should add blockers for split ebuilds in the same slot. |
|
|
| 220 | # If KMNAME is not set then this is not a split package |
|
|
| 221 | if [[ -n ${KDEBASE} && -z ${KMNAME} ]]; then |
|
|
| 222 | for _x in $(get-child-packages ${CATEGORY}/${PN}); do |
|
|
| 223 | DEPEND="${DEPEND} !${_x}:${SLOT}" |
|
|
| 224 | RDEPEND="${RDEPEND} !${_x}:${SLOT}" |
|
|
| 225 | done |
|
|
| 226 | unset _x |
|
|
| 227 | fi |
|
|
| 228 | |
|
|
| 229 | debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND ${DEPEND} - after blockers" |
|
|
| 230 | |
|
|
| 231 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 232 | # @DESCRIPTION: |
|
|
| 233 | # Set the installation PREFIX. All kde-base ebuilds go into the KDE4 installation directory. |
|
|
| 234 | # Applications installed by the other ebuilds go into /usr/ by default, this value |
|
|
| 235 | # can be superseded by defining PREFIX before inheriting kde4-base. |
|
|
| 236 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 237 | PREFIX=${KDEDIR} |
|
|
| 238 | else |
|
|
| 239 | # if PREFIX is not defined we set it to the default value of /usr |
|
|
| 240 | PREFIX="${PREFIX:-/usr}" |
|
|
| 241 | fi |
|
|
| 242 | |
|
|
| 243 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - KDEDIR ${KDEDIR} - KDEDIRS ${KDEDIRS}- PREFIX ${PREFIX} - NEED_KDE ${NEED_KDE}" |
|
|
| 244 | |
|
|
| 245 | # @FUNCTION: kde4-base_pkg_setup |
|
|
| 246 | # @DESCRIPTION: |
|
|
| 247 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
|
|
| 248 | # kde4-functions_check_use from kde4-functions.eclass to print appropriate |
|
|
| 249 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
|
|
| 250 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
|
|
| 251 | kde4-base_pkg_setup() { |
|
|
| 252 | debug-print-function $FUNCNAME "$@" |
|
|
| 253 | |
|
|
| 254 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
|
|
| 255 | if has_version '<x11-libs/qt-4.4_alpha:4'; then |
|
|
| 256 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
|
|
| 257 | else |
|
|
| 258 | KDE4_BUILT_WITH_USE_CHECK="${KDE4_BUILT_WITH_USE_CHECK} |
|
|
| 259 | x11-libs/qt-core qt3support ssl |
|
|
| 260 | x11-libs/qt-gui accessibility dbus |
|
|
| 261 | x11-libs/qt-qt3support accessibility" |
|
|
| 262 | fi |
|
|
| 263 | |
|
|
| 264 | if has debug ${IUSE//+} && use debug; then |
|
|
| 265 | if has_version '<x11-libs/qt-4.4.0_alpha:4'; then |
|
|
| 266 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} debug" |
|
|
| 267 | else |
554 | else |
| 268 | KDE4_BUILT_WITH_USE_CHECK="${KDE4_BUILT_WITH_USE_CHECK} |
555 | KDEDIR=/usr |
| 269 | x11-libs/qt-core:4 debug |
|
|
| 270 | x11-libs/qt-gui:4 debug |
|
|
| 271 | x11-libs/qt-qt3support:4 debug |
|
|
| 272 | x11-libs/qt-svg:4 debug |
|
|
| 273 | x11-libs/qt-test:4 debug" |
|
|
| 274 | if [[ ${OPENGL_REQUIRED} == always ]] || has opengl ${IUSE//+} && use opengl; then |
|
|
| 275 | KDE4_BUILT_WITH_USE_CHECK="${KDE4_BUILT_WITH_USE_CHECK} |
|
|
| 276 | x11-libs/qt-opengl:4 debug" |
|
|
| 277 | fi |
556 | fi |
| 278 | fi |
557 | break; |
| 279 | fi |
|
|
| 280 | |
|
|
| 281 | if [[ ${OPENGL_REQUIRED} == always ]] || has opengl ${IUSE//+} && use opengl; then |
|
|
| 282 | if has_version '<x11-libs/qt-4.4.0_alpha:4'; then |
|
|
| 283 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
|
|
| 284 | fi |
|
|
| 285 | fi |
|
|
| 286 | |
|
|
| 287 | kde4-functions_check_use |
|
|
| 288 | } |
|
|
| 289 | |
|
|
| 290 | # @FUNCTION: kde4-base_apply_patches |
|
|
| 291 | # @DESCRIPTION: |
|
|
| 292 | # This function applies patches. |
|
|
| 293 | # |
|
|
| 294 | # If the directory ${WORKDIR}/patches/ exists, we apply all patches in that |
|
|
| 295 | # directory, provided they follow this format: |
|
|
| 296 | # @CODE |
|
|
| 297 | # - Monolithic ebuilds, (from kde-base) |
|
|
| 298 | # - $CATEGORY=kde-base: |
|
|
| 299 | # Apply ${CHILD_EBUILD_NAME}-${SLOT}-*{diff,patch} |
|
|
| 300 | # - $CATEGORY=!kde-base: |
|
|
| 301 | # Apply ${CHILD_EBUILD_NAME}-${PV}-*{diff,patch} |
|
|
| 302 | # - Split ebuilds: |
|
|
| 303 | # - $CATEGORY=kde-base: |
|
|
| 304 | # Apply ${PN}-${SLOT}-*{diff,patch} |
|
|
| 305 | # - $CATEGORY!=kde-base: |
|
|
| 306 | # Apply ${PN}-${PV}-*{diff,patch} |
|
|
| 307 | # @CODE |
|
|
| 308 | # |
|
|
| 309 | # If ${PATCHES} is non-zero all patches in it gets applied. |
|
|
| 310 | kde4-base_apply_patches() { |
|
|
| 311 | local _patchdir _packages _p |
|
|
| 312 | _patchdir="${WORKDIR}/patches/" |
|
|
| 313 | if [[ -d "${_patchdir}" ]]; then |
|
|
| 314 | if is-parent-package ${CATEGORY}/${PN} ; then |
|
|
| 315 | _packages="$(get-child-packages ${CATEGORY}/${PN})" |
|
|
| 316 | _packages="${_packages//${CATEGORY}\//} ${PN}" |
|
|
| 317 | else |
|
|
| 318 | _packages="${PN}" |
|
|
| 319 | fi |
|
|
| 320 | for _p in ${_packages}; do |
|
|
| 321 | PATCHES="${PATCHES} $(ls ${_patchdir}/${_p}-${PV}-*{diff,patch} 2>/dev/null)" |
|
|
| 322 | if [[ -n "${KDEBASE}" ]]; then |
|
|
| 323 | PATCHES="${PATCHES} $(ls ${_patchdir}/${_p}-${SLOT}-*{diff,patch} 2>/dev/null)" |
|
|
| 324 | fi |
558 | fi |
| 325 | done |
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 |
| 326 | fi |
567 | fi |
| 327 | [[ -n ${PATCHES} ]] && base_src_unpack autopatch |
568 | |
|
|
569 | : ${PREFIX:=/usr} |
|
|
570 | fi |
|
|
571 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
572 | |
|
|
573 | # Point pkg-config path to KDE *.pc files |
|
|
574 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
|
|
575 | # Point to correct QT plugins path |
|
|
576 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
|
|
577 | |
|
|
578 | # Fix XDG collision with sandbox |
|
|
579 | export XDG_CONFIG_HOME="${T}" |
| 328 | } |
580 | } |
| 329 | |
581 | |
| 330 | # @FUNCTION: kde4-base_src_unpack |
582 | # @FUNCTION: kde4-base_src_unpack |
| 331 | # @DESCRIPTION: |
583 | # @DESCRIPTION: |
| 332 | # This function unpacks the source tarballs for KDE4 applications. |
584 | # This function unpacks the source tarballs for KDE4 applications. |
| 333 | # |
|
|
| 334 | # If no argument is passed to this function, then standard src_unpack is |
|
|
| 335 | # executed. Otherwise options are passed to base_src_unpack. |
|
|
| 336 | # |
|
|
| 337 | # In addition it calls kde4-base_apply_patches when no arguments are passed to |
|
|
| 338 | # this function. |
|
|
| 339 | kde4-base_src_unpack() { |
585 | kde4-base_src_unpack() { |
| 340 | debug-print-function $FUNCNAME "$@" |
586 | debug-print-function ${FUNCNAME} "$@" |
| 341 | |
587 | |
| 342 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
588 | if [[ ${BUILD_TYPE} = live ]]; then |
| 343 | |
589 | if has subversion ${INHERITED}; then |
| 344 | if [[ -z $* ]]; then |
590 | migrate_store_dir |
| 345 | # Unpack first and deal with KDE patches after examing possible patch sets. |
591 | subversion_src_unpack |
| 346 | # To be picked up, patches need to conform to the guidelines stated before. |
592 | elif has git ${INHERITED}; then |
| 347 | # Monolithic ebuilds will use the split ebuild patches. |
593 | git_src_unpack |
| 348 | [[ -d "${KDE_S}" ]] || unpack ${A} |
594 | fi |
| 349 | kde4-base_apply_patches |
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 | ;; |
|
|
606 | *) |
|
|
607 | unpack ${file} |
|
|
608 | ;; |
|
|
609 | esac |
|
|
610 | done |
| 350 | else |
611 | else |
| 351 | # Call base_src_unpack, which unpacks and patches |
612 | # For EAPI >= 3, we can just use unpack() directly |
| 352 | # step by step transparently as defined in the ebuild. |
613 | unpack ${A} |
| 353 | base_src_unpack $* |
614 | fi |
|
|
615 | } |
|
|
616 | |
|
|
617 | # @FUNCTION: kde4-base_src_prepare |
|
|
618 | # @DESCRIPTION: |
|
|
619 | # General pre-configure and pre-compile function for KDE4 applications. |
|
|
620 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
621 | # enable_selected_linguas() and enable_selected_doc_linguas() |
|
|
622 | # in kde4-functions.eclass(5) for further details. |
|
|
623 | kde4-base_src_prepare() { |
|
|
624 | debug-print-function ${FUNCNAME} "$@" |
|
|
625 | |
|
|
626 | # Only enable selected languages, used for KDE extragear apps. |
|
|
627 | if [[ -n ${KDE_LINGUAS} ]]; then |
|
|
628 | enable_selected_linguas |
|
|
629 | fi |
|
|
630 | |
|
|
631 | # Enable/disable handbooks for kde4-base packages |
|
|
632 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
|
|
633 | # kdelibs inherits kde4-base but handle installing the handbook itself |
|
|
634 | if ! has kde4-meta ${INHERITED}; then |
|
|
635 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
|
|
636 | fi |
|
|
637 | |
|
|
638 | # SCM bootstrap |
|
|
639 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
640 | if has subversion ${INHERITED}; then |
|
|
641 | subversion_src_prepare |
|
|
642 | elif has git ${INHERITED}; then |
|
|
643 | git_src_prepare |
| 354 | fi |
644 | fi |
| 355 | |
|
|
| 356 | # Updated cmake dir |
|
|
| 357 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
|
|
| 358 | ebegin "Updating cmake/ directory..." |
|
|
| 359 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
|
|
| 360 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
|
|
| 361 | eend 0 |
|
|
| 362 | fi |
645 | fi |
|
|
646 | |
|
|
647 | # Apply patches |
|
|
648 | base_src_prepare |
|
|
649 | |
|
|
650 | # Save library dependencies |
|
|
651 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
652 | save_library_dependencies |
|
|
653 | fi |
|
|
654 | |
|
|
655 | # Inject library dependencies |
|
|
656 | if [[ -n ${KMLOADLIBS} ]] ; then |
|
|
657 | load_library_dependencies |
|
|
658 | fi |
|
|
659 | } |
|
|
660 | |
|
|
661 | # @FUNCTION: kde4-base_src_configure |
|
|
662 | # @DESCRIPTION: |
|
|
663 | # Function for configuring the build of KDE4 applications. |
|
|
664 | kde4-base_src_configure() { |
|
|
665 | debug-print-function ${FUNCNAME} "$@" |
|
|
666 | |
|
|
667 | # Build tests in src_test only, where we override this value |
|
|
668 | local cmakeargs=(-DKDE4_BUILD_TESTS=OFF) |
|
|
669 | |
|
|
670 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
671 | cmakeargs+=(-DKDE4_ENABLE_FINAL=ON) |
|
|
672 | fi |
|
|
673 | |
|
|
674 | if has debug ${IUSE//+} && use debug; then |
|
|
675 | # Set "real" debug mode |
|
|
676 | CMAKE_BUILD_TYPE="Debugfull" |
|
|
677 | else |
|
|
678 | # Handle common release builds |
|
|
679 | append-cppflags -DQT_NO_DEBUG |
|
|
680 | fi |
|
|
681 | |
|
|
682 | # Set distribution name |
|
|
683 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
|
|
684 | |
|
|
685 | # Here we set the install prefix |
|
|
686 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
|
|
687 | |
|
|
688 | # Use colors |
|
|
689 | QTEST_COLORED=1 |
|
|
690 | |
|
|
691 | # Shadow existing /usr installations |
|
|
692 | unset KDEDIRS |
|
|
693 | |
|
|
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 |
|
|
712 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
|
|
713 | #kde-config -path data unavailable when cross-compiling |
|
|
714 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
|
|
715 | |
|
|
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 |
|
|
719 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
|
|
720 | fi |
|
|
721 | |
|
|
722 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
723 | mycmakeargs=(${mycmakeargs}) |
|
|
724 | fi |
|
|
725 | |
|
|
726 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
|
|
727 | |
|
|
728 | cmake-utils_src_configure |
| 363 | } |
729 | } |
| 364 | |
730 | |
| 365 | # @FUNCTION: kde4-base_src_compile |
731 | # @FUNCTION: kde4-base_src_compile |
| 366 | # @DESCRIPTION: |
732 | # @DESCRIPTION: |
| 367 | # General function for compiling KDE4 applications. |
733 | # General function for compiling KDE4 applications. |
| 368 | kde4-base_src_compile() { |
734 | kde4-base_src_compile() { |
| 369 | debug-print-function ${FUNCNAME} "$@" |
735 | debug-print-function ${FUNCNAME} "$@" |
| 370 | |
736 | |
| 371 | kde4-base_src_configure |
|
|
| 372 | kde4-base_src_make |
|
|
| 373 | } |
|
|
| 374 | |
|
|
| 375 | # @FUNCTION: kde4-base_src_configure |
|
|
| 376 | # @DESCRIPTION: |
|
|
| 377 | # Function for configuring the build of KDE4 applications. |
|
|
| 378 | kde4-base_src_configure() { |
|
|
| 379 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 380 | |
|
|
| 381 | # Final flag handling |
|
|
| 382 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
| 383 | einfo "Activating enable-final flag" |
|
|
| 384 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_FINAL=ON" |
|
|
| 385 | fi |
|
|
| 386 | |
|
|
| 387 | # Enable generation of HTML handbook |
|
|
| 388 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
|
|
| 389 | einfo "Enabling building of HTML handbook" |
|
|
| 390 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
|
|
| 391 | fi |
|
|
| 392 | |
|
|
| 393 | # Build tests in src_test only, where we override this value |
|
|
| 394 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
|
|
| 395 | |
|
|
| 396 | # Set distribution name |
|
|
| 397 | [[ ${PN} == "kdelibs" ]] && mycmakeargs="${mycmakeargs} -DKDE_DISTRIBUTION_TEXT=Gentoo" |
|
|
| 398 | |
|
|
| 399 | # runpath linking |
|
|
| 400 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
|
|
| 401 | |
|
|
| 402 | # Here we set the install prefix |
|
|
| 403 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
|
|
| 404 | |
|
|
| 405 | # Set environment |
|
|
| 406 | QTEST_COLORED=1 |
|
|
| 407 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
|
|
| 408 | |
|
|
| 409 | cmake-utils_src_configureout |
|
|
| 410 | } |
|
|
| 411 | |
|
|
| 412 | # @FUNCTION: kde4-base_src_make |
|
|
| 413 | # @DESCRIPTION: |
|
|
| 414 | # Function for building KDE4 applications. |
|
|
| 415 | # Options are passed to cmake-utils_src_make. |
|
|
| 416 | kde4-base_src_make() { |
|
|
| 417 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 418 | |
|
|
| 419 | cmake-utils_src_make "$@" |
737 | cmake-utils_src_compile "$@" |
| 420 | } |
738 | } |
| 421 | |
739 | |
| 422 | # @FUNCTION: kde4-base_src_test |
740 | # @FUNCTION: kde4-base_src_test |
| 423 | # @DESCRIPTION: |
741 | # @DESCRIPTION: |
| 424 | # Function for testing KDE4 applications. |
742 | # Function for testing KDE4 applications. |
| 425 | kde4-base_src_test() { |
743 | kde4-base_src_test() { |
| 426 | debug-print-function ${FUNCNAME} "$@" |
744 | debug-print-function ${FUNCNAME} "$@" |
| 427 | |
745 | |
| 428 | # Override this value, set in kde4-base_src_configure() |
746 | # Override this value, set in kde4-base_src_configure() |
| 429 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=ON" |
747 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 430 | cmake-utils_src_compile |
748 | cmake-utils_src_configure |
|
|
749 | kde4-base_src_compile |
| 431 | |
750 | |
| 432 | cmake-utils_src_test |
751 | cmake-utils_src_test |
| 433 | } |
752 | } |
| 434 | |
753 | |
| 435 | # @FUNCTION: kde4-base_src_install |
754 | # @FUNCTION: kde4-base_src_install |
| 436 | # @DESCRIPTION: |
755 | # @DESCRIPTION: |
| 437 | # Function for installing KDE4 applications. |
756 | # Function for installing KDE4 applications. |
| 438 | kde4-base_src_install() { |
757 | kde4-base_src_install() { |
| 439 | debug-print-function ${FUNCNAME} "$@" |
758 | debug-print-function ${FUNCNAME} "$@" |
| 440 | |
759 | |
| 441 | kde4-base_src_make_doc |
760 | # Prefix support, for usage in ebuilds |
|
|
761 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
762 | ED=${D} |
|
|
763 | fi |
|
|
764 | |
|
|
765 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
766 | install_library_dependencies |
|
|
767 | fi |
|
|
768 | |
|
|
769 | # Install common documentation of KDE4 applications |
|
|
770 | local doc |
|
|
771 | if ! has kde4-meta ${INHERITED}; then |
|
|
772 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
773 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
774 | done |
|
|
775 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
776 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
777 | done |
|
|
778 | fi |
|
|
779 | |
| 442 | cmake-utils_src_install |
780 | cmake-utils_src_install |
| 443 | } |
781 | } |
| 444 | |
782 | |
| 445 | # @FUNCTION: kde4-base_src_make_doc |
|
|
| 446 | # @DESCRIPTION: |
|
|
| 447 | # Function for installing the documentation of KDE4 applications. |
|
|
| 448 | kde4-base_src_make_doc() { |
|
|
| 449 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 450 | |
|
|
| 451 | local doc |
|
|
| 452 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
|
|
| 453 | [[ -s $doc ]] && dodoc ${doc} |
|
|
| 454 | done |
|
|
| 455 | |
|
|
| 456 | if [[ -z ${KMNAME} ]]; then |
|
|
| 457 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
|
|
| 458 | if [[ -s $doc ]]; then |
|
|
| 459 | local doc_complete=${doc} |
|
|
| 460 | doc="${doc#*/}" |
|
|
| 461 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
| 462 | fi |
|
|
| 463 | done |
|
|
| 464 | fi |
|
|
| 465 | |
|
|
| 466 | if [[ -n ${KDEBASE} && -d "${D}"/usr/share/doc/${PF} ]]; then |
|
|
| 467 | # work around bug #97196 |
|
|
| 468 | dodir /usr/share/doc/kde && \ |
|
|
| 469 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
|
|
| 470 | die "Failed to move docs to kde/ failed." |
|
|
| 471 | fi |
|
|
| 472 | } |
|
|
| 473 | |
|
|
| 474 | # @FUNCTION: kde4-base_pkg_postinst |
783 | # @FUNCTION: kde4-base_pkg_postinst |
| 475 | # @DESCRIPTION: |
784 | # @DESCRIPTION: |
| 476 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
785 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 477 | kde4-base_pkg_postinst() { |
786 | kde4-base_pkg_postinst() { |
|
|
787 | debug-print-function ${FUNCNAME} "$@" |
|
|
788 | |
|
|
789 | buildsycoca |
|
|
790 | |
|
|
791 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
792 | echo |
|
|
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 |
|
|
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 | } |
|
|
818 | |
|
|
819 | # @FUNCTION: kde4-base_pkg_postrm |
|
|
820 | # @DESCRIPTION: |
|
|
821 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
|
|
822 | kde4-base_pkg_postrm() { |
|
|
823 | debug-print-function ${FUNCNAME} "$@" |
|
|
824 | |
| 478 | buildsycoca |
825 | buildsycoca |
| 479 | } |
826 | } |
| 480 | |
|
|
| 481 | # @FUNCTION: kde4-base_pkg_postrm |
|
|
| 482 | # @DESCRIPTION: |
|
|
| 483 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
|
|
| 484 | kde4-base_pkg_postrm() { |
|
|
| 485 | buildsycoca |
|
|
| 486 | } |
|
|