| 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.18 2008/11/22 01:23:31 jmbsvicetto Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.93 2011/05/23 22:56:36 abcd Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: kde4-base.eclass |
5 | # @ECLASS: kde4-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The kde4-base.eclass provides support for building KDE4 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 currently support EAPI "3". This will be reviewed |
| 14 | # and use deps from EAPI="2", hence you must define EAPI="2" in the ebuild, |
14 | # over time as new EAPI versions are approved. |
| 15 | # before inheriting any eclasses. |
|
|
| 16 | |
15 | |
| 17 | inherit base cmake-utils eutils kde4-functions multilib |
16 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # For proper description see virtualx.eclass manpage. |
|
|
19 | # Here we redefine default value to be manual, if your package needs virtualx |
|
|
20 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
|
|
21 | : ${VIRTUALX_REQUIRED:=manual} |
| 18 | |
22 | |
| 19 | case "${EAPI}" in |
23 | inherit kde4-functions toolchain-funcs fdo-mime gnome2-utils base virtualx versionator eutils |
| 20 | 2) |
|
|
| 21 | EXPORT_FUNCTIONS pkg_setup src_unpack src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
|
|
| 22 | ;; |
|
|
| 23 | *) |
|
|
| 24 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
|
|
| 25 | ;; |
|
|
| 26 | esac |
|
|
| 27 | |
24 | |
| 28 | # Set the qt dependencies |
25 | if [[ ${BUILD_TYPE} = live ]]; then |
| 29 | kde4-base_set_qt_dependencies() { |
26 | case ${KDE_SCM} in |
| 30 | local qt qtcore qtgui qt3support qtdepend qtopengldepend |
27 | svn) inherit subversion ;; |
| 31 | |
28 | git) inherit git-2 ;; |
| 32 | # use dependencies |
|
|
| 33 | case "${EAPI}" in |
|
|
| 34 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 35 | |
|
|
| 36 | qt="[" |
|
|
| 37 | case "${OPENGL_REQUIRED}" in |
|
|
| 38 | always) |
|
|
| 39 | qt="${qt}opengl," |
|
|
| 40 | ;; |
|
|
| 41 | optional) |
|
|
| 42 | qt="${qt}opengl?," |
|
|
| 43 | ;; |
|
|
| 44 | esac |
|
|
| 45 | qt="${qt}accessibility,dbus,gif,jpeg,png,qt3support,ssl,zlib]" |
|
|
| 46 | qtcore="[qt3support,ssl]" |
|
|
| 47 | qtgui="[accessibility,dbus]" |
|
|
| 48 | qt3support="[accessibility]" |
|
|
| 49 | ;; |
|
|
| 50 | esac |
29 | esac |
|
|
30 | fi |
| 51 | |
31 | |
| 52 | # split qt |
32 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 53 | qtdepend=" |
33 | # @DESCRIPTION: |
| 54 | x11-libs/qt-core:4${qtcore} |
34 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
| 55 | x11-libs/qt-gui:4${qtgui} |
35 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
| 56 | x11-libs/qt-qt3support:4${qt3support} |
36 | # src_configure, src_compile, src_test and src_install. |
| 57 | x11-libs/qt-script:4 |
37 | # Defaults to 'always'. |
| 58 | x11-libs/qt-svg:4 |
38 | : ${CMAKE_REQUIRED:=always} |
| 59 | x11-libs/qt-test:4" |
39 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
| 60 | qtopengldepend="x11-libs/qt-opengl:4" |
40 | buildsystem_eclass="cmake-utils" |
|
|
41 | export_fns="src_configure src_compile src_test src_install" |
|
|
42 | fi |
| 61 | |
43 | |
| 62 | # allow monolithic qt for PV < 4.1 |
44 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
|
|
45 | if [[ -n ${KDE_MINIMAL} ]]; then |
|
|
46 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
47 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
|
|
48 | done |
|
|
49 | unset slot |
|
|
50 | [[ -z ${KDE_MINIMAL_VALID} ]] && unset KDE_MINIMAL |
|
|
51 | else |
|
|
52 | KDE_MINIMAL_VALID=1 |
|
|
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 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
|
|
61 | # Note that it is fixed to ${SLOT} for kde-base packages. |
|
|
62 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
|
|
63 | |
|
|
64 | # Set slot for KDEBASE known packages |
|
|
65 | case ${KDEBASE} in |
|
|
66 | kde-base) |
|
|
67 | SLOT=$(_calculate_kde_slot) |
|
|
68 | [[ -z ${SLOT} ]] && die "Unsupported ${PV}" |
|
|
69 | KDE_MINIMAL="${SLOT}" |
|
|
70 | ;; |
|
|
71 | koffice) |
|
|
72 | SLOT="2" |
|
|
73 | ;; |
|
|
74 | kdevelop) |
|
|
75 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
76 | # @ECLASS-VARIABLE: KDEVELOP_VERSION |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifies KDevelop version. Default is 4.0.0 for tagged packages and 9999 for live packages. |
|
|
79 | # Applies to KDEBASE=kdevelop only. |
|
|
80 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-9999}" |
|
|
81 | # @ECLASS-VARIABLE: KDEVPLATFORM_VERSION |
|
|
82 | # @DESCRIPTION: |
|
|
83 | # Specifies KDevplatform version. Default is 1.0.0 for tagged packages and 9999 for live packages. |
|
|
84 | # Applies to KDEBASE=kdevelop only. |
|
|
85 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-9999}" |
|
|
86 | else |
| 63 | case "${PV}" in |
87 | case ${PN} in |
| 64 | scm|9999*|4.1*|4.0.9*|4.0.8*) : ;; |
88 | kdevelop|quanta) |
|
|
89 | KDEVELOP_VERSION=${PV} |
|
|
90 | KDEVPLATFORM_VERSION="$(($(get_major_version)-3)).$(get_after_major_version)" |
|
|
91 | ;; |
|
|
92 | kdevplatform) |
|
|
93 | KDEVELOP_VERSION="$(($(get_major_version)+3)).$(get_after_major_version)" |
|
|
94 | KDEVPLATFORM_VERSION=${PV} |
|
|
95 | ;; |
| 65 | *) |
96 | *) |
| 66 | qtdepend="|| ( ( ${qtdepend} ) >=x11-libs/qt-4.3.3:4${qt} )" |
97 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.0.0}" |
| 67 | qtopengldepend="|| ( ${qtopengldepend} >=x11-libs/qt-4.3.3:4 )" |
98 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-1.0.0}" |
|
|
99 | esac |
|
|
100 | fi |
|
|
101 | SLOT="4" |
| 68 | ;; |
102 | ;; |
| 69 | esac |
103 | esac |
| 70 | |
104 | |
| 71 | # opengl dependencies |
105 | inherit ${buildsystem_eclass} |
| 72 | case "${OPENGL_REQUIRED}" in |
|
|
| 73 | always) |
|
|
| 74 | qtdepend="${qtdepend} |
|
|
| 75 | ${qtopengldepend}" |
|
|
| 76 | ;; |
|
|
| 77 | optional) |
|
|
| 78 | IUSE="${IUSE} opengl" |
|
|
| 79 | qtdepend="${qtdepend} |
|
|
| 80 | opengl? ( ${qtopengldepend} )" |
|
|
| 81 | ;; |
|
|
| 82 | *) |
|
|
| 83 | OPENGL_REQUIRED="never" |
|
|
| 84 | ;; |
|
|
| 85 | esac |
|
|
| 86 | |
106 | |
| 87 | COMMONDEPEND="${COMMONDEPEND} ${qtdepend} !x11-libs/qt-phonon" |
107 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm |
| 88 | } |
|
|
| 89 | kde4-base_set_qt_dependencies |
|
|
| 90 | |
108 | |
| 91 | # Set the cmake dependencies |
109 | unset buildsystem_eclass |
| 92 | case "${PV}" in |
110 | unset export_fns |
| 93 | 9999*) |
|
|
| 94 | CMAKEDEPEND=">=dev-util/cmake-2.6" |
|
|
| 95 | ;; |
|
|
| 96 | *) |
|
|
| 97 | CMAKEDEPEND=">=dev-util/cmake-2.4.7-r1" |
|
|
| 98 | ;; |
|
|
| 99 | esac |
|
|
| 100 | |
111 | |
| 101 | # Set the common dependencies |
112 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
| 102 | DEPEND="${DEPEND} ${COMMONDEPEND} ${CMAKEDEPEND} |
113 | # @DESCRIPTION: |
| 103 | dev-util/pkgconfig |
114 | # Is qt-declarative required? Possible values are 'always', 'optional' and 'never'. |
| 104 | kde-base/automoc |
115 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 105 | x11-libs/libXt |
116 | DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}" |
| 106 | x11-proto/xf86vidmodeproto" |
|
|
| 107 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
|
|
| 108 | |
117 | |
| 109 | # Add the kdeprefix use flag |
118 | # @ECLASS-VARIABLE: QTHELP_REQUIRED |
| 110 | case "${EAPI}" in |
119 | # @DESCRIPTION: |
| 111 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
120 | # Is qt-assistant required? Possible values are 'always', 'optional' and 'never'. |
| 112 | IUSE="${IUSE} kdeprefix" |
121 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 113 | ;; |
122 | QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}" |
| 114 | esac |
|
|
| 115 | |
123 | |
| 116 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
124 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
| 117 | # @DESCRIPTION: |
125 | # @DESCRIPTION: |
| 118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
126 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
| 119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
127 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 120 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
128 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
| 121 | |
129 | |
|
|
130 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
|
|
131 | # @DESCRIPTION: |
|
|
132 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
|
|
133 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
134 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
|
|
135 | |
|
|
136 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
137 | # @DESCRIPTION: |
|
|
138 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
139 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
140 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
141 | |
| 122 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
142 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 123 | # @DESCRIPTION: |
143 | # @DESCRIPTION: |
| 124 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
144 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
| 125 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
145 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 126 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
146 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
| 127 | |
147 | |
| 128 | case "${CPPUNIT_REQUIRED}" in |
148 | # @ECLASS-VARIABLE: KDE_REQUIRED |
|
|
149 | # @DESCRIPTION: |
|
|
150 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
|
|
151 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
|
|
152 | # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well. |
|
|
153 | # Note that for kde-base packages this variable is fixed to 'always'. |
|
|
154 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
|
|
155 | |
|
|
156 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
|
|
157 | # @DESCRIPTION: |
|
|
158 | # Set to enable handbook in application. Possible values are 'always', 'optional' |
|
|
159 | # (handbook USE flag) and 'never'. |
|
|
160 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
161 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
|
|
162 | # ensures buildtime and runtime dependencies. |
|
|
163 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
164 | |
|
|
165 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
166 | # @DESCRIPTION: |
|
|
167 | # Set this varible if you want your live package to manage its |
|
|
168 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
169 | # and translations in live ebuilds) |
|
|
170 | if [[ ${BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
171 | # Kdebase actualy provides the handbooks even for live stuff |
|
|
172 | [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never |
|
|
173 | KDE_LINGUAS="" |
|
|
174 | fi |
|
|
175 | |
|
|
176 | # Setup packages inheriting this eclass |
|
|
177 | case ${KDEBASE} in |
|
|
178 | kde-base) |
|
|
179 | HOMEPAGE="http://www.kde.org/" |
|
|
180 | LICENSE="GPL-2" |
|
|
181 | if [[ $BUILD_TYPE = live ]]; then |
|
|
182 | # Disable tests for live ebuilds |
|
|
183 | RESTRICT+=" test" |
|
|
184 | # Live ebuilds in kde-base default to kdeprefix by default |
|
|
185 | IUSE+=" +kdeprefix" |
|
|
186 | else |
|
|
187 | # All other ebuild types default to -kdeprefix as before |
|
|
188 | IUSE+=" kdeprefix" |
|
|
189 | fi |
|
|
190 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
|
|
191 | # packages that will never be mirrored. (As they only will ever be in |
|
|
192 | # the overlay). |
|
|
193 | case ${PV} in |
|
|
194 | *9999* | 4.?.[6-9]?) |
|
|
195 | RESTRICT+=" mirror" |
|
|
196 | ;; |
|
|
197 | esac |
|
|
198 | # Block installation of other SLOTS unless kdeprefix |
|
|
199 | RDEPEND+=" $(block_other_slots)" |
|
|
200 | ;; |
|
|
201 | koffice) |
|
|
202 | HOMEPAGE="http://www.koffice.org/" |
|
|
203 | LICENSE="GPL-2" |
|
|
204 | ;; |
|
|
205 | kdevelop) |
|
|
206 | HOMEPAGE="http://www.kdevelop.org/" |
|
|
207 | LICENSE="GPL-2" |
|
|
208 | ;; |
|
|
209 | esac |
|
|
210 | |
|
|
211 | # @ECLASS-VARIABLE: QT_MINIMAL |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Determine version of qt we enforce as minimal for the package. |
|
|
214 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
|
|
215 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
|
|
216 | else |
|
|
217 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
|
|
218 | fi |
|
|
219 | |
|
|
220 | # Declarative dependencies |
|
|
221 | qtdeclarativedepend=" |
|
|
222 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
|
|
223 | " |
|
|
224 | case ${DECLARATIVE_REQUIRED} in |
| 129 | always) |
225 | always) |
| 130 | DEPEND="${DEPEND} dev-util/cppunit" |
226 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
| 131 | ;; |
227 | ;; |
| 132 | optional) |
228 | optional) |
| 133 | IUSE="${IUSE} test" |
229 | IUSE+=" declarative" |
| 134 | DEPEND="${DEPEND} |
230 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
| 135 | test? ( dev-util/cppunit )" |
|
|
| 136 | ;; |
231 | ;; |
| 137 | *) |
232 | *) ;; |
| 138 | CPPUNIT_REQUIRED="never" |
233 | esac |
|
|
234 | unset qtdeclarativedepend |
|
|
235 | |
|
|
236 | # QtHelp dependencies |
|
|
237 | qthelpdepend=" |
|
|
238 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
239 | " |
|
|
240 | case ${QTHELP_REQUIRED} in |
|
|
241 | always) |
|
|
242 | COMMONDEPEND+=" ${qthelpdepend}" |
| 139 | ;; |
243 | ;; |
|
|
244 | optional) |
|
|
245 | IUSE+=" qthelp" |
|
|
246 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
247 | ;; |
| 140 | esac |
248 | esac |
|
|
249 | unset qthelpdepend |
| 141 | |
250 | |
| 142 | # @ECLASS-VARIABLE: NEED_KDE |
251 | # OpenGL dependencies |
|
|
252 | qtopengldepend=" |
|
|
253 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
|
|
254 | " |
|
|
255 | case ${OPENGL_REQUIRED} in |
|
|
256 | always) |
|
|
257 | COMMONDEPEND+=" ${qtopengldepend}" |
|
|
258 | ;; |
|
|
259 | optional) |
|
|
260 | IUSE+=" opengl" |
|
|
261 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
|
|
262 | ;; |
|
|
263 | *) ;; |
|
|
264 | esac |
|
|
265 | unset qtopengldepend |
|
|
266 | |
|
|
267 | # MultiMedia dependencies |
|
|
268 | qtmultimediadepend=" |
|
|
269 | >=x11-libs/qt-multimedia-${QT_MINIMAL}:4 |
|
|
270 | " |
|
|
271 | case ${MULTIMEDIA_REQUIRED} in |
|
|
272 | always) |
|
|
273 | COMMONDEPEND+=" ${qtmultimediadepend}" |
|
|
274 | ;; |
|
|
275 | optional) |
|
|
276 | IUSE+=" multimedia" |
|
|
277 | COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )" |
|
|
278 | ;; |
|
|
279 | *) ;; |
|
|
280 | esac |
|
|
281 | unset qtmultimediadepend |
|
|
282 | |
|
|
283 | # WebKit dependencies |
|
|
284 | case ${KDE_REQUIRED} in |
|
|
285 | always) |
|
|
286 | qtwebkitusedeps="[kde]" |
|
|
287 | ;; |
|
|
288 | optional) |
|
|
289 | qtwebkitusedeps="[kde?]" |
|
|
290 | ;; |
|
|
291 | *) ;; |
|
|
292 | esac |
|
|
293 | qtwebkitdepend=" |
|
|
294 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
|
|
295 | " |
|
|
296 | unset qtwebkitusedeps |
|
|
297 | case ${WEBKIT_REQUIRED} in |
|
|
298 | always) |
|
|
299 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
300 | ;; |
|
|
301 | optional) |
|
|
302 | IUSE+=" webkit" |
|
|
303 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
304 | ;; |
|
|
305 | *) ;; |
|
|
306 | esac |
|
|
307 | unset qtwebkitdepend |
|
|
308 | |
|
|
309 | # CppUnit dependencies |
|
|
310 | cppuintdepend=" |
|
|
311 | dev-util/cppunit |
|
|
312 | " |
|
|
313 | case ${CPPUNIT_REQUIRED} in |
|
|
314 | always) |
|
|
315 | DEPEND+=" ${cppuintdepend}" |
|
|
316 | ;; |
|
|
317 | optional) |
|
|
318 | IUSE+=" test" |
|
|
319 | DEPEND+=" test? ( ${cppuintdepend} )" |
|
|
320 | ;; |
|
|
321 | *) ;; |
|
|
322 | esac |
|
|
323 | unset cppuintdepend |
|
|
324 | |
|
|
325 | # KDE dependencies |
|
|
326 | # Qt accessibility classes are needed in various places, bug 325461 |
|
|
327 | kdecommondepend=" |
|
|
328 | dev-lang/perl |
|
|
329 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
|
|
330 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
|
|
331 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
|
|
332 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
|
|
333 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
|
|
334 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
|
|
335 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
336 | !aqua? ( |
|
|
337 | x11-libs/libXext |
|
|
338 | x11-libs/libXt |
|
|
339 | x11-libs/libXxf86vm |
|
|
340 | x11-libs/libXcomposite |
|
|
341 | ) |
|
|
342 | " |
|
|
343 | |
|
|
344 | if [[ ${PN} != kdelibs ]]; then |
|
|
345 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
|
|
346 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
347 | if [[ ${PN} != kdevplatform ]]; then |
|
|
348 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
| 143 | # @DESCRIPTION: |
349 | # @DESCRIPTION: |
| 144 | # This variable sets the version of KDE4 which will be used by the eclass. |
350 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
| 145 | # This variable must be set by the ebuild, for all categories except for "kde-base". |
351 | # Applies to KDEBASE=kdevelop only. |
| 146 | # For kde-base packages, if it is not set by the ebuild, |
352 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
| 147 | # it's assumed that the required KDE4 version is the latest, non-live, available. |
353 | case ${KDEVPLATFORM_REQUIRED} in |
| 148 | # |
354 | always) |
| 149 | # @CODE |
355 | kdecommondepend+=" |
| 150 | # Acceptable values are: |
356 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
| 151 | # - latest - Use latest version in the portage tree |
357 | " |
| 152 | # Default for kde-base ebuilds. Banned for ebuilds not part of kde or koffice. |
358 | ;; |
| 153 | # - svn - Use svn release (live ebuilds) |
|
|
| 154 | # - :SLOT - Use any version in the SLOT specified in the NEED_KDE value. |
|
|
| 155 | # - VERSION_NUMBER - Use the minimum KDE4 version specified in the NEED_KDE value. |
|
|
| 156 | # - VERSION_NUMBER:SLOT - Use the minimum KDE4 version and the SLOT specified in the NEED_KDE value. |
|
|
| 157 | # - none - Let the ebuild handle SLOT, kde dependencies, KDEDIR, ... |
|
|
| 158 | # @CODE |
|
|
| 159 | # |
|
|
| 160 | # Note: There is no default NEED_KDE for ebuilds not in kde-base or part of |
|
|
| 161 | # koffice, so you must set it explicitly in the ebuild, in all other cases. |
|
|
| 162 | if [[ -z ${NEED_KDE} ]]; then |
|
|
| 163 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 164 | NEED_KDE="latest" |
|
|
| 165 | else |
|
|
| 166 | die "kde4-base.eclass inherited but NEED_KDE not defined - broken ebuild" |
|
|
| 167 | fi |
|
|
| 168 | fi |
|
|
| 169 | export NEED_KDE |
|
|
| 170 | |
|
|
| 171 | case ${NEED_KDE} in |
|
|
| 172 | latest) |
|
|
| 173 | # Should only be used by 'kde-base'-ebuilds |
|
|
| 174 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
|
|
| 175 | case ${PV} in |
|
|
| 176 | 4.1*| 4.0.9* | 4.0.8*) |
|
|
| 177 | _kdedir="4.1" |
|
|
| 178 | _pv="-${PV}:4.1" ;; |
|
|
| 179 | 4.0*) |
|
|
| 180 | _kdedir="4.0" |
|
|
| 181 | _pv="-${PV}:kde-4" ;; |
|
|
| 182 | 3.9*) |
|
|
| 183 | _kdedir="3.9" |
|
|
| 184 | _pv="-${PV}:kde-4" ;; |
|
|
| 185 | *) |
359 | *) ;; |
| 186 | die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 187 | esac |
|
|
| 188 | _operator=">=" |
|
|
| 189 | else |
|
|
| 190 | case ${PV} in |
|
|
| 191 | 4.1 | 4.0.9* | 4.0.8*) _kdedir="4.1" ;; |
|
|
| 192 | 4.0*) _kdedir="4.0" ;; |
|
|
| 193 | 3.9*) _kdedir="3.9" ;; |
|
|
| 194 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 195 | esac |
360 | esac |
| 196 | fi |
361 | fi |
| 197 | ;; |
362 | fi |
|
|
363 | fi |
| 198 | |
364 | |
| 199 | # NEED_KDE=":${SLOT}" |
365 | kdedepend=" |
| 200 | :kde-svn) |
366 | dev-util/automoc |
| 201 | _kdedir="svn" |
367 | dev-util/pkgconfig |
| 202 | _pv="-${NEED_KDE}" |
368 | !aqua? ( |
| 203 | export NEED_KDE="svn" |
369 | >=x11-libs/libXtst-1.1.0 |
| 204 | ;; |
370 | x11-proto/xf86vidmodeproto |
| 205 | :4.1) |
|
|
| 206 | _kdedir="4.1" |
|
|
| 207 | _pv="${NEED_KDE}" |
|
|
| 208 | ;; |
|
|
| 209 | :kde-4) |
|
|
| 210 | _kdedir="4.0" |
|
|
| 211 | _pv="${NEED_KDE}" |
|
|
| 212 | ;; |
|
|
| 213 | |
|
|
| 214 | # NEED_KDE="${PV}:${SLOT}" |
|
|
| 215 | *:kde-svn) |
|
|
| 216 | _kdedir="svn" |
|
|
| 217 | _operator=">=" |
|
|
| 218 | _pv="-${NEED_KDE}" |
|
|
| 219 | export NEED_KDE="svn" |
|
|
| 220 | ;; |
|
|
| 221 | *:4.1) |
|
|
| 222 | _kdedir="4.1" |
|
|
| 223 | _operator=">=" |
|
|
| 224 | _pv="-${NEED_KDE}" |
|
|
| 225 | ;; |
|
|
| 226 | *:kde-4) |
|
|
| 227 | _kdedir="4.0" |
|
|
| 228 | _operator=">=" |
|
|
| 229 | _pv="-${NEED_KDE}" |
|
|
| 230 | ;; |
|
|
| 231 | |
|
|
| 232 | # NEED_KDE="${PV}" |
|
|
| 233 | scm|svn|9999*) |
|
|
| 234 | _kdedir="svn" |
|
|
| 235 | _operator=">=" |
|
|
| 236 | _pv="-${NEED_KDE}:kde-svn" |
|
|
| 237 | export NEED_KDE="svn" |
|
|
| 238 | ;; |
|
|
| 239 | 4.1 | 4.0.9* | 4.0.8*) |
|
|
| 240 | _kdedir="4.1" |
|
|
| 241 | _operator=">=" |
|
|
| 242 | _pv="-${NEED_KDE}:4.1" |
|
|
| 243 | ;; |
|
|
| 244 | 4.0* | 4) |
|
|
| 245 | _kdedir="4.0" |
|
|
| 246 | _operator=">=" |
|
|
| 247 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 248 | ;; |
|
|
| 249 | 3.9*) |
|
|
| 250 | _kdedir="3.9" |
|
|
| 251 | _operator=">=" |
|
|
| 252 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 253 | ;; |
|
|
| 254 | |
|
|
| 255 | # The ebuild handles dependencies, KDEDIR, SLOT. |
|
|
| 256 | none) |
|
|
| 257 | : |
|
|
| 258 | ;; |
|
|
| 259 | |
|
|
| 260 | *) |
371 | ) |
| 261 | die "NEED_KDE=${NEED_KDE} currently not supported." |
372 | " |
| 262 | ;; |
|
|
| 263 | esac |
|
|
| 264 | |
373 | |
| 265 | if [[ ${NEED_KDE} != none ]]; then |
374 | kderdepend="" |
| 266 | |
375 | |
| 267 | #Set the SLOT |
376 | # all packages needs oxygen icons for basic iconset |
|
|
377 | if [[ ${PN} != oxygen-icons ]]; then |
|
|
378 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
|
|
379 | fi |
|
|
380 | |
|
|
381 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
382 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
383 | for _lingua in ${KDE_LINGUAS}; do |
|
|
384 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
385 | # but only for selected ones. |
|
|
386 | # this can't be done on one line because if user doesn't use any localisation |
|
|
387 | # then he is probably not interested in kde-l10n at all. |
|
|
388 | kderdepend+=" |
|
|
389 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
|
|
390 | " |
|
|
391 | done |
|
|
392 | unset _lingua |
|
|
393 | fi |
|
|
394 | |
|
|
395 | kdehandbookdepend=" |
|
|
396 | app-text/docbook-xml-dtd:4.2 |
|
|
397 | app-text/docbook-xsl-stylesheets |
|
|
398 | " |
|
|
399 | kdehandbookrdepend=" |
|
|
400 | $(add_kdebase_dep kdelibs 'handbook') |
|
|
401 | " |
|
|
402 | case ${KDE_HANDBOOK} in |
|
|
403 | always) |
|
|
404 | kdedepend+=" ${kdehandbookdepend}" |
|
|
405 | [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}" |
|
|
406 | ;; |
|
|
407 | optional) |
|
|
408 | IUSE+=" +handbook" |
|
|
409 | kdedepend+=" handbook? ( ${kdehandbookdepend} )" |
|
|
410 | [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )" |
|
|
411 | ;; |
|
|
412 | *) ;; |
|
|
413 | esac |
|
|
414 | unset kdehandbookdepend kdehandbookrdepend |
|
|
415 | |
|
|
416 | case ${KDE_REQUIRED} in |
|
|
417 | always) |
|
|
418 | IUSE+=" aqua" |
|
|
419 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}" |
|
|
420 | [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}" |
|
|
421 | [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}" |
|
|
422 | ;; |
|
|
423 | optional) |
|
|
424 | IUSE+=" aqua kde" |
|
|
425 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
|
|
426 | [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )" |
|
|
427 | [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )" |
|
|
428 | ;; |
|
|
429 | *) ;; |
|
|
430 | esac |
|
|
431 | |
|
|
432 | unset kdecommondepend kdedepend kderdepend |
|
|
433 | |
|
|
434 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
|
|
435 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
|
|
436 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
|
|
437 | |
|
|
438 | # Accumulate dependencies set by this eclass |
|
|
439 | DEPEND+=" ${COMMONDEPEND}" |
|
|
440 | RDEPEND+=" ${COMMONDEPEND}" |
|
|
441 | unset COMMONDEPEND |
|
|
442 | |
|
|
443 | # Add experimental kdeenablefinal, masked by default |
|
|
444 | IUSE+=" kdeenablefinal" |
|
|
445 | |
|
|
446 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
|
|
447 | # koffice ebuild, the URI should be set in the ebuild itself |
|
|
448 | _calculate_src_uri() { |
|
|
449 | debug-print-function ${FUNCNAME} "$@" |
|
|
450 | |
|
|
451 | local _kmname _kmname_pv |
|
|
452 | |
|
|
453 | # we calculate URI only for known KDEBASE modules |
|
|
454 | [[ -n ${KDEBASE} ]] || return |
|
|
455 | |
|
|
456 | # calculate tarball module name |
| 268 | if [[ -n ${KDEBASE} ]]; then |
457 | if [[ -n ${KMNAME} ]]; then |
| 269 | if [[ ${NEED_KDE} = svn ]]; then |
458 | # fixup kdebase-apps name |
| 270 | SLOT="kde-svn" |
459 | case ${KMNAME} in |
|
|
460 | kdebase-apps) |
|
|
461 | _kmname="kdebase" ;; |
|
|
462 | *) |
|
|
463 | _kmname="${KMNAME}" ;; |
|
|
464 | esac |
| 271 | else |
465 | else |
|
|
466 | _kmname=${PN} |
|
|
467 | fi |
|
|
468 | _kmname_pv="${_kmname}-${PV}" |
|
|
469 | case ${KDEBASE} in |
|
|
470 | kde-base) |
| 272 | case ${PV} in |
471 | case ${PV} in |
| 273 | 4.1* | 4.0.9* | 4.0.8*) SLOT="4.1" ;; |
472 | 4.[456].8[05] | 4.[456].9[023568]) |
| 274 | *) SLOT="kde-4" ;; |
473 | # Unstable KDE SC releases |
|
|
474 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
475 | # KDEPIM IS SPECIAL |
|
|
476 | [[ ${KMNAME} == "kdepim" || ${KMNAME} == "kdepim-runtime" ]] && SRC_URI="mirror://kde/unstable/kdepim/${PV}/${_kmname_pv}.tar.bz2" |
|
|
477 | ;; |
|
|
478 | 4.4.[6789] | 4.4.1?*) |
|
|
479 | # Stable kdepim releases |
|
|
480 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
481 | ;; |
|
|
482 | *) |
|
|
483 | # Stable KDE SC releases |
|
|
484 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
485 | ;; |
| 275 | esac |
486 | esac |
| 276 | fi |
487 | ;; |
| 277 | fi |
488 | koffice) |
| 278 | |
|
|
| 279 | # Block install of other SLOTS unless kdeprefix |
|
|
| 280 | case "${EAPI}" in |
489 | case ${PV} in |
| 281 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
490 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 282 | for KDE_SLOT in ${KDE_SLOTS[@]}; do |
491 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 283 | # block non kdeprefix ${PN} on other slots |
492 | esac |
| 284 | if [[ ${SLOT} != ${KDE_SLOT} ]]; then |
493 | ;; |
| 285 | DEPEND="${DEPEND} |
494 | kdevelop) |
| 286 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
495 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
| 287 | RDEPEND="${RDEPEND} |
|
|
| 288 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
| 289 | fi |
|
|
| 290 | done |
|
|
| 291 | ;; |
496 | ;; |
| 292 | esac |
497 | esac |
|
|
498 | } |
| 293 | |
499 | |
| 294 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
500 | _calculate_live_repo() { |
| 295 | if [[ ${PN} != "kdelibs" ]]; then |
501 | debug-print-function ${FUNCNAME} "$@" |
|
|
502 | |
|
|
503 | SRC_URI="" |
|
|
504 | case ${KDE_SCM} in |
|
|
505 | svn) |
|
|
506 | # Determine branch URL based on live type |
|
|
507 | local branch_prefix |
| 296 | case "${EAPI}" in |
508 | case ${PV} in |
| 297 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
509 | 9999*) |
| 298 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
510 | # trunk |
| 299 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
511 | branch_prefix="trunk/KDE" |
|
|
512 | ;; |
|
|
513 | *) |
|
|
514 | # branch |
|
|
515 | branch_prefix="branches/KDE/${SLOT}" |
|
|
516 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
517 | # @DESCRIPTION |
|
|
518 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
519 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
520 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
521 | ;; |
|
|
522 | esac |
|
|
523 | # @ECLASS-VARIABLE: ESVN_MIRROR |
|
|
524 | # @DESCRIPTION: |
|
|
525 | # This variable allows easy overriding of default kde mirror service |
|
|
526 | # (anonsvn) with anything else you might want to use. |
|
|
527 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
|
|
528 | # Split ebuild, or extragear stuff |
|
|
529 | if [[ -n ${KMNAME} ]]; then |
|
|
530 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
531 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
532 | KMMODULE="${PN}" |
|
|
533 | fi |
|
|
534 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
535 | case ${KMNAME} in |
|
|
536 | kdebase-*) |
|
|
537 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
538 | ;; |
|
|
539 | kdelibs-*) |
|
|
540 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
541 | ;; |
|
|
542 | kdereview*) |
|
|
543 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
544 | ;; |
|
|
545 | kdesupport) |
|
|
546 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
547 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
548 | ;; |
|
|
549 | kde*) |
|
|
550 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
551 | ;; |
|
|
552 | extragear*|playground*) |
|
|
553 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
554 | # build packages from same svn location. |
|
|
555 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
556 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
557 | ;; |
|
|
558 | koffice) |
|
|
559 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
560 | ;; |
|
|
561 | *) |
|
|
562 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
563 | ;; |
|
|
564 | esac |
|
|
565 | else |
|
|
566 | # kdelibs, kdepimlibs |
|
|
567 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
568 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
569 | fi |
|
|
570 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
571 | # @DESCRIPTION: |
|
|
572 | # This variable is used for specifying the timeout between svn synces |
|
|
573 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
574 | # Default value is 1 hour. |
|
|
575 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
576 | ;; |
|
|
577 | git) |
|
|
578 | local _kmname |
|
|
579 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
580 | # @DESCRIPTION: |
|
|
581 | # This variable allows easy overriding of default kde mirror service |
|
|
582 | # (anongit) with anything else you might want to use. |
|
|
583 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
584 | |
|
|
585 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
586 | # @DESCRIPTION: |
|
|
587 | # This variable allows overriding of default repository |
|
|
588 | # name. Specify only if this differ from PN and KMNAME. |
|
|
589 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
590 | # the repository and kmname different |
|
|
591 | _kmname=${EGIT_REPONAME} |
|
|
592 | elif [[ -n ${KMNAME} ]]; then |
|
|
593 | _kmname=${KMNAME} |
|
|
594 | else |
|
|
595 | _kmname=${PN} |
|
|
596 | fi |
|
|
597 | |
|
|
598 | # default branching |
|
|
599 | case ${PV} in |
|
|
600 | 9999*) ;; |
|
|
601 | *) |
|
|
602 | # set EGIT_BRANCH and EGIT_COMMIT to ${SLOT} |
|
|
603 | case ${_kmname} in |
|
|
604 | kdeplasma-addons | kdepim | kdepim-runtime | kdepimlibs) |
|
|
605 | EGIT_BRANCH="${SLOT}" |
|
|
606 | ;; |
|
|
607 | *) EGIT_BRANCH="KDE/${SLOT}" ;; |
|
|
608 | esac |
|
|
609 | ;; |
|
|
610 | esac |
|
|
611 | |
|
|
612 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
|
|
613 | |
|
|
614 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
615 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
|
|
616 | ;; |
|
|
617 | esac |
|
|
618 | } |
|
|
619 | |
|
|
620 | case ${BUILD_TYPE} in |
|
|
621 | live) _calculate_live_repo ;; |
|
|
622 | *) _calculate_src_uri ;; |
|
|
623 | esac |
|
|
624 | |
|
|
625 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
626 | |
|
|
627 | # @ECLASS-VARIABLE: PREFIX |
|
|
628 | # @DESCRIPTION: |
|
|
629 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
|
|
630 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
|
|
631 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
|
|
632 | |
|
|
633 | # @FUNCTION: kde4-base_pkg_setup |
|
|
634 | # @DESCRIPTION: |
|
|
635 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
|
|
636 | # optional applications link |
|
|
637 | kde4-base_pkg_setup() { |
|
|
638 | debug-print-function ${FUNCNAME} "$@" |
|
|
639 | |
|
|
640 | # QA ebuilds |
|
|
641 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
|
|
642 | |
|
|
643 | # Don't set KDEHOME during compilation, it will cause access violations |
|
|
644 | unset KDEHOME |
|
|
645 | |
|
|
646 | # Check if gcc compiler is fresh enough. |
|
|
647 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
|
|
648 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
|
|
649 | # executions consume quite some time. |
|
|
650 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
651 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
652 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
|
|
653 | |
|
|
654 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
655 | if use kdeprefix; then |
|
|
656 | KDEDIR=/usr/kde/${SLOT} |
|
|
657 | else |
|
|
658 | KDEDIR=/usr |
|
|
659 | fi |
|
|
660 | : ${PREFIX:=${KDEDIR}} |
|
|
661 | else |
|
|
662 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
|
|
663 | KDEDIR= |
|
|
664 | local kde_minimal_met |
|
|
665 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
666 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
|
|
667 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
|
|
668 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
|
|
669 | KDEDIR=/usr/kde/${slot} |
|
|
670 | else |
|
|
671 | KDEDIR=/usr |
|
|
672 | fi |
|
|
673 | break; |
|
|
674 | fi |
|
|
675 | done |
|
|
676 | unset slot |
|
|
677 | |
|
|
678 | # Bail out if kdelibs required but not found |
|
|
679 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
|
|
680 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
|
|
681 | else |
|
|
682 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
|
|
683 | fi |
|
|
684 | |
|
|
685 | : ${PREFIX:=/usr} |
|
|
686 | fi |
|
|
687 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
688 | |
|
|
689 | # Point pkg-config path to KDE *.pc files |
|
|
690 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
|
|
691 | # Point to correct QT plugins path |
|
|
692 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
|
|
693 | |
|
|
694 | # Fix XDG collision with sandbox |
|
|
695 | export XDG_CONFIG_HOME="${T}" |
|
|
696 | } |
|
|
697 | |
|
|
698 | # @FUNCTION: kde4-base_src_unpack |
|
|
699 | # @DESCRIPTION: |
|
|
700 | # This function unpacks the source tarballs for KDE4 applications. |
|
|
701 | kde4-base_src_unpack() { |
|
|
702 | debug-print-function ${FUNCNAME} "$@" |
|
|
703 | |
|
|
704 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
705 | case ${KDE_SCM} in |
|
|
706 | svn) |
|
|
707 | migrate_store_dir |
|
|
708 | subversion_src_unpack |
| 300 | ;; |
709 | ;; |
| 301 | *) |
710 | git) |
| 302 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}" |
711 | git-2_src_unpack |
| 303 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 304 | ;; |
712 | ;; |
| 305 | esac |
713 | esac |
| 306 | if [[ ${PN} != "kdepimlibs" ]]; then |
|
|
| 307 | case "${EAPI}" in |
|
|
| 308 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 309 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
|
|
| 310 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
|
|
| 311 | ;; |
|
|
| 312 | *) |
|
|
| 313 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 314 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 315 | esac |
|
|
| 316 | fi |
|
|
| 317 | fi |
|
|
| 318 | |
|
|
| 319 | unset _operator _pv |
|
|
| 320 | fi |
|
|
| 321 | |
|
|
| 322 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
|
|
| 323 | # koffice ebuild, the URI should be set in the ebuild itself |
|
|
| 324 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 325 | if [[ -n ${KMNAME} ]]; then |
|
|
| 326 | _kmname=${KMNAME} |
|
|
| 327 | else |
714 | else |
| 328 | _kmname=${PN} |
715 | unpack ${A} |
| 329 | fi |
|
|
| 330 | _kmname_pv="${_kmname}-${PV}" |
|
|
| 331 | if [[ ${NEED_KDE} != "svn" ]]; then |
|
|
| 332 | case ${KDEBASE} in |
|
|
| 333 | kde-base) |
|
|
| 334 | case ${PV} in |
|
|
| 335 | 4.0.9* | 4.0.8*) |
|
|
| 336 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
| 337 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
|
|
| 338 | esac |
|
|
| 339 | ;; |
|
|
| 340 | koffice) |
|
|
| 341 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
|
|
| 342 | ;; |
|
|
| 343 | esac |
|
|
| 344 | fi |
|
|
| 345 | unset _kmname _kmname_pv |
|
|
| 346 | fi |
|
|
| 347 | |
|
|
| 348 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
| 349 | |
|
|
| 350 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 351 | # @DESCRIPTION: |
|
|
| 352 | # Set the installation PREFIX. All kde-base ebuilds go into the KDE4 installation directory. |
|
|
| 353 | # Applications installed by the other ebuilds go into /usr/ by default, this value |
|
|
| 354 | # can be superseded by defining PREFIX before inheriting kde4-base. |
|
|
| 355 | # This value is set on pkg_setup |
|
|
| 356 | PREFIX="" |
|
|
| 357 | |
|
|
| 358 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - NEED_KDE ${NEED_KDE}" |
|
|
| 359 | |
|
|
| 360 | # @FUNCTION: kde4-base_pkg_setup |
|
|
| 361 | # @DESCRIPTION: |
|
|
| 362 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
|
|
| 363 | # kde4-functions_check_use from kde4-functions.eclass to print appropriate |
|
|
| 364 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
|
|
| 365 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
|
|
| 366 | kde4-base_pkg_setup() { |
|
|
| 367 | debug-print-function $FUNCNAME "$@" |
|
|
| 368 | |
|
|
| 369 | # Don't set KDEHOME during compile, it will cause access violations |
|
|
| 370 | unset KDEHOME |
|
|
| 371 | |
|
|
| 372 | if [[ ${NEED_KDE} != none ]]; then |
|
|
| 373 | |
|
|
| 374 | # Set PREFIX |
|
|
| 375 | case "${EAPI}" in |
|
|
| 376 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 377 | if use kdeprefix; then |
|
|
| 378 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
| 379 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 380 | else |
|
|
| 381 | KDEDIR="/usr" |
|
|
| 382 | KDEDIRS="/usr:/usr/local" |
|
|
| 383 | fi |
|
|
| 384 | ;; |
|
|
| 385 | *) |
|
|
| 386 | KDEDIR="/usr" |
|
|
| 387 | KDEDIRS="/usr:/usr/local" |
|
|
| 388 | ;; |
|
|
| 389 | esac |
|
|
| 390 | fi |
|
|
| 391 | |
|
|
| 392 | # Set the prefix based on KDEDIR |
|
|
| 393 | # Make it a consequence of kdeprefix |
|
|
| 394 | PREFIX=${KDEDIR} |
|
|
| 395 | |
|
|
| 396 | unset _kdedir |
|
|
| 397 | |
|
|
| 398 | case "${EAPI}" in |
|
|
| 399 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 400 | [[ -n ${QT4_BUILT_WITH_USE_CHECK} || -n ${KDE4_BUILT_WITH_USE_CHECK[@]} ]] && \ |
|
|
| 401 | die "built_with_use illegal in this EAPI!" |
|
|
| 402 | ;; |
|
|
| 403 | *) |
|
|
| 404 | # Make KDE4_BUILT_WITH_USE_CHECK an array if it isn't already |
|
|
| 405 | local line kde4_built_with_use_check=() |
|
|
| 406 | if [[ -n ${KDE4_BUILT_WITH_USE_CHECK[@]} && $(declare -p KDE4_BUILT_WITH_USE_CHECK) != 'declare -a '* ]]; then |
|
|
| 407 | while read line; do |
|
|
| 408 | [[ -z ${line} ]] && continue |
|
|
| 409 | kde4_built_with_use_check+=("${line}") |
|
|
| 410 | done <<< "${KDE4_BUILT_WITH_USE_CHECK}" |
|
|
| 411 | KDE4_BUILT_WITH_USE_CHECK=("${kde4_built_with_use_check[@]}") |
|
|
| 412 | fi |
716 | fi |
| 413 | |
|
|
| 414 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
|
|
| 415 | if has_version '<x11-libs/qt-4.4_alpha:4'; then |
|
|
| 416 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
|
|
| 417 | else |
|
|
| 418 | KDE4_BUILT_WITH_USE_CHECK=("${KDE4_BUILT_WITH_USE_CHECK[@]}" |
|
|
| 419 | "x11-libs/qt-core qt3support ssl" |
|
|
| 420 | "x11-libs/qt-gui accessibility dbus" |
|
|
| 421 | "x11-libs/qt-qt3support accessibility") |
|
|
| 422 | fi |
|
|
| 423 | |
|
|
| 424 | if has opengl ${IUSE//+} && use opengl || [[ ${OPENGL_REQUIRED} == always ]]; then |
|
|
| 425 | if has_version '<x11-libs/qt-4.4.0_alpha:4'; then |
|
|
| 426 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
|
|
| 427 | fi |
|
|
| 428 | fi |
|
|
| 429 | kde4-functions_check_use |
|
|
| 430 | ;; |
|
|
| 431 | esac |
|
|
| 432 | } |
717 | } |
| 433 | |
718 | |
| 434 | # @FUNCTION: kde4-base_apply_patches |
|
|
| 435 | # @DESCRIPTION: |
|
|
| 436 | # This function applies patches. |
|
|
| 437 | # |
|
|
| 438 | # If the directory ${WORKDIR}/patches/ exists, we apply all patches in that |
|
|
| 439 | # directory, provided they follow this format: |
|
|
| 440 | # @CODE |
|
|
| 441 | # - Monolithic ebuilds, (from kde-base) |
|
|
| 442 | # - $CATEGORY=kde-base: |
|
|
| 443 | # Apply ${CHILD_EBUILD_NAME}-${SLOT}-*{diff,patch} |
|
|
| 444 | # - $CATEGORY=!kde-base: |
|
|
| 445 | # Apply ${CHILD_EBUILD_NAME}-${PV}-*{diff,patch} |
|
|
| 446 | # - Split ebuilds: |
|
|
| 447 | # - $CATEGORY=kde-base: |
|
|
| 448 | # Apply ${PN}-${SLOT}-*{diff,patch} |
|
|
| 449 | # - $CATEGORY!=kde-base: |
|
|
| 450 | # Apply ${PN}-${PV}-*{diff,patch} |
|
|
| 451 | # @CODE |
|
|
| 452 | # |
|
|
| 453 | # If ${PATCHES} is non-zero all patches in it get applied. If there is more |
|
|
| 454 | # than one patch please make ${PATCHES} an array for proper quoting. |
|
|
| 455 | kde4-base_apply_patches() { |
|
|
| 456 | local _patchdir _packages _p _f |
|
|
| 457 | _patchdir="${WORKDIR}/patches/" |
|
|
| 458 | if [[ -d "${_patchdir}" ]]; then |
|
|
| 459 | if is-parent-package ${CATEGORY}/${PN} ; then |
|
|
| 460 | _packages="$(get-child-packages ${CATEGORY}/${PN})" |
|
|
| 461 | _packages="${_packages//${CATEGORY}\//} ${PN}" |
|
|
| 462 | else |
|
|
| 463 | _packages="${PN}" |
|
|
| 464 | fi |
|
|
| 465 | if [[ $(declare -p PATCHES) != 'declare -a '* ]]; then |
|
|
| 466 | die "PATCHES needs to be an array!" |
|
|
| 467 | fi |
|
|
| 468 | for _p in ${_packages}; do |
|
|
| 469 | for _f in "${_patchdir}"/${_p}-${PV}-*{diff,patch}; do |
|
|
| 470 | [[ -e ${_f} ]] && PATCHES+=("${_f}") |
|
|
| 471 | done |
|
|
| 472 | if [[ -n "${KDEBASE}" ]]; then |
|
|
| 473 | for _f in "${_patchdir}"/${_p}-${SLOT}-*{diff,patch}; do |
|
|
| 474 | [[ -e ${_f} ]] && PATCHES+=("${_f}") |
|
|
| 475 | done |
|
|
| 476 | fi |
|
|
| 477 | done |
|
|
| 478 | fi |
|
|
| 479 | [[ -n ${PATCHES[@]} ]] && base_src_unpack autopatch |
|
|
| 480 | } |
|
|
| 481 | |
|
|
| 482 | # @FUNCTION: kde4-base_src_unpack |
719 | # @FUNCTION: kde4-base_src_prepare |
| 483 | # @DESCRIPTION: |
720 | # @DESCRIPTION: |
| 484 | # This function unpacks the source tarballs for KDE4 applications. |
721 | # General pre-configure and pre-compile function for KDE4 applications. |
| 485 | # |
|
|
| 486 | # If no argument is passed to this function, then standard src_unpack is |
|
|
| 487 | # executed. Otherwise options are passed to base_src_unpack. |
|
|
| 488 | # |
|
|
| 489 | # In addition it calls kde4-base_apply_patches when no arguments are passed to |
|
|
| 490 | # this function. |
|
|
| 491 | # |
|
|
| 492 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
722 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
723 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 493 | # enable_selected_linguas() in kde4-functions.eclass(5) for further details. |
724 | # in kde4-functions.eclass(5) for further details. |
| 494 | kde4-base_src_unpack() { |
725 | kde4-base_src_prepare() { |
| 495 | debug-print-function $FUNCNAME "$@" |
726 | debug-print-function ${FUNCNAME} "$@" |
| 496 | |
727 | |
| 497 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
728 | # enable handbook and linguas only when not using live ebuild |
| 498 | |
|
|
| 499 | if [[ -z $* ]]; then |
|
|
| 500 | # Unpack first and deal with KDE patches after examing possible patch sets. |
|
|
| 501 | # To be picked up, patches need to conform to the guidelines stated before. |
|
|
| 502 | # Monolithic ebuilds will use the split ebuild patches. |
|
|
| 503 | [[ -d "${KDE_S}" ]] || unpack ${A} |
|
|
| 504 | base_src_unpack $* |
|
|
| 505 | else |
|
|
| 506 | # Call base_src_unpack, which unpacks and patches |
|
|
| 507 | # step by step transparently as defined in the ebuild. |
|
|
| 508 | base_src_unpack $* |
|
|
| 509 | fi |
|
|
| 510 | |
|
|
| 511 | # Updated cmake dir |
|
|
| 512 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
|
|
| 513 | ebegin "Updating cmake/ directory..." |
|
|
| 514 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
|
|
| 515 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
|
|
| 516 | eend 0 |
|
|
| 517 | fi |
|
|
| 518 | |
729 | |
| 519 | # Only enable selected languages, used for KDE extragear apps. |
730 | # Only enable selected languages, used for KDE extragear apps. |
| 520 | if [[ -n ${KDE_LINGUAS} ]]; then |
731 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 521 | enable_selected_linguas |
732 | enable_selected_linguas |
| 522 | fi |
733 | fi |
|
|
734 | |
|
|
735 | # Enable/disable handbooks for kde4-base packages |
|
|
736 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
|
|
737 | # kdelibs inherits kde4-base but handle installing the handbook itself |
|
|
738 | if ! has kde4-meta ${INHERITED} && has handbook ${IUSE//+}; then |
|
|
739 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
740 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
741 | # documentation in kde4-functions |
|
|
742 | : ${KDE_DOC_DIRS:=doc} |
|
|
743 | local dir |
|
|
744 | for dir in ${KDE_DOC_DIRS}; do |
|
|
745 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
746 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
747 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
748 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
749 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
750 | done |
|
|
751 | fi |
|
|
752 | else |
|
|
753 | enable_selected_doc_linguas |
|
|
754 | fi |
|
|
755 | fi |
|
|
756 | |
|
|
757 | # SCM bootstrap |
|
|
758 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
759 | case ${KDE_SCM} in |
|
|
760 | svn) subversion_src_prepare ;; |
|
|
761 | esac |
|
|
762 | fi |
|
|
763 | |
|
|
764 | # Apply patches |
|
|
765 | base_src_prepare |
|
|
766 | |
|
|
767 | # Save library dependencies |
|
|
768 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
769 | save_library_dependencies |
|
|
770 | fi |
|
|
771 | |
|
|
772 | # Inject library dependencies |
|
|
773 | if [[ -n ${KMLOADLIBS} ]] ; then |
|
|
774 | load_library_dependencies |
|
|
775 | fi |
|
|
776 | |
|
|
777 | # Replace KDE4Workspace library targets |
|
|
778 | find "${S}" -name CMakeLists.txt \ |
|
|
779 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_TASKMANAGER_(LIBRARY|LIBS)\}/taskmanager/g' {} + \ |
|
|
780 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWORKSPACE_(LIBRARY|LIBS)\}/kworkspace/g' {} + \ |
|
|
781 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROLIFACES_(LIBRARY|LIBS)\}/solidcontrolifaces/g' {} + \ |
|
|
782 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROL_(LIBRARY|LIBS)\}/solidcontrol/g' {} + \ |
|
|
783 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PROCESSUI_(LIBRARY|LIBS)\}/processui/g' {} + \ |
|
|
784 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_LSOFUI_(LIBRARY|LIBS)\}/lsofui/g' {} + \ |
|
|
785 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PLASMACLOCK_(LIBRARY|LIBS)\}/plasmaclock/g' {} + \ |
|
|
786 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERYCLIENT_(LIBRARY|LIBS)\}/nepomukqueryclient/g' {} + \ |
|
|
787 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERY_(LIBRARY|LIBS)\}/nepomukquery/g' {} + \ |
|
|
788 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSCREENSAVER_(LIBRARY|LIBS)\}/kscreensaver/g' {} + \ |
|
|
789 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_WEATHERION_(LIBRARY|LIBS)\}/weather_ion/g' {} + \ |
|
|
790 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWINEFFECTS_(LIBRARY|LIBS)\}/kwineffects/g' {} + \ |
|
|
791 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KDECORATIONS_(LIBRARY|LIBS)\}/kdecorations/g' {} + \ |
|
|
792 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSGRD_(LIBRARY|LIBS)\}/ksgrd/g' {} + \ |
|
|
793 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KEPHAL_(LIBRARY|LIBS)\}/kephal/g' {} + \ |
|
|
794 | || die 'failed to replace KDE4Workspace library targets' |
|
|
795 | |
|
|
796 | # Hack for manuals relying on outdated DTD, only outside kde-base/koffice/... |
|
|
797 | if [[ -z ${KDEBASE} ]]; then |
|
|
798 | find "${S}" -name "*.docbook" \ |
|
|
799 | -exec sed -i -r \ |
|
|
800 | -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' {} + \ |
|
|
801 | || die 'failed to fix DocBook variant version' |
|
|
802 | fi |
|
|
803 | } |
|
|
804 | |
|
|
805 | # @FUNCTION: kde4-base_src_configure |
|
|
806 | # @DESCRIPTION: |
|
|
807 | # Function for configuring the build of KDE4 applications. |
|
|
808 | kde4-base_src_configure() { |
|
|
809 | debug-print-function ${FUNCNAME} "$@" |
|
|
810 | |
|
|
811 | # Build tests in src_test only, where we override this value |
|
|
812 | local cmakeargs=(-DKDE4_BUILD_TESTS=OFF) |
|
|
813 | |
|
|
814 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
815 | cmakeargs+=(-DKDE4_ENABLE_FINAL=ON) |
|
|
816 | fi |
|
|
817 | |
|
|
818 | if has debug ${IUSE//+} && use debug; then |
|
|
819 | # Set "real" debug mode |
|
|
820 | CMAKE_BUILD_TYPE="Debugfull" |
|
|
821 | else |
|
|
822 | # Handle common release builds |
|
|
823 | append-cppflags -DQT_NO_DEBUG |
|
|
824 | fi |
|
|
825 | |
|
|
826 | # Set distribution name |
|
|
827 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
|
|
828 | |
|
|
829 | # Here we set the install prefix |
|
|
830 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
|
|
831 | |
|
|
832 | # Use colors |
|
|
833 | QTEST_COLORED=1 |
|
|
834 | |
|
|
835 | # Shadow existing /usr installations |
|
|
836 | unset KDEDIRS |
|
|
837 | |
|
|
838 | # Handle kdeprefix-ed KDE |
|
|
839 | if [[ ${KDEDIR} != /usr ]]; then |
|
|
840 | # Override some environment variables - only when kdeprefix is different, |
|
|
841 | # to not break ccache/distcc |
|
|
842 | PATH="${EKDEDIR}/bin:${PATH}" |
|
|
843 | |
|
|
844 | # Append library search path |
|
|
845 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
|
|
846 | |
|
|
847 | # Append full RPATH |
|
|
848 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
|
|
849 | |
|
|
850 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
|
|
851 | # when more are present |
|
|
852 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
|
|
853 | fi |
|
|
854 | |
|
|
855 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
|
|
856 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
|
|
857 | #kde-config -path data unavailable when cross-compiling |
|
|
858 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
|
|
859 | |
|
|
860 | # Handle kdeprefix in application itself |
|
|
861 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
|
|
862 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
863 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
|
|
864 | fi |
|
|
865 | |
|
|
866 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
867 | mycmakeargs=(${mycmakeargs}) |
|
|
868 | fi |
|
|
869 | |
|
|
870 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
|
|
871 | |
|
|
872 | cmake-utils_src_configure |
| 523 | } |
873 | } |
| 524 | |
874 | |
| 525 | # @FUNCTION: kde4-base_src_compile |
875 | # @FUNCTION: kde4-base_src_compile |
| 526 | # @DESCRIPTION: |
876 | # @DESCRIPTION: |
| 527 | # General function for compiling KDE4 applications. |
877 | # General function for compiling KDE4 applications. |
| 528 | kde4-base_src_compile() { |
878 | kde4-base_src_compile() { |
| 529 | debug-print-function ${FUNCNAME} "$@" |
879 | debug-print-function ${FUNCNAME} "$@" |
| 530 | case "${EAPI}" in |
|
|
| 531 | 2) |
|
|
| 532 | ;; |
|
|
| 533 | *) |
|
|
| 534 | kde4-base_src_configure |
|
|
| 535 | ;; |
|
|
| 536 | esac |
|
|
| 537 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 538 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 539 | fi |
|
|
| 540 | [ -e [Mm]akefile ] && kde4-base_src_make |
|
|
| 541 | } |
|
|
| 542 | |
880 | |
| 543 | # @FUNCTION: kde4-base_src_configure |
|
|
| 544 | # @DESCRIPTION: |
|
|
| 545 | # Function for configuring the build of KDE4 applications. |
|
|
| 546 | kde4-base_src_configure() { |
|
|
| 547 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 548 | |
|
|
| 549 | # Final flag handling |
|
|
| 550 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
| 551 | echo "Activating enable-final flag" |
|
|
| 552 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_FINAL=ON" |
|
|
| 553 | fi |
|
|
| 554 | |
|
|
| 555 | # Enable generation of HTML handbook |
|
|
| 556 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
|
|
| 557 | echo "Enabling building of HTML handbook" |
|
|
| 558 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
|
|
| 559 | fi |
|
|
| 560 | |
|
|
| 561 | # Build tests in src_test only, where we override this value |
|
|
| 562 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
|
|
| 563 | |
|
|
| 564 | # Set distribution name |
|
|
| 565 | [[ ${PN} == "kdelibs" ]] && mycmakeargs="${mycmakeargs} -DKDE_DISTRIBUTION_TEXT=Gentoo" |
|
|
| 566 | |
|
|
| 567 | # runpath linking |
|
|
| 568 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
|
|
| 569 | |
|
|
| 570 | # Here we set the install prefix |
|
|
| 571 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
|
|
| 572 | |
|
|
| 573 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
| 574 | [[ "${PREFIX}" == "/usr" ]] && mycmakeargs="${mycmakeargs} -DSYSCONF_INSTALL_DIR=/etc" |
|
|
| 575 | |
|
|
| 576 | # Set environment |
|
|
| 577 | QTEST_COLORED=1 |
|
|
| 578 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
|
|
| 579 | |
|
|
| 580 | # hardcode path to *.cmake KDE files |
|
|
| 581 | PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+${PKG_CONFIG_PATH}:}${KDEDIR}/$(get_libdir)/pkgconfig" |
|
|
| 582 | |
|
|
| 583 | [ -e CMakeLists.txt ] && cmake-utils_src_configureout |
|
|
| 584 | } |
|
|
| 585 | |
|
|
| 586 | # @FUNCTION: kde4-base_src_make |
|
|
| 587 | # @DESCRIPTION: |
|
|
| 588 | # Function for building KDE4 applications. |
|
|
| 589 | # Options are passed to cmake-utils_src_make. |
|
|
| 590 | kde4-base_src_make() { |
|
|
| 591 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 592 | |
|
|
| 593 | cmake-utils_src_make "$@" |
881 | cmake-utils_src_compile "$@" |
| 594 | } |
882 | } |
| 595 | |
883 | |
| 596 | # @FUNCTION: kde4-base_src_test |
884 | # @FUNCTION: kde4-base_src_test |
| 597 | # @DESCRIPTION: |
885 | # @DESCRIPTION: |
| 598 | # Function for testing KDE4 applications. |
886 | # Function for testing KDE4 applications. |
| 599 | kde4-base_src_test() { |
887 | kde4-base_src_test() { |
| 600 | debug-print-function ${FUNCNAME} "$@" |
888 | debug-print-function ${FUNCNAME} "$@" |
| 601 | |
889 | |
| 602 | # Override this value, set in kde4-base_src_configure() |
890 | # Override this value, set in kde4-base_src_configure() |
| 603 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=ON" |
891 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 604 | cmake-utils_src_compile |
892 | cmake-utils_src_configure |
|
|
893 | kde4-base_src_compile |
| 605 | |
894 | |
|
|
895 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
896 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
897 | # emerge or on the tinderbox. |
|
|
898 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
899 | unset DBUS_SESSION_BUS_ADDRESS |
|
|
900 | |
|
|
901 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
902 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
903 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
|
|
904 | # surprise- we are already INSIDE virtualmake!!! |
|
|
905 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
906 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
907 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
908 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
909 | cmake-utils_src_test |
|
|
910 | else |
|
|
911 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
|
|
912 | fi |
|
|
913 | else |
| 606 | cmake-utils_src_test |
914 | cmake-utils_src_test |
|
|
915 | fi |
| 607 | } |
916 | } |
| 608 | |
917 | |
| 609 | # @FUNCTION: kde4-base_src_install |
918 | # @FUNCTION: kde4-base_src_install |
| 610 | # @DESCRIPTION: |
919 | # @DESCRIPTION: |
| 611 | # Function for installing KDE4 applications. |
920 | # Function for installing KDE4 applications. |
| 612 | kde4-base_src_install() { |
921 | kde4-base_src_install() { |
| 613 | debug-print-function ${FUNCNAME} "$@" |
922 | debug-print-function ${FUNCNAME} "$@" |
| 614 | |
923 | |
| 615 | kde4-base_src_make_doc |
924 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 616 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
925 | install_library_dependencies |
| 617 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 618 | fi |
926 | fi |
| 619 | [ -e [Mm]akefile ] && cmake-utils_src_install |
|
|
| 620 | } |
|
|
| 621 | |
927 | |
| 622 | # @FUNCTION: kde4-base_src_make_doc |
|
|
| 623 | # @DESCRIPTION: |
|
|
| 624 | # Function for installing the documentation of KDE4 applications. |
928 | # Install common documentation of KDE4 applications |
| 625 | kde4-base_src_make_doc() { |
|
|
| 626 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 627 | |
|
|
| 628 | local doc |
929 | local doc |
| 629 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
930 | if ! has kde4-meta ${INHERITED}; then |
| 630 | [[ -s $doc ]] && dodoc ${doc} |
931 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 631 | done |
932 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 632 | |
|
|
| 633 | if [[ -z ${KMNAME} ]]; then |
|
|
| 634 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
|
|
| 635 | if [[ -s $doc ]]; then |
|
|
| 636 | local doc_complete=${doc} |
|
|
| 637 | doc="${doc#*/}" |
|
|
| 638 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
| 639 | fi |
|
|
| 640 | done |
933 | done |
|
|
934 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
935 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
936 | done |
| 641 | fi |
937 | fi |
| 642 | |
938 | |
| 643 | if [[ -n ${KDEBASE} && -d "${D}"/usr/share/doc/${PF} ]]; then |
939 | cmake-utils_src_install |
| 644 | # work around bug #97196 |
940 | |
| 645 | dodir /usr/share/doc/kde && \ |
941 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
| 646 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
942 | # because then khelpcenter can't find the docs |
| 647 | die "Failed to move docs to kde/ failed." |
943 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
| 648 | fi |
944 | docompress -x ${PREFIX}/share/doc/HTML |
|
|
945 | } |
|
|
946 | |
|
|
947 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
948 | # @DESCRIPTION: |
|
|
949 | # Function storing icon caches |
|
|
950 | kde4-base_pkg_preinst() { |
|
|
951 | debug-print-function ${FUNCNAME} "$@" |
|
|
952 | |
|
|
953 | gnome2_icon_savelist |
| 649 | } |
954 | } |
| 650 | |
955 | |
| 651 | # @FUNCTION: kde4-base_pkg_postinst |
956 | # @FUNCTION: kde4-base_pkg_postinst |
| 652 | # @DESCRIPTION: |
957 | # @DESCRIPTION: |
| 653 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
958 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 654 | kde4-base_pkg_postinst() { |
959 | kde4-base_pkg_postinst() { |
|
|
960 | debug-print-function ${FUNCNAME} "$@" |
|
|
961 | |
|
|
962 | gnome2_icon_cache_update |
|
|
963 | fdo-mime_desktop_database_update |
|
|
964 | fdo-mime_mime_database_update |
| 655 | buildsycoca |
965 | buildsycoca |
|
|
966 | |
|
|
967 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
968 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
969 | echo |
|
|
970 | ewarn "WARNING! you have kdeenable final useflag enabled." |
|
|
971 | ewarn "This useflag needs to be enabled on ALL kde using packages and" |
|
|
972 | ewarn "is known to cause issues." |
|
|
973 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
974 | ewarn "take responsibilities for dead kittens." |
|
|
975 | echo |
|
|
976 | fi |
|
|
977 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
978 | echo |
|
|
979 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
980 | einfo "Use it at your own risk." |
|
|
981 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
982 | echo |
|
|
983 | fi |
|
|
984 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
985 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
986 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
987 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
988 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
989 | echo |
|
|
990 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
991 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
992 | ewarn "With this setting you are unsupported by KDE team." |
|
|
993 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
994 | fi |
|
|
995 | fi |
|
|
996 | fi |
|
|
997 | if has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
998 | # warning about kdeprefix |
|
|
999 | echo |
|
|
1000 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
1001 | eerror "This setting will be removed on or about 2011-06-06." |
|
|
1002 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
1003 | ewarn "take responsibilities for dead kittens." |
|
|
1004 | echo |
|
|
1005 | fi |
| 656 | } |
1006 | } |
| 657 | |
1007 | |
| 658 | # @FUNCTION: kde4-base_pkg_postrm |
1008 | # @FUNCTION: kde4-base_pkg_postrm |
| 659 | # @DESCRIPTION: |
1009 | # @DESCRIPTION: |
| 660 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
1010 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 661 | kde4-base_pkg_postrm() { |
1011 | kde4-base_pkg_postrm() { |
|
|
1012 | debug-print-function ${FUNCNAME} "$@" |
|
|
1013 | |
|
|
1014 | gnome2_icon_cache_update |
|
|
1015 | fdo-mime_desktop_database_update |
|
|
1016 | fdo-mime_mime_database_update |
| 662 | buildsycoca |
1017 | buildsycoca |
| 663 | } |
1018 | } |