1 | # Copyright 2007-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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.35 2009/04/15 11:09:50 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.122 2013/02/02 16:58:00 dilfridge 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 base cmake-utils eutils kde4-functions |
16 | # @ECLASS-VARIABLE: KDE_SELINUX_MODULE |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # If set to "none", do nothing. |
|
|
19 | # For any other value, add selinux to IUSE, and depending on that useflag |
|
|
20 | # add a dependency on sec-policy/selinux-${KDE_SELINUX_MODULE} to (R)DEPEND |
|
|
21 | : ${KDE_SELINUX_MODULE:=none} |
17 | |
22 | |
18 | get_build_type |
23 | # @ECLASS-VARIABLE: VIRTUALDBUS_TEST |
|
|
24 | # @DESCRIPTION: |
|
|
25 | # If defined, launch and use a private dbus session during src_test. |
|
|
26 | |
|
|
27 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # For proper description see virtualx.eclass manpage. |
|
|
30 | # Here we redefine default value to be manual, if your package needs virtualx |
|
|
31 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
|
|
32 | : ${VIRTUALX_REQUIRED:=manual} |
|
|
33 | |
|
|
34 | inherit kde4-functions toolchain-funcs fdo-mime flag-o-matic gnome2-utils base virtualx versionator eutils multilib |
|
|
35 | |
19 | if [[ ${BUILD_TYPE} = live ]]; then |
36 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
|
|
37 | case ${KDE_SCM} in |
20 | inherit subversion |
38 | svn) inherit subversion ;; |
|
|
39 | git) inherit git-2 ;; |
|
|
40 | esac |
21 | fi |
41 | fi |
22 | |
42 | |
23 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
43 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
|
|
44 | # @DESCRIPTION: |
|
|
45 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
|
|
46 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
|
|
47 | # src_configure, src_compile, src_test and src_install. |
|
|
48 | # Defaults to 'always'. |
|
|
49 | : ${CMAKE_REQUIRED:=always} |
|
|
50 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
|
|
51 | buildsystem_eclass="cmake-utils" |
|
|
52 | export_fns="src_configure src_compile src_test src_install" |
|
|
53 | fi |
|
|
54 | |
|
|
55 | # @ECLASS-VARIABLE: KDE_MINIMAL |
|
|
56 | # @DESCRIPTION: |
|
|
57 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
|
|
58 | # version for apps to work. Currently defaults to 4.4 |
|
|
59 | # One may override this variable to raise version requirements. |
|
|
60 | # Note that it is fixed to ${PV} for kde-base packages. |
|
|
61 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
|
|
62 | |
|
|
63 | # Set slot for KDEBASE known packages |
|
|
64 | case ${KDEBASE} in |
|
|
65 | kde-base) |
|
|
66 | SLOT=4 |
|
|
67 | KDE_MINIMAL="${PV}" |
|
|
68 | ;; |
|
|
69 | kdevelop) |
|
|
70 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
|
|
71 | # @ECLASS-VARIABLE: KDEVELOP_VERSION |
|
|
72 | # @DESCRIPTION: |
|
|
73 | # Specifies KDevelop version. Default is 4.0.0 for tagged packages and 9999 for live packages. |
|
|
74 | # Applies to KDEBASE=kdevelop only. |
|
|
75 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-9999}" |
|
|
76 | # @ECLASS-VARIABLE: KDEVPLATFORM_VERSION |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifies KDevplatform version. Default is 1.0.0 for tagged packages and 9999 for live packages. |
|
|
79 | # Applies to KDEBASE=kdevelop only. |
|
|
80 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-9999}" |
|
|
81 | else |
|
|
82 | case ${PN} in |
|
|
83 | kdevelop|quanta) |
|
|
84 | KDEVELOP_VERSION=${PV} |
|
|
85 | KDEVPLATFORM_VERSION="$(($(get_major_version)-3)).$(get_after_major_version)" |
|
|
86 | ;; |
|
|
87 | kdevplatform|kdevelop-php*) |
|
|
88 | KDEVELOP_VERSION="$(($(get_major_version)+3)).$(get_after_major_version)" |
|
|
89 | KDEVPLATFORM_VERSION=${PV} |
|
|
90 | ;; |
|
|
91 | *) |
|
|
92 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.0.0}" |
|
|
93 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-1.0.0}" |
|
|
94 | esac |
|
|
95 | fi |
|
|
96 | SLOT="4" |
|
|
97 | ;; |
|
|
98 | esac |
|
|
99 | |
|
|
100 | inherit ${buildsystem_eclass} |
|
|
101 | |
|
|
102 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm |
|
|
103 | |
|
|
104 | unset buildsystem_eclass |
|
|
105 | unset export_fns |
|
|
106 | |
|
|
107 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
|
|
108 | # @DESCRIPTION: |
|
|
109 | # Is qt-declarative required? Possible values are 'always', 'optional' and 'never'. |
|
|
110 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
111 | DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}" |
|
|
112 | |
|
|
113 | # @ECLASS-VARIABLE: QTHELP_REQUIRED |
|
|
114 | # @DESCRIPTION: |
|
|
115 | # Is qt-assistant required? Possible values are 'always', 'optional' and 'never'. |
|
|
116 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
117 | QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}" |
24 | |
118 | |
25 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
119 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
26 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
27 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
121 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
28 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
122 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
29 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
123 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
30 | |
124 | |
31 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
125 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
32 | # @DESCRIPTION: |
126 | # @DESCRIPTION: |
33 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
127 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
34 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
128 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
35 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
129 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
36 | |
130 | |
37 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
131 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
38 | # @DESCRIPTION: |
132 | # @DESCRIPTION: |
39 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
133 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
40 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
134 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
… | |
… | |
42 | |
136 | |
43 | # @ECLASS-VARIABLE: KDE_REQUIRED |
137 | # @ECLASS-VARIABLE: KDE_REQUIRED |
44 | # @DESCRIPTION: |
138 | # @DESCRIPTION: |
45 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
139 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
46 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
140 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
47 | # If set to always or optional, KDE_MINIMAL may be overriden as well. |
141 | # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well. |
48 | # Note that for kde-base packages this variable is fixed to 'always'. |
142 | # Note that for kde-base packages this variable is fixed to 'always'. |
49 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
143 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
50 | |
144 | |
51 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
145 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
52 | if [[ -n ${KDE_MINIMAL} ]]; then |
146 | # @DESCRIPTION: |
53 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
147 | # Set to enable handbook in application. Possible values are 'always', 'optional' |
54 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
148 | # (handbook USE flag) and 'never'. |
55 | done |
149 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
56 | [[ -z ${KDE_MINIMAL_VALID} ]] && unset KDE_MINIMAL |
150 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
|
|
151 | # ensures buildtime and runtime dependencies. |
|
|
152 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
153 | |
|
|
154 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
155 | # @DESCRIPTION: |
|
|
156 | # Set this varible if you want your live package to manage its |
|
|
157 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
158 | # and translations in live ebuilds) |
|
|
159 | if [[ ${KDE_BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
160 | # Kdebase actualy provides the handbooks even for live stuff |
|
|
161 | [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never |
|
|
162 | KDE_LINGUAS="" |
|
|
163 | fi |
|
|
164 | |
|
|
165 | # Setup packages inheriting this eclass |
|
|
166 | case ${KDEBASE} in |
|
|
167 | kde-base) |
|
|
168 | HOMEPAGE="http://www.kde.org/" |
|
|
169 | LICENSE="GPL-2" |
|
|
170 | if [[ ${KDE_BUILD_TYPE} = live && -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
171 | # Disable tests for live ebuilds by default |
|
|
172 | RESTRICT+=" test" |
|
|
173 | fi |
|
|
174 | |
|
|
175 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
|
|
176 | # packages that will never be mirrored. (As they only will ever be in |
|
|
177 | # the overlay). |
|
|
178 | case ${PV} in |
|
|
179 | *9999* | 4.?.[6-9]?) |
|
|
180 | RESTRICT+=" mirror" |
|
|
181 | ;; |
|
|
182 | esac |
|
|
183 | ;; |
|
|
184 | kdevelop) |
|
|
185 | HOMEPAGE="http://www.kdevelop.org/" |
|
|
186 | LICENSE="GPL-2" |
|
|
187 | ;; |
|
|
188 | esac |
|
|
189 | |
|
|
190 | # @ECLASS-VARIABLE: QT_MINIMAL |
|
|
191 | # @DESCRIPTION: |
|
|
192 | # Determine version of qt we enforce as minimal for the package. |
|
|
193 | if version_is_at_least 4.8.50 "${KDE_MINIMAL}"; then |
|
|
194 | # Upstream has added an *undeclared* dependency on Qt 4.8... |
|
|
195 | QT_MINIMAL="${QT_MINIMAL:-4.8.0}" |
57 | else |
196 | else |
58 | KDE_MINIMAL_VALID=1 |
197 | QT_MINIMAL="${QT_MINIMAL:-4.7.4}" |
59 | fi |
198 | fi |
60 | |
199 | |
61 | # @ECLASS-VARIABLE: KDE_MINIMAL |
200 | # Declarative dependencies |
62 | # @DESCRIPTION: |
201 | qtdeclarativedepend=" |
63 | # This wariable is used when KDE_REQUIRED is set, to specify required KDE minimal |
202 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
64 | # version for apps to work. Currently defaults to 4.2 |
203 | " |
65 | # One may override this variable to raise version requirements. |
204 | case ${DECLARATIVE_REQUIRED} in |
66 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
205 | always) |
67 | # Note that for kde-base packages is fixed to ${SLOT}. |
206 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
68 | KDE_MINIMAL="${KDE_MINIMAL:-4.2}" |
|
|
69 | |
|
|
70 | # Fallback behaviour (for now) |
|
|
71 | # TODO Remove when tree is clean |
|
|
72 | if [[ -n ${NEED_KDE} ]]; then |
|
|
73 | case ${NEED_KDE} in |
|
|
74 | none) |
|
|
75 | KDE_REQUIRED="never" |
|
|
76 | ;; |
207 | ;; |
77 | *) |
208 | optional) |
78 | KDE_REQUIRED="always" |
209 | IUSE+=" declarative" |
79 | KDE_MINIMAL="${NEED_KDE}" |
210 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
80 | ;; |
211 | ;; |
|
|
212 | *) ;; |
81 | esac |
213 | esac |
82 | fi |
214 | unset qtdeclarativedepend |
|
|
215 | |
|
|
216 | # QtHelp dependencies |
|
|
217 | qthelpdepend=" |
|
|
218 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
219 | " |
|
|
220 | case ${QTHELP_REQUIRED} in |
|
|
221 | always) |
|
|
222 | COMMONDEPEND+=" ${qthelpdepend}" |
|
|
223 | ;; |
|
|
224 | optional) |
|
|
225 | IUSE+=" qthelp" |
|
|
226 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
227 | ;; |
|
|
228 | esac |
|
|
229 | unset qthelpdepend |
83 | |
230 | |
84 | # OpenGL dependencies |
231 | # OpenGL dependencies |
85 | qtopengldepend=" |
232 | qtopengldepend=" |
86 | x11-libs/qt-opengl:4 |
233 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
87 | " |
234 | " |
88 | case ${OPENGL_REQUIRED} in |
235 | case ${OPENGL_REQUIRED} in |
89 | always) |
236 | always) |
90 | COMMONDEPEND="${COMMONDEPEND} ${qtopengldepend}" |
237 | COMMONDEPEND+=" ${qtopengldepend}" |
91 | ;; |
238 | ;; |
92 | optional) |
239 | optional) |
93 | IUSE="${IUSE} opengl" |
240 | IUSE+=" opengl" |
94 | COMMONDEPEND="${COMMONDEPEND} |
|
|
95 | opengl? ( ${qtopengldepend} ) |
241 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
96 | " |
|
|
97 | ;; |
242 | ;; |
98 | *) ;; |
243 | *) ;; |
99 | esac |
244 | esac |
100 | unset qtopengldepend |
245 | unset qtopengldepend |
101 | |
246 | |
102 | # WebKit dependencies |
247 | # MultiMedia dependencies |
103 | qtwebkitdepend=" |
248 | qtmultimediadepend=" |
104 | x11-libs/qt-webkit:4 |
249 | >=x11-libs/qt-multimedia-${QT_MINIMAL}:4 |
105 | " |
250 | " |
106 | case ${WEBKIT_REQUIRED} in |
251 | case ${MULTIMEDIA_REQUIRED} in |
107 | always) |
252 | always) |
108 | COMMONDEPEND="${COMMONDEPEND} ${qtwebkitdepend}" |
253 | COMMONDEPEND+=" ${qtmultimediadepend}" |
109 | ;; |
254 | ;; |
110 | optional) |
255 | optional) |
111 | IUSE="${IUSE} webkit" |
256 | IUSE+=" multimedia" |
112 | COMMONDEPEND="${COMMONDEPEND} |
257 | COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )" |
113 | webkit? ( ${qtwebkitdepend} ) |
|
|
114 | " |
|
|
115 | ;; |
258 | ;; |
116 | *) ;; |
259 | *) ;; |
117 | esac |
260 | esac |
118 | unset qtwebkitdepend |
261 | unset qtmultimediadepend |
119 | |
262 | |
120 | # CppUnit dependencies |
263 | # CppUnit dependencies |
121 | cppuintdepend=" |
264 | cppuintdepend=" |
122 | dev-util/cppunit |
265 | dev-util/cppunit |
123 | " |
266 | " |
124 | case ${CPPUNIT_REQUIRED} in |
267 | case ${CPPUNIT_REQUIRED} in |
125 | always) |
268 | always) |
126 | DEPEND="${DEPEND} ${cppuintdepend}" |
269 | DEPEND+=" ${cppuintdepend}" |
127 | ;; |
270 | ;; |
128 | optional) |
271 | optional) |
129 | IUSE="${IUSE} test" |
272 | IUSE+=" test" |
130 | DEPEND="${DEPEND} |
|
|
131 | test? ( ${cppuintdepend} ) |
273 | DEPEND+=" test? ( ${cppuintdepend} )" |
132 | " |
|
|
133 | ;; |
274 | ;; |
134 | *) ;; |
275 | *) ;; |
135 | esac |
276 | esac |
136 | unset cppuintdepend |
277 | unset cppuintdepend |
137 | |
278 | |
138 | # DEPRECATED block |
|
|
139 | if [[ ${NEED_KDE} != "none" ]]; then |
|
|
140 | # localization deps |
|
|
141 | # DISABLED UNTIL PMS decide correct approach :( |
|
|
142 | if [[ -n ${KDE_LINGUAS} ]]; then |
|
|
143 | LNG_DEP="" |
|
|
144 | for _lng in ${KDE_LINGUAS}; do |
|
|
145 | # there must be or due to issue if lingua is not present in kde-l10n so |
|
|
146 | # it wont die but pick kde-l10n as-is. |
|
|
147 | LNG_DEP="${LNG_DEP} |
|
|
148 | || ( |
|
|
149 | kde-base/kde-l10n[linguas_${_lng},kdeprefix=] |
|
|
150 | kde-base/kde-l10n[kdeprefix=] |
|
|
151 | ) |
|
|
152 | " |
|
|
153 | done |
|
|
154 | fi |
|
|
155 | fi # NEED_KDE != NONE block |
|
|
156 | |
|
|
157 | # Setup packages inheriting this eclass |
|
|
158 | case ${KDEBASE} in |
|
|
159 | |
|
|
160 | kde-base) |
|
|
161 | if [[ $BUILD_TYPE = live ]]; then |
|
|
162 | # Disable tests for live ebuilds |
|
|
163 | RESTRICT="${RESTRICT} test" |
|
|
164 | # Live ebuilds in kde-base default to kdeprefix by default |
|
|
165 | IUSE="${IUSE} +kdeprefix" |
|
|
166 | else |
|
|
167 | # All other ebuild types default to -kdeprefix as before |
|
|
168 | IUSE="${IUSE} kdeprefix" |
|
|
169 | fi |
|
|
170 | # Determine SLOT from PV |
|
|
171 | case ${PV} in |
|
|
172 | 4.3* | 4.2.9* | 4.2.8* | 4.2.7* | 4.2.6*) SLOT="4.3" ;; |
|
|
173 | 4.2* | 4.1.9* | 4.1.8* | 4.1.7* | 4.1.6*) SLOT="4.2" ;; |
|
|
174 | *9999*) SLOT="live" ;; |
|
|
175 | *) die "Unsupported ${PV}" ;; |
|
|
176 | esac |
|
|
177 | _kdedir="${SLOT}" |
|
|
178 | _pv="-${PV}:${SLOT}" |
|
|
179 | _pvn="-${PV}" |
|
|
180 | |
|
|
181 | # Block installation of other SLOTS unless kdeprefix |
|
|
182 | for slot in ${KDE_SLOTS[@]}; do |
|
|
183 | # Block non kdeprefix ${PN} on other slots |
|
|
184 | if [[ ${SLOT} != ${slot} ]]; then |
|
|
185 | RDEPEND="${RDEPEND} |
|
|
186 | !kdeprefix? ( !kde-base/${PN}:${slot}[-kdeprefix] ) |
|
|
187 | " |
|
|
188 | fi |
|
|
189 | done |
|
|
190 | ;; |
|
|
191 | |
|
|
192 | koffice) |
|
|
193 | SLOT="2" |
|
|
194 | _pv="-${KDE_MINIMAL}" |
|
|
195 | _pvn="${_pv}" |
|
|
196 | ;; |
|
|
197 | |
|
|
198 | *) |
|
|
199 | _pv="-${KDE_MINIMAL}" |
|
|
200 | _pvn="${_pv}" |
|
|
201 | ;; |
|
|
202 | |
|
|
203 | esac |
|
|
204 | |
|
|
205 | # KDE dependencies |
279 | # KDE dependencies |
|
|
280 | # Qt accessibility classes are needed in various places, bug 325461 |
206 | kdecommondepend=" |
281 | kdecommondepend=" |
207 | dev-lang/perl |
282 | dev-lang/perl |
|
|
283 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
|
|
284 | >=x11-libs/qt-dbus-${QT_MINIMAL}:4 |
|
|
285 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
|
|
286 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility] |
|
|
287 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
|
|
288 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
|
|
289 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
|
|
290 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
291 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4 |
|
|
292 | !aqua? ( |
208 | x11-libs/libXext |
293 | x11-libs/libXext |
209 | x11-libs/libXt |
294 | x11-libs/libXt |
210 | x11-libs/libXxf86vm |
295 | x11-libs/libXxf86vm |
211 | x11-libs/qt-core:4[qt3support,ssl] |
296 | x11-libs/libXcomposite |
212 | x11-libs/qt-gui:4[accessibility,dbus] |
297 | x11-libs/libxkbfile |
213 | x11-libs/qt-qt3support:4[accessibility] |
298 | ) |
214 | x11-libs/qt-script:4 |
|
|
215 | x11-libs/qt-sql:4[qt3support] |
|
|
216 | x11-libs/qt-svg:4 |
|
|
217 | x11-libs/qt-test:4 |
|
|
218 | " |
299 | " |
|
|
300 | |
219 | if [[ ${PN} != kdelibs ]]; then |
301 | if [[ ${PN} != kdelibs ]]; then |
|
|
302 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
220 | if [[ ${KDEBASE} = kde-base ]]; then |
303 | if [[ ${KDEBASE} = kdevelop ]]; then |
221 | kdecommondepend="${kdecommondepend} |
304 | if [[ ${PN} != kdevplatform ]]; then |
222 | kdeprefix? ( >=kde-base/kdelibs${_pv}[kdeprefix] ) |
305 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
223 | !kdeprefix? ( >=kde-base/kdelibs${_pvn}[-kdeprefix] ) |
306 | # @DESCRIPTION: |
|
|
307 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
|
|
308 | # Applies to KDEBASE=kdevelop only. |
|
|
309 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
|
|
310 | case ${KDEVPLATFORM_REQUIRED} in |
|
|
311 | always) |
|
|
312 | kdecommondepend+=" |
|
|
313 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
|
|
314 | " |
|
|
315 | ;; |
|
|
316 | *) ;; |
|
|
317 | esac |
|
|
318 | fi |
|
|
319 | fi |
|
|
320 | fi |
|
|
321 | |
|
|
322 | kdedepend=" |
|
|
323 | dev-util/automoc |
|
|
324 | virtual/pkgconfig |
|
|
325 | !aqua? ( |
|
|
326 | >=x11-libs/libXtst-1.1.0 |
|
|
327 | x11-proto/xf86vidmodeproto |
|
|
328 | ) |
|
|
329 | " |
|
|
330 | |
|
|
331 | kderdepend="" |
|
|
332 | |
|
|
333 | # all packages needs oxygen icons for basic iconset |
|
|
334 | if [[ ${PN} != oxygen-icons ]]; then |
|
|
335 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
|
|
336 | fi |
|
|
337 | |
|
|
338 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
339 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
340 | for _lingua in ${KDE_LINGUAS}; do |
|
|
341 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
342 | # but only for selected ones. |
|
|
343 | # this can't be done on one line because if user doesn't use any localisation |
|
|
344 | # then he is probably not interested in kde-l10n at all. |
|
|
345 | kderdepend+=" |
|
|
346 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
224 | " |
347 | " |
225 | else |
348 | done |
226 | kdecommondepend="${kdecommondepend} |
349 | unset _lingua |
227 | >=kde-base/kdelibs${_pv} |
|
|
228 | " |
|
|
229 | fi |
|
|
230 | fi |
350 | fi |
231 | unset _pv _pvn |
351 | |
232 | kdedepend=" |
352 | kdehandbookdepend=" |
233 | >=dev-util/cmake-2.6.2 |
353 | app-text/docbook-xml-dtd:4.2 |
234 | dev-util/pkgconfig |
354 | app-text/docbook-xsl-stylesheets |
235 | >=sys-apps/sandbox-1.3.2 |
|
|
236 | " |
355 | " |
|
|
356 | kdehandbookrdepend=" |
|
|
357 | $(add_kdebase_dep kdelibs 'handbook') |
|
|
358 | " |
|
|
359 | case ${KDE_HANDBOOK} in |
|
|
360 | always) |
|
|
361 | kdedepend+=" ${kdehandbookdepend}" |
|
|
362 | [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}" |
|
|
363 | ;; |
|
|
364 | optional) |
|
|
365 | IUSE+=" +handbook" |
|
|
366 | kdedepend+=" handbook? ( ${kdehandbookdepend} )" |
|
|
367 | [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )" |
|
|
368 | ;; |
|
|
369 | *) ;; |
|
|
370 | esac |
|
|
371 | unset kdehandbookdepend kdehandbookrdepend |
|
|
372 | |
|
|
373 | case ${KDE_SELINUX_MODULE} in |
|
|
374 | none) ;; |
|
|
375 | *) |
|
|
376 | IUSE+=" selinux" |
|
|
377 | kdecommondepend+=" selinux? ( sec-policy/selinux-${KDE_SELINUX_MODULE} )" |
|
|
378 | ;; |
|
|
379 | esac |
|
|
380 | |
237 | case ${KDE_REQUIRED} in |
381 | case ${KDE_REQUIRED} in |
238 | always) |
382 | always) |
239 | COMMONDEPEND="${COMMONDEPEND} ${kdecommondepend}" |
383 | IUSE+=" aqua" |
240 | DEPEND="${DEPEND} ${kdedepend}" |
384 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}" |
|
|
385 | [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}" |
|
|
386 | [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}" |
241 | ;; |
387 | ;; |
242 | optional) |
388 | optional) |
243 | IUSE="${IUSE} kde" |
389 | IUSE+=" aqua kde" |
244 | COMMONDEPEND="${COMMONDEPEND} |
390 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
245 | kde? ( ${kdecommondepend} )" |
391 | [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )" |
246 | DEPEND="${DEPEND} |
392 | [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )" |
247 | kde? ( ${kdedepend} )" |
|
|
248 | ;; |
393 | ;; |
249 | *) ;; |
394 | *) ;; |
250 | esac |
395 | esac |
|
|
396 | |
251 | unset kdecommondepend kdedepend |
397 | unset kdecommondepend kdedepend kderdepend |
252 | |
398 | |
253 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
399 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
254 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
400 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
255 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
401 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
256 | |
402 | |
257 | # Accumulate dependencies set by this eclass |
403 | # Accumulate dependencies set by this eclass |
258 | DEPEND="${DEPEND} ${COMMONDEPEND}" |
404 | DEPEND+=" ${COMMONDEPEND}" |
259 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
405 | RDEPEND+=" ${COMMONDEPEND}" |
|
|
406 | unset COMMONDEPEND |
260 | |
407 | |
261 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
408 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
262 | # koffice ebuild, the URI should be set in the ebuild itself |
409 | # kdevelop ebuild, the URI should be set in the ebuild itself |
263 | case ${BUILD_TYPE} in |
410 | _calculate_src_uri() { |
264 | live) |
411 | debug-print-function ${FUNCNAME} "$@" |
265 | SRC_URI="" |
412 | |
266 | # @ECLASS-VARIABLE: ESVN_MIRROR |
413 | local _kmname _kmname_pv |
267 | # @DESCRIPTION: |
414 | |
268 | # This variable allows easy overriding of default kde mirror service |
415 | # we calculate URI only for known KDEBASE modules |
269 | # (anonsvn) with anything else you might want to use. |
416 | [[ -n ${KDEBASE} ]] || return |
270 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
417 | |
271 | # Split ebuild, or extragear stuff |
418 | # calculate tarball module name |
272 | if [[ -n ${KMNAME} ]]; then |
419 | if [[ -n ${KMNAME} ]]; then |
273 | ESVN_PROJECT="${KMNAME}" |
420 | # fixup kdebase-apps name |
274 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
275 | KMMODULE="${PN}" |
|
|
276 | fi |
|
|
277 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
278 | case ${KMNAME} in |
421 | case ${KMNAME} in |
279 | kdebase-*) |
422 | kdebase-apps) |
280 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/KDE/kdebase/${KMNAME#kdebase-}" |
423 | _kmname="kdebase" ;; |
|
|
424 | *) |
|
|
425 | _kmname="${KMNAME}" ;; |
|
|
426 | esac |
|
|
427 | else |
|
|
428 | _kmname=${PN} |
|
|
429 | fi |
|
|
430 | _kmname_pv="${_kmname}-${PV}" |
|
|
431 | case ${KDEBASE} in |
|
|
432 | kde-base) |
|
|
433 | case ${PV} in |
|
|
434 | 4.4.11.1) |
|
|
435 | # KDEPIM 4.4, special case |
|
|
436 | # TODO: Remove this part when KDEPIM 4.4 gets out of the tree |
|
|
437 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
438 | 4.[89].8[05] | 4.[89].9[0235678]) |
|
|
439 | # Unstable KDE SC releases |
|
|
440 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.xz" ;; |
|
|
441 | 4.[1234567].[12345]) |
|
|
442 | # Stable KDE SC with old .bz2 support |
|
|
443 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
444 | *) |
|
|
445 | # Stable KDE SC releases |
|
|
446 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.xz" ;; |
|
|
447 | esac |
281 | ;; |
448 | ;; |
282 | kdereview) |
449 | kdevelop|kdevelop-php*|kdevplatform) |
283 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
450 | case ${KDEVELOP_VERSION} in |
|
|
451 | 4.[12].[6-9]*) SRC_URI="mirror://kde/unstable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" ;; |
|
|
452 | *) SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" ;; |
|
|
453 | esac |
284 | ;; |
454 | ;; |
285 | kdesupport) |
455 | esac |
286 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
456 | } |
287 | ESVN_PROJECT="${PN}" |
457 | |
288 | ;; |
458 | _calculate_live_repo() { |
289 | kde*) |
459 | debug-print-function ${FUNCNAME} "$@" |
290 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/KDE/${KMNAME}" |
460 | |
291 | ;; |
461 | SRC_URI="" |
292 | extragear*|playground*) |
462 | case ${KDE_SCM} in |
293 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
463 | svn) |
294 | # build packages from same svn location. |
464 | # Determine branch URL based on live type |
295 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
465 | local branch_prefix |
296 | ESVN_PROJECT="${PN}" |
466 | case ${PV} in |
297 | ;; |
467 | 9999*) |
298 | koffice) |
468 | # trunk |
299 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
469 | branch_prefix="trunk/KDE" |
300 | ;; |
470 | ;; |
301 | *) |
471 | *) |
302 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
472 | # branch |
|
|
473 | branch_prefix="branches/KDE/$(get_kde_version)" |
|
|
474 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
475 | # @DESCRIPTION |
|
|
476 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
477 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
478 | ESVN_PROJECT_SUFFIX="-${PV}" |
303 | ;; |
479 | ;; |
304 | esac |
480 | esac |
305 | else |
481 | # @ECLASS-VARIABLE: ESVN_MIRROR |
306 | # kdelibs, kdepimlibs |
482 | # @DESCRIPTION: |
307 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/KDE/${PN}" |
483 | # This variable allows easy overriding of default kde mirror service |
308 | ESVN_PROJECT="${PN}" |
484 | # (anonsvn) with anything else you might want to use. |
309 | fi |
485 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
310 | # limit syncing to 1 hour. |
486 | # Split ebuild, or extragear stuff |
311 | ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
312 | ;; |
|
|
313 | *) |
|
|
314 | if [[ -n ${KDEBASE} ]]; then |
|
|
315 | if [[ -n ${KMNAME} ]]; then |
487 | if [[ -n ${KMNAME} ]]; then |
|
|
488 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
489 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
490 | KMMODULE="${PN}" |
|
|
491 | fi |
|
|
492 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
316 | case ${KMNAME} in |
493 | case ${KMNAME} in |
317 | kdebase-apps) |
494 | kdebase-*) |
318 | _kmname="kdebase" ;; |
495 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
496 | ;; |
|
|
497 | kdelibs-*) |
|
|
498 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
499 | ;; |
|
|
500 | kdereview*) |
|
|
501 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
502 | ;; |
|
|
503 | kdesupport) |
|
|
504 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
505 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
506 | ;; |
|
|
507 | kde*) |
|
|
508 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
509 | ;; |
|
|
510 | extragear*|playground*) |
|
|
511 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
512 | # build packages from same svn location. |
|
|
513 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
514 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
515 | ;; |
319 | *) |
516 | *) |
320 | _kmname="${KMNAME}" ;; |
517 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
518 | ;; |
321 | esac |
519 | esac |
|
|
520 | else |
|
|
521 | # kdelibs, kdepimlibs |
|
|
522 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
523 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
524 | fi |
|
|
525 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
526 | # @DESCRIPTION: |
|
|
527 | # This variable is used for specifying the timeout between svn synces |
|
|
528 | # for kde-base modules. Does not affect misc apps. |
|
|
529 | # Default value is 1 hour. |
|
|
530 | [[ ${KDEBASE} = kde-base ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
531 | ;; |
|
|
532 | git) |
|
|
533 | local _kmname |
|
|
534 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
535 | # @DESCRIPTION: |
|
|
536 | # This variable allows easy overriding of default kde mirror service |
|
|
537 | # (anongit) with anything else you might want to use. |
|
|
538 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
539 | |
|
|
540 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
541 | # @DESCRIPTION: |
|
|
542 | # This variable allows overriding of default repository |
|
|
543 | # name. Specify only if this differ from PN and KMNAME. |
|
|
544 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
545 | # the repository and kmname different |
|
|
546 | _kmname=${EGIT_REPONAME} |
|
|
547 | elif [[ -n ${KMNAME} ]]; then |
|
|
548 | _kmname=${KMNAME} |
322 | else |
549 | else |
323 | _kmname=${PN} |
550 | _kmname=${PN} |
324 | fi |
551 | fi |
325 | _kmname_pv="${_kmname}-${PV}" |
552 | |
326 | if [[ $NEED_KDE != live ]]; then |
553 | # default branching |
327 | case ${KDEBASE} in |
554 | [[ ${PV} != 9999* && ${KDEBASE} == kde-base ]] && \ |
328 | kde-base) |
555 | EGIT_BRANCH="KDE/$(get_kde_version)" |
329 | case ${PV} in |
556 | |
330 | 4.2.9* | 4.2.8* | 4.2.7* | 4.2.6*) |
557 | # default repo uri |
331 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/${_kmname_pv}.tar.lzma" ;; |
558 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
332 | 4.1.9* | 4.1.8* | 4.1.7* | 4.1.6* | 4.0.9* | 4.0.8*) |
559 | |
333 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
560 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
334 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
561 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
335 | esac |
|
|
336 | ;; |
|
|
337 | koffice) |
|
|
338 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
|
|
339 | ;; |
562 | ;; |
340 | esac |
563 | esac |
341 | fi |
564 | } |
342 | unset _kmname _kmname_pv |
565 | |
343 | fi |
566 | case ${KDE_BUILD_TYPE} in |
344 | ;; |
567 | live) _calculate_live_repo ;; |
|
|
568 | *) _calculate_src_uri ;; |
345 | esac |
569 | esac |
346 | |
570 | |
347 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
571 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
348 | |
572 | |
349 | # @ECLASS-VARIABLE: PREFIX |
573 | # @ECLASS-VARIABLE: PREFIX |
350 | # @DESCRIPTION: |
574 | # @DESCRIPTION: |
351 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
575 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
352 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
576 | # kde-base packages go into KDE4 installation directory (/usr). |
353 | # No matter the PREFIX, package will be built agains KDE installed in KDEDIR. |
577 | # No matter the PREFIX, package will be built against KDE installed in /usr. |
354 | |
578 | |
355 | # @FUNCTION: kde4-base_pkg_setup |
579 | # @FUNCTION: kde4-base_pkg_setup |
356 | # @DESCRIPTION: |
580 | # @DESCRIPTION: |
357 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
581 | # Do some basic settings |
358 | # optional applications link |
|
|
359 | kde4-base_pkg_setup() { |
582 | kde4-base_pkg_setup() { |
360 | debug-print-function ${FUNCNAME} "$@" |
583 | debug-print-function ${FUNCNAME} "$@" |
361 | |
584 | |
362 | # QA ebuilds |
585 | if has handbook ${IUSE} || has "+handbook" ${IUSE} && [ "${KDE_HANDBOOK}" != optional ] ; then |
363 | case ${NEED_KDE} in |
586 | eqawarn "Handbook support is enabled via KDE_HANDBOOK=optional in the ebuild." |
364 | none) ewarn "QA Notice: using deprecated NEED_KDE variable, use KDE_REQUIRED=\"never\" or KDE_REQUIRED=\"optional\" instead. You may want to override KDE_MINIMAL as well (default is KDE_MINIMAL=\"${KDE_MINIMAL}\")." ;; |
587 | eqawarn "Please do not just set IUSE=handbook, as this leads to dependency errors." |
365 | *) [[ -n ${NEED_KDE} ]] && ewarn "QA Notice: using deprecated NEED_KDE variable, use KDE_MINIMAL instead (default is KDE_MINIMAL=\"${KDE_MINIMAL}\")." ;; |
588 | fi |
366 | esac |
|
|
367 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
|
|
368 | |
589 | |
369 | # Don't set KDEHOME during compilation, it will cause access violations |
590 | # Don't set KDEHOME during compilation, it will cause access violations |
370 | unset KDEHOME |
591 | unset KDEHOME |
371 | |
592 | |
372 | if [[ ${KDEBASE} = kde-base ]]; then |
593 | # Check if gcc compiler is fresh enough. |
373 | if use kdeprefix; then |
594 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
374 | KDEDIR="/usr/kde/${_kdedir}" |
595 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
375 | else |
596 | # executions consume quite some time. |
376 | KDEDIR="/usr" |
597 | # We can only do this for EAPI 4 or later because the MERGE_TYPE variable |
|
|
598 | # is otherwise undefined. |
|
|
599 | if [[ ${EAPI:-0} != 3 ]]; then |
|
|
600 | if [[ ${MERGE_TYPE} != binary ]]; then |
|
|
601 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
602 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
603 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
377 | fi |
604 | fi |
378 | PREFIX="${PREFIX:-${KDEDIR}}" |
605 | fi |
379 | else |
606 | |
380 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
|
|
381 | KDEDIR= |
|
|
382 | local kde_minimal_met |
|
|
383 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
384 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
|
|
385 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
|
|
386 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
|
|
387 | KDEDIR="/usr/kde/${slot}" |
|
|
388 | else |
|
|
389 | KDEDIR="/usr" |
607 | KDEDIR=/usr |
390 | fi |
608 | : ${PREFIX:=/usr} |
391 | break; |
609 | EKDEDIR=${EPREFIX}/usr |
392 | fi |
|
|
393 | done |
|
|
394 | [[ -z KDEDIR ]] && die "Failed to determine KDEDIR!" |
|
|
395 | PREFIX="${PREFIX:-/usr}" |
|
|
396 | fi |
|
|
397 | |
610 | |
398 | # Not needed anymore |
611 | # Point to correct QT plugins path |
399 | unset _kdedir |
612 | QT_PLUGIN_PATH="${EPREFIX}/usr/$(get_libdir)/kde4/plugins/" |
400 | |
613 | |
401 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
614 | # Fix XDG collision with sandbox |
402 | echo |
615 | export XDG_CONFIG_HOME="${T}" |
403 | elog "WARNING! This is an experimental live ebuild of ${KMNAME:-${PN}}" |
|
|
404 | elog "Use it at your own risk." |
|
|
405 | elog "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
406 | echo |
|
|
407 | fi |
|
|
408 | } |
616 | } |
409 | |
617 | |
410 | # @FUNCTION: kde4-base_src_unpack |
618 | # @FUNCTION: kde4-base_src_unpack |
411 | # @DESCRIPTION: |
619 | # @DESCRIPTION: |
412 | # This function unpacks the source tarballs for KDE4 applications. |
620 | # This function unpacks the source tarballs for KDE4 applications. |
413 | kde4-base_src_unpack() { |
621 | kde4-base_src_unpack() { |
414 | debug-print-function ${FUNCNAME} "$@" |
622 | debug-print-function ${FUNCNAME} "$@" |
415 | |
623 | |
416 | if [[ ${BUILD_TYPE} = live ]]; then |
624 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
|
|
625 | case ${KDE_SCM} in |
|
|
626 | svn) |
417 | migrate_store_dir |
627 | migrate_store_dir |
418 | subversion_src_unpack |
628 | subversion_src_unpack |
|
|
629 | ;; |
|
|
630 | git) |
|
|
631 | git-2_src_unpack |
|
|
632 | ;; |
|
|
633 | esac |
419 | else |
634 | else |
420 | base_src_unpack |
635 | unpack ${A} |
421 | fi |
636 | fi |
422 | } |
637 | } |
423 | |
638 | |
424 | # @FUNCTION: kde4-base_src_compile |
639 | # @FUNCTION: kde4-base_src_prepare |
425 | # @DESCRIPTION: |
640 | # @DESCRIPTION: |
426 | # General pre-configure and pre-compile function for KDE4 applications. |
641 | # General pre-configure and pre-compile function for KDE4 applications. |
427 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
642 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
643 | # enable_selected_linguas() and enable_selected_doc_linguas() |
428 | # enable_selected_linguas() in kde4-functions.eclass(5) for further details. |
644 | # in kde4-functions.eclass(5) for further details. |
429 | kde4-base_src_prepare() { |
645 | kde4-base_src_prepare() { |
430 | debug-print-function ${FUNCNAME} "$@" |
646 | debug-print-function ${FUNCNAME} "$@" |
|
|
647 | |
|
|
648 | # enable handbook and linguas only when not using live ebuild |
431 | |
649 | |
432 | # Only enable selected languages, used for KDE extragear apps. |
650 | # Only enable selected languages, used for KDE extragear apps. |
433 | if [[ -n ${KDE_LINGUAS} ]]; then |
651 | if [[ -n ${KDE_LINGUAS} ]]; then |
434 | enable_selected_linguas |
652 | enable_selected_linguas |
435 | fi |
653 | fi |
436 | |
654 | |
|
|
655 | # Enable/disable handbooks for kde4-base packages |
|
|
656 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
|
|
657 | # kdelibs inherits kde4-base but handle installing the handbook itself |
|
|
658 | if ! has kde4-meta ${INHERITED} && in_iuse handbook; then |
|
|
659 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
660 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
661 | # documentation in kde4-functions |
|
|
662 | : ${KDE_DOC_DIRS:=doc} |
|
|
663 | local dir |
|
|
664 | for dir in ${KDE_DOC_DIRS}; do |
|
|
665 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
666 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
667 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
668 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
669 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
670 | done |
|
|
671 | fi |
|
|
672 | else |
|
|
673 | enable_selected_doc_linguas |
|
|
674 | fi |
|
|
675 | fi |
|
|
676 | |
|
|
677 | # SCM bootstrap |
|
|
678 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
|
|
679 | case ${KDE_SCM} in |
|
|
680 | svn) subversion_src_prepare ;; |
|
|
681 | esac |
|
|
682 | fi |
|
|
683 | |
|
|
684 | # Apply patches |
437 | base_src_prepare |
685 | base_src_prepare |
438 | |
686 | |
439 | # Save library dependencies |
687 | # Save library dependencies |
440 | if [[ -n ${KMSAVELIBS} ]] ; then |
688 | if [[ -n ${KMSAVELIBS} ]] ; then |
441 | save_library_dependencies |
689 | save_library_dependencies |
… | |
… | |
443 | |
691 | |
444 | # Inject library dependencies |
692 | # Inject library dependencies |
445 | if [[ -n ${KMLOADLIBS} ]] ; then |
693 | if [[ -n ${KMLOADLIBS} ]] ; then |
446 | load_library_dependencies |
694 | load_library_dependencies |
447 | fi |
695 | fi |
|
|
696 | |
|
|
697 | # Hack for manuals relying on outdated DTD, only outside kde-base/... |
|
|
698 | if [[ -z ${KDEBASE} ]]; then |
|
|
699 | find "${S}" -name "*.docbook" \ |
|
|
700 | -exec sed -i -r \ |
|
|
701 | -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' {} + \ |
|
|
702 | || die 'failed to fix DocBook variant version' |
|
|
703 | fi |
448 | } |
704 | } |
449 | |
705 | |
450 | # @FUNCTION: kde4-base_src_configure |
706 | # @FUNCTION: kde4-base_src_configure |
451 | # @DESCRIPTION: |
707 | # @DESCRIPTION: |
452 | # Function for configuring the build of KDE4 applications. |
708 | # Function for configuring the build of KDE4 applications. |
453 | kde4-base_src_configure() { |
709 | kde4-base_src_configure() { |
454 | debug-print-function ${FUNCNAME} "$@" |
710 | debug-print-function ${FUNCNAME} "$@" |
455 | |
711 | |
|
|
712 | # Build tests in src_test only, where we override this value |
|
|
713 | local cmakeargs=(-DKDE4_BUILD_TESTS=OFF) |
|
|
714 | |
|
|
715 | if use_if_iuse debug; then |
|
|
716 | # Set "real" debug mode |
|
|
717 | CMAKE_KDE_BUILD_TYPE="Debugfull" |
|
|
718 | else |
456 | # Handle common release builds |
719 | # Handle common release builds |
457 | if ! has debug ${IUSE//+} || ! use debug; then |
|
|
458 | append-cppflags -DQT_NO_DEBUG |
720 | append-cppflags -DQT_NO_DEBUG |
459 | fi |
721 | fi |
460 | |
722 | |
461 | # Build tests in src_test only, where we override this value |
|
|
462 | local cmakeargs="-DKDE4_BUILD_TESTS=OFF" |
|
|
463 | |
|
|
464 | # Set distribution name |
723 | # Set distribution name |
465 | [[ ${PN} = kdelibs ]] && cmakeargs="${cmakeargs} -DKDE_DISTRIBUTION_TEXT=Gentoo" |
724 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
466 | |
725 | |
467 | # Here we set the install prefix |
726 | # Here we set the install prefix |
468 | cmakeargs="${cmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
727 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
469 | |
728 | |
470 | # Set environment |
729 | # Use colors |
471 | QTEST_COLORED=1 |
730 | QTEST_COLORED=1 |
472 | QT_PLUGIN_PATH="${KDEDIR}/$(get_libdir)/kde4/plugins/" |
|
|
473 | |
731 | |
474 | # Hardcode path to *.pc KDE files |
|
|
475 | export PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+${PKG_CONFIG_PATH}:}${KDEDIR}/$(get_libdir)/pkgconfig" |
|
|
476 | |
|
|
477 | # Shadow existing /usr installations |
732 | # Shadow existing installations |
478 | unset KDEDIRS |
733 | unset KDEDIRS |
479 | |
734 | |
480 | # Override some environment variables - only when kdeprefix is different, |
735 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
481 | # to not break ccache/distcc |
736 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/$(get_libdir)/qt4) |
482 | if [[ ${KDEDIR} != /usr ]]; then |
737 | #kde-config -path data unavailable when cross-compiling |
483 | PATH="${KDEDIR}/bin:${PATH}" |
738 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
484 | LDPATH="${KDEDIR}/$(get_libdir):${LDPATH}" |
739 | |
|
|
740 | # sysconf needs to be /etc, not /usr/etc |
|
|
741 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
|
|
742 | |
|
|
743 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
744 | if [[ ${mycmakeargs} ]]; then |
|
|
745 | eqawarn "mycmakeargs should always be declared as an array, not a string" |
485 | fi |
746 | fi |
486 | |
747 | mycmakeargs=(${mycmakeargs}) |
487 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
488 | # Set cmake prefixes to allow buildsystem to localize valid KDE installation |
|
|
489 | # when more are present |
|
|
490 | cmakeargs="${cmakeargs} -DCMAKE_SYSTEM_PREFIX_PATH=${KDEDIR}" |
|
|
491 | else |
|
|
492 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
493 | cmakeargs="${cmakeargs} -DSYSCONF_INSTALL_DIR=/etc" |
|
|
494 | fi |
748 | fi |
495 | |
749 | |
496 | mycmakeargs="${cmakeargs} ${mycmakeargs}" |
750 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
497 | |
751 | |
498 | cmake-utils_src_configure |
752 | cmake-utils_src_configure |
499 | } |
753 | } |
500 | |
754 | |
501 | # @FUNCTION: kde4-base_src_compile |
755 | # @FUNCTION: kde4-base_src_compile |
502 | # @DESCRIPTION: |
756 | # @DESCRIPTION: |
503 | # General function for compiling KDE4 applications. |
757 | # General function for compiling KDE4 applications. |
504 | kde4-base_src_compile() { |
758 | kde4-base_src_compile() { |
505 | debug-print-function ${FUNCNAME} "$@" |
759 | debug-print-function ${FUNCNAME} "$@" |
506 | |
760 | |
507 | cmake-utils_src_compile |
761 | cmake-utils_src_compile "$@" |
508 | } |
762 | } |
509 | |
763 | |
510 | # @FUNCTION: kde4-base_src_test |
764 | # @FUNCTION: kde4-base_src_test |
511 | # @DESCRIPTION: |
765 | # @DESCRIPTION: |
512 | # Function for testing KDE4 applications. |
766 | # Function for testing KDE4 applications. |
513 | kde4-base_src_test() { |
767 | kde4-base_src_test() { |
514 | debug-print-function ${FUNCNAME} "$@" |
768 | debug-print-function ${FUNCNAME} "$@" |
515 | |
769 | |
|
|
770 | local kded4_pid |
|
|
771 | |
|
|
772 | _test_runner() { |
|
|
773 | if [[ -n "${VIRTUALDBUS_TEST}" ]]; then |
|
|
774 | export $(dbus-launch) |
|
|
775 | kded4 2>&1 > /dev/null & |
|
|
776 | kded4_pid=$! |
|
|
777 | fi |
|
|
778 | |
|
|
779 | cmake-utils_src_test |
|
|
780 | } |
|
|
781 | |
|
|
782 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
783 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
784 | # emerge or on the tinderbox. |
|
|
785 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
786 | unset DBUS_SESSION_BUS_ADDRESS DBUS_SESSION_BUS_PID |
|
|
787 | |
516 | # Override this value, set in kde4-base_src_configure() |
788 | # Override this value, set in kde4-base_src_configure() |
517 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=ON" |
789 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
518 | cmake-utils_src_configure |
790 | cmake-utils_src_configure |
519 | kde4-base_src_compile |
791 | kde4-base_src_compile |
520 | |
792 | |
521 | cmake-utils_src_test |
793 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
794 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
795 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
|
|
796 | # surprise- we are already INSIDE virtualmake!!! |
|
|
797 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
798 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
799 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
800 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
801 | _test_runner |
|
|
802 | else |
|
|
803 | VIRTUALX_COMMAND="_test_runner" virtualmake |
|
|
804 | fi |
|
|
805 | else |
|
|
806 | _test_runner |
|
|
807 | fi |
|
|
808 | |
|
|
809 | if [ -n "${kded4_pid}" ] ; then |
|
|
810 | kill ${kded4_pid} |
|
|
811 | fi |
|
|
812 | |
|
|
813 | if [ -n "${DBUS_SESSION_BUS_PID}" ] ; then |
|
|
814 | kill ${DBUS_SESSION_BUS_PID} |
|
|
815 | fi |
522 | } |
816 | } |
523 | |
817 | |
524 | # @FUNCTION: kde4-base_src_install |
818 | # @FUNCTION: kde4-base_src_install |
525 | # @DESCRIPTION: |
819 | # @DESCRIPTION: |
526 | # Function for installing KDE4 applications. |
820 | # Function for installing KDE4 applications. |
… | |
… | |
529 | |
823 | |
530 | if [[ -n ${KMSAVELIBS} ]] ; then |
824 | if [[ -n ${KMSAVELIBS} ]] ; then |
531 | install_library_dependencies |
825 | install_library_dependencies |
532 | fi |
826 | fi |
533 | |
827 | |
534 | kde4-base_src_make_doc |
828 | # Install common documentation of KDE4 applications |
|
|
829 | local doc |
|
|
830 | if ! has kde4-meta ${INHERITED}; then |
|
|
831 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
832 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
|
|
833 | done |
|
|
834 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
835 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
836 | done |
|
|
837 | fi |
|
|
838 | |
535 | cmake-utils_src_install |
839 | cmake-utils_src_install |
536 | } |
|
|
537 | |
840 | |
538 | # @FUNCTION: kde4-base_src_make_doc |
841 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
539 | # @DESCRIPTION: |
842 | # because then khelpcenter can't find the docs |
540 | # Function for installing the documentation of KDE4 applications. |
843 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
541 | kde4-base_src_make_doc() { |
844 | docompress -x ${PREFIX}/share/doc/HTML |
542 | debug-print-function ${FUNCNAME} "$@" |
845 | } |
543 | |
846 | |
544 | local doc |
847 | # @FUNCTION: kde4-base_pkg_preinst |
545 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
848 | # @DESCRIPTION: |
546 | [[ -s ${doc} ]] && dodoc ${doc} |
849 | # Function storing icon caches |
547 | done |
850 | kde4-base_pkg_preinst() { |
|
|
851 | debug-print-function ${FUNCNAME} "$@" |
548 | |
852 | |
549 | if [[ -z ${KMNAME} ]]; then |
853 | gnome2_icon_savelist |
550 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
854 | if [[ ${KDE_BUILD_TYPE} == live && ${KDE_SCM} == svn ]]; then |
551 | if [[ -s ${doc} ]]; then |
855 | subversion_pkg_preinst |
552 | local doc_complete=${doc} |
|
|
553 | doc="${doc#*/}" |
|
|
554 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
555 | fi |
|
|
556 | done |
|
|
557 | fi |
|
|
558 | |
|
|
559 | if [[ -n ${KDEBASE} ]] && [[ -d "${D}/usr/share/doc/${PF}" ]]; then |
|
|
560 | # work around bug #97196 |
|
|
561 | dodir /usr/share/doc/KDE4 && \ |
|
|
562 | mv "${D}/usr/share/doc/${PF}" "${D}"/usr/share/doc/KDE4/ || \ |
|
|
563 | die "Failed to move docs to KDE4/." |
|
|
564 | fi |
856 | fi |
565 | } |
857 | } |
566 | |
858 | |
567 | # @FUNCTION: kde4-base_pkg_postinst |
859 | # @FUNCTION: kde4-base_pkg_postinst |
568 | # @DESCRIPTION: |
860 | # @DESCRIPTION: |
569 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
861 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
570 | kde4-base_pkg_postinst() { |
862 | kde4-base_pkg_postinst() { |
571 | debug-print-function ${FUNCNAME} "$@" |
863 | debug-print-function ${FUNCNAME} "$@" |
572 | |
864 | |
|
|
865 | gnome2_icon_cache_update |
|
|
866 | fdo-mime_desktop_database_update |
|
|
867 | fdo-mime_mime_database_update |
573 | buildsycoca |
868 | buildsycoca |
|
|
869 | |
|
|
870 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
871 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
|
|
872 | echo |
|
|
873 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
874 | einfo "Use it at your own risk." |
|
|
875 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
876 | echo |
|
|
877 | fi |
|
|
878 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
879 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
880 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
881 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
882 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
883 | echo |
|
|
884 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
885 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
886 | ewarn "With this setting you are unsupported by KDE team." |
|
|
887 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
888 | fi |
|
|
889 | fi |
|
|
890 | fi |
574 | } |
891 | } |
575 | |
892 | |
576 | # @FUNCTION: kde4-base_pkg_postrm |
893 | # @FUNCTION: kde4-base_pkg_postrm |
577 | # @DESCRIPTION: |
894 | # @DESCRIPTION: |
578 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
895 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
579 | kde4-base_pkg_postrm() { |
896 | kde4-base_pkg_postrm() { |
580 | debug-print-function ${FUNCNAME} "$@" |
897 | debug-print-function ${FUNCNAME} "$@" |
581 | |
898 | |
|
|
899 | gnome2_icon_cache_update |
|
|
900 | fdo-mime_desktop_database_update |
|
|
901 | fdo-mime_mime_database_update |
582 | buildsycoca |
902 | buildsycoca |
583 | } |
903 | } |