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