| 1 | # Copyright 1999-2009 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.53 2009/11/25 19:51:11 tampakrap Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.66 2010/08/09 15:59:04 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.X ebuilds |
8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
| … | |
… | |
| 11 | # and KDE4 applications. |
11 | # and KDE4 applications. |
| 12 | # |
12 | # |
| 13 | # NOTE: KDE 4 ebuilds by default define EAPI="2", this can be redefined but |
13 | # NOTE: KDE 4 ebuilds by default define EAPI="2", this can be redefined but |
| 14 | # eclass will fail with version older than 2. |
14 | # eclass will fail with version older than 2. |
| 15 | |
15 | |
|
|
16 | inherit kde4-functions base eutils |
|
|
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 | |
| 16 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
27 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 17 | # @DESCRIPTION: |
28 | # @DESCRIPTION: |
| 18 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
29 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
| 19 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
30 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
| 20 | # src_configure, src_compile, src_test and src_install. |
31 | # src_configure, src_compile, src_test and src_install. |
| 21 | # Defaults to 'always'. |
32 | # Defaults to 'always'. |
| 22 | CMAKE_REQUIRED="${CMAKE_REQUIRED:-${CMAKE_REQUIRED:-always}}" |
33 | : ${CMAKE_REQUIRED:=always} |
| 23 | if [[ ${CMAKE_REQUIRED} = false || ${CMAKE_REQUIRED} = never ]]; then |
34 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
| 24 | buildsystem_eclass="" |
|
|
| 25 | export_fns="" |
|
|
| 26 | else |
|
|
| 27 | buildsystem_eclass="cmake-utils" |
35 | buildsystem_eclass="cmake-utils" |
| 28 | export_fns="src_configure src_compile src_test src_install" |
36 | export_fns="src_configure src_compile src_test src_install" |
| 29 | fi |
37 | fi |
| 30 | |
|
|
| 31 | inherit kde4-functions |
|
|
| 32 | |
|
|
| 33 | get_build_type |
|
|
| 34 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
| 35 | subversion_eclass="subversion" |
|
|
| 36 | fi |
|
|
| 37 | |
|
|
| 38 | inherit base ${buildsystem_eclass} eutils ${subversion_eclass} |
|
|
| 39 | |
|
|
| 40 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
|
|
| 41 | |
|
|
| 42 | unset buildsystem_eclass |
|
|
| 43 | unset export_fns |
|
|
| 44 | unset subversion_eclass |
|
|
| 45 | |
|
|
| 46 | case ${KDEBASE} in |
|
|
| 47 | kde-base) |
|
|
| 48 | HOMEPAGE="http://www.kde.org/" |
|
|
| 49 | LICENSE="GPL-2" |
|
|
| 50 | ;; |
|
|
| 51 | koffice) |
|
|
| 52 | HOMEPAGE="http://www.koffice.org/" |
|
|
| 53 | LICENSE="GPL-2" |
|
|
| 54 | ;; |
|
|
| 55 | esac |
|
|
| 56 | |
|
|
| 57 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
|
|
| 58 | # @DESCRIPTION: |
|
|
| 59 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
|
|
| 60 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
| 61 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
|
|
| 62 | |
|
|
| 63 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
| 64 | # @DESCRIPTION: |
|
|
| 65 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
| 66 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
| 67 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
| 68 | |
|
|
| 69 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
|
|
| 70 | # @DESCRIPTION: |
|
|
| 71 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
|
|
| 72 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
| 73 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
|
|
| 74 | |
|
|
| 75 | # @ECLASS-VARIABLE: KDE_REQUIRED |
|
|
| 76 | # @DESCRIPTION: |
|
|
| 77 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
|
|
| 78 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
|
|
| 79 | # If set to always or optional, KDE_MINIMAL may be overriden as well. |
|
|
| 80 | # Note that for kde-base packages this variable is fixed to 'always'. |
|
|
| 81 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
|
|
| 82 | |
38 | |
| 83 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
39 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
| 84 | if [[ -n ${KDE_MINIMAL} ]]; then |
40 | if [[ -n ${KDE_MINIMAL} ]]; then |
| 85 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
41 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
| 86 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
42 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
| … | |
… | |
| 92 | fi |
48 | fi |
| 93 | |
49 | |
| 94 | # @ECLASS-VARIABLE: KDE_MINIMAL |
50 | # @ECLASS-VARIABLE: KDE_MINIMAL |
| 95 | # @DESCRIPTION: |
51 | # @DESCRIPTION: |
| 96 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
52 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
| 97 | # version for apps to work. Currently defaults to 4.3 |
53 | # version for apps to work. Currently defaults to 4.4 |
| 98 | # One may override this variable to raise version requirements. |
54 | # One may override this variable to raise version requirements. |
| 99 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
55 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
| 100 | # Note that it is fixed to ${SLOT} for kde-base packages. |
56 | # Note that it is fixed to ${SLOT} for kde-base packages. |
| 101 | KDE_MINIMAL="${KDE_MINIMAL:-4.3}" |
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 | |
|
|
111 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
|
|
112 | |
|
|
113 | unset buildsystem_eclass |
|
|
114 | unset export_fns |
|
|
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}" |
| 102 | |
162 | |
| 103 | # Setup packages inheriting this eclass |
163 | # Setup packages inheriting this eclass |
| 104 | case ${KDEBASE} in |
164 | case ${KDEBASE} in |
| 105 | kde-base) |
165 | kde-base) |
| 106 | if [[ $BUILD_TYPE = live ]]; then |
166 | if [[ $BUILD_TYPE = live ]]; then |
| … | |
… | |
| 110 | IUSE+=" +kdeprefix" |
170 | IUSE+=" +kdeprefix" |
| 111 | else |
171 | else |
| 112 | # All other ebuild types default to -kdeprefix as before |
172 | # All other ebuild types default to -kdeprefix as before |
| 113 | IUSE+=" kdeprefix" |
173 | IUSE+=" kdeprefix" |
| 114 | fi |
174 | fi |
| 115 | # Determine SLOT from PVs |
|
|
| 116 | case ${PV} in |
|
|
| 117 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
|
|
| 118 | 4.4* | 4.3.[6-9]*) SLOT="4.4" ;; |
|
|
| 119 | 4.3*) SLOT="4.3" ;; |
|
|
| 120 | 4.2*) SLOT="4.2" ;; |
|
|
| 121 | 9999*) SLOT="live" ;; # regular live |
|
|
| 122 | *) die "Unsupported ${PV}" ;; |
|
|
| 123 | esac |
|
|
| 124 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
175 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
| 125 | # packages that will never be mirrored. (As they only will ever be in |
176 | # packages that will never be mirrored. (As they only will ever be in |
| 126 | # the overlay). |
177 | # the overlay). |
| 127 | case ${PV} in |
178 | case ${PV} in |
| 128 | *9999* | 4.?.[6-9]?) |
179 | *9999* | 4.?.[6-9]?) |
| 129 | RESTRICT+=" mirror" |
180 | RESTRICT+=" mirror" |
| 130 | ;; |
181 | ;; |
| 131 | esac |
182 | esac |
| 132 | KDE_MINIMAL="${SLOT}" |
|
|
| 133 | _kdedir="${SLOT}" |
|
|
| 134 | |
|
|
| 135 | # Block installation of other SLOTS unless kdeprefix |
183 | # Block installation of other SLOTS unless kdeprefix |
| 136 | RDEPEND+=" $(block_other_slots)" |
184 | RDEPEND+=" $(block_other_slots)" |
| 137 | ;; |
185 | ;; |
| 138 | koffice) |
|
|
| 139 | SLOT="2" |
|
|
| 140 | ;; |
|
|
| 141 | esac |
186 | esac |
| 142 | |
187 | |
| 143 | # @ECLASS-VARIABLE: QT_MINIMAL |
188 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 144 | # @DESCRIPTION: |
189 | # @DESCRIPTION: |
| 145 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1.. |
190 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
| 146 | # Currently defaults to 4.5.1 for KDE 4.3 and earlier |
191 | # 4.6.0 for 4.4 and 4.6.3 for 4.5 and later |
| 147 | # or 4.6.0_beta for KDE 4.4 and later |
|
|
| 148 | if slot_is_at_least 4.4 "${KDE_MINIMAL}"; then |
192 | if slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
|
|
193 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
|
|
194 | else |
| 149 | QT_MINIMAL="${QT_MINIMAL:-4.6.0_beta}" |
195 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
| 150 | fi |
196 | fi |
| 151 | |
|
|
| 152 | QT_MINIMAL="${QT_MINIMAL:-4.5.1}" |
|
|
| 153 | |
197 | |
| 154 | # OpenGL dependencies |
198 | # OpenGL dependencies |
| 155 | qtopengldepend=" |
199 | qtopengldepend=" |
| 156 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
200 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
| 157 | " |
201 | " |
| … | |
… | |
| 165 | ;; |
209 | ;; |
| 166 | *) ;; |
210 | *) ;; |
| 167 | esac |
211 | esac |
| 168 | unset qtopengldepend |
212 | unset qtopengldepend |
| 169 | |
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 | |
| 170 | # WebKit dependencies |
230 | # WebKit dependencies |
| 171 | case ${KDE_REQUIRED} in |
231 | case ${KDE_REQUIRED} in |
| 172 | always) |
232 | always) |
| 173 | qtwebkitusedeps="[kde]" |
233 | qtwebkitusedeps="[kde]" |
| 174 | ;; |
234 | ;; |
| … | |
… | |
| 208 | *) ;; |
268 | *) ;; |
| 209 | esac |
269 | esac |
| 210 | unset cppuintdepend |
270 | unset cppuintdepend |
| 211 | |
271 | |
| 212 | # KDE dependencies |
272 | # KDE dependencies |
|
|
273 | # Qt accessibility classes are needed in various places, bug 325461 |
| 213 | kdecommondepend=" |
274 | kdecommondepend=" |
| 214 | dev-lang/perl |
|
|
| 215 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
275 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| 216 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
276 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
| 217 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
277 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 218 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
278 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 219 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
279 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| … | |
… | |
| 223 | x11-libs/libXext |
283 | x11-libs/libXext |
| 224 | x11-libs/libXt |
284 | x11-libs/libXt |
| 225 | x11-libs/libXxf86vm |
285 | x11-libs/libXxf86vm |
| 226 | ) |
286 | ) |
| 227 | " |
287 | " |
|
|
288 | #perl is not needed on host (+ difficult crosscompilation) |
|
|
289 | tc-is-cross-compiler || kdecommondepend+=" dev-lang/perl" |
|
|
290 | |
| 228 | if [[ ${PN} != kdelibs ]]; then |
291 | if [[ ${PN} != kdelibs ]]; then |
| 229 | if [[ ${KDEBASE} = kde-base ]]; then |
292 | if [[ ${KDEBASE} = kde-base ]]; then |
| 230 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
293 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
| 231 | # libknotificationitem only when SLOT is 4.3 |
|
|
| 232 | [[ ${PN} != libknotificationitem ]] && [[ ${SLOT} = 4.3 ]] && \ |
|
|
| 233 | kdecommondepend+=" $(add_kdebase_dep libknotificationitem)" |
|
|
| 234 | else |
294 | else |
| 235 | kdecommondepend+=" |
295 | kdecommondepend+=" |
| 236 | >=kde-base/kdelibs-${KDE_MINIMAL} |
296 | >=kde-base/kdelibs-${KDE_MINIMAL} |
| 237 | " |
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 |
| 238 | fi |
315 | fi |
| 239 | fi |
316 | fi |
| 240 | kdedepend=" |
317 | kdedepend=" |
|
|
318 | dev-util/automoc |
| 241 | dev-util/pkgconfig |
319 | dev-util/pkgconfig |
|
|
320 | !aqua? ( |
|
|
321 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
|
|
322 | x11-proto/xf86vidmodeproto |
|
|
323 | ) |
| 242 | " |
324 | " |
| 243 | case ${KDE_REQUIRED} in |
325 | case ${KDE_REQUIRED} in |
| 244 | always) |
326 | always) |
| 245 | IUSE+=" aqua" |
327 | IUSE+=" aqua" |
| 246 | COMMONDEPEND+=" ${kdecommondepend}" |
328 | COMMONDEPEND+=" ${kdecommondepend}" |
| … | |
… | |
| 251 | COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
333 | COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
| 252 | DEPEND+=" kde? ( ${kdedepend} )" |
334 | DEPEND+=" kde? ( ${kdedepend} )" |
| 253 | ;; |
335 | ;; |
| 254 | *) ;; |
336 | *) ;; |
| 255 | esac |
337 | esac |
|
|
338 | |
| 256 | unset kdecommondepend kdedepend |
339 | unset kdecommondepend kdedepend |
| 257 | |
340 | |
| 258 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
341 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
| 259 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
342 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
| 260 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
343 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
| … | |
… | |
| 262 | # Accumulate dependencies set by this eclass |
345 | # Accumulate dependencies set by this eclass |
| 263 | DEPEND+=" ${COMMONDEPEND}" |
346 | DEPEND+=" ${COMMONDEPEND}" |
| 264 | RDEPEND+=" ${COMMONDEPEND}" |
347 | RDEPEND+=" ${COMMONDEPEND}" |
| 265 | unset COMMONDEPEND |
348 | unset COMMONDEPEND |
| 266 | |
349 | |
|
|
350 | # Add experimental kdeenablefinal, disabled by default |
|
|
351 | IUSE+=" kdeenablefinal" |
|
|
352 | |
| 267 | # 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 |
| 268 | # koffice ebuild, the URI should be set in the ebuild itself |
354 | # koffice ebuild, the URI should be set in the ebuild itself |
| 269 | case ${BUILD_TYPE} in |
355 | case ${BUILD_TYPE} in |
| 270 | live) |
356 | live) |
| 271 | # Determine branch URL based on live type |
|
|
| 272 | local branch_prefix |
|
|
| 273 | case ${PV} in |
|
|
| 274 | 9999*) |
|
|
| 275 | # trunk |
|
|
| 276 | branch_prefix="trunk/KDE" |
|
|
| 277 | ;; |
|
|
| 278 | *) |
|
|
| 279 | # branch |
|
|
| 280 | branch_prefix="branches/KDE/${SLOT}" |
|
|
| 281 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
| 282 | # @DESCRIPTION |
|
|
| 283 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
| 284 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
| 285 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
| 286 | ;; |
|
|
| 287 | esac |
|
|
| 288 | SRC_URI="" |
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 |
| 289 | # @ECLASS-VARIABLE: ESVN_MIRROR |
376 | # @ECLASS-VARIABLE: ESVN_MIRROR |
| 290 | # @DESCRIPTION: |
377 | # @DESCRIPTION: |
| 291 | # This variable allows easy overriding of default kde mirror service |
378 | # This variable allows easy overriding of default kde mirror service |
| 292 | # (anonsvn) with anything else you might want to use. |
379 | # (anonsvn) with anything else you might want to use. |
| 293 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
380 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
| 294 | # Split ebuild, or extragear stuff |
381 | # Split ebuild, or extragear stuff |
| 295 | if [[ -n ${KMNAME} ]]; then |
382 | if [[ -n ${KMNAME} ]]; then |
| 296 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
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 |
| 297 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
430 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
| 298 | KMMODULE="${PN}" |
431 | KMMODULE="${PN}" |
| 299 | fi |
432 | fi |
| 300 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
| 301 | case ${KMNAME} in |
433 | case ${KDEBASE} in |
| 302 | kdebase-*) |
434 | kdevelop) |
| 303 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
435 | EGIT_REPO_URI="git://gitorious.org/${KMNAME}/${KMMODULE}.git" |
| 304 | ;; |
|
|
| 305 | kdelibs-*) |
|
|
| 306 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
| 307 | ;; |
|
|
| 308 | kdereview) |
|
|
| 309 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 310 | ;; |
|
|
| 311 | kdesupport) |
|
|
| 312 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 313 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
| 314 | ;; |
|
|
| 315 | kde*) |
|
|
| 316 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
| 317 | ;; |
|
|
| 318 | extragear*|playground*) |
|
|
| 319 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
| 320 | # build packages from same svn location. |
|
|
| 321 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 322 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
| 323 | ;; |
|
|
| 324 | koffice) |
|
|
| 325 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
| 326 | ;; |
|
|
| 327 | *) |
|
|
| 328 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 329 | ;; |
436 | ;; |
| 330 | esac |
437 | esac |
| 331 | else |
|
|
| 332 | # kdelibs, kdepimlibs |
|
|
| 333 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
| 334 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
| 335 | fi |
438 | fi |
| 336 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
| 337 | # @DESCRIPTION: |
|
|
| 338 | # This variable is used for specifying the timeout between svn synces |
|
|
| 339 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
| 340 | # Default value is 1 hour. |
|
|
| 341 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
| 342 | ;; |
439 | ;; |
| 343 | *) |
440 | *) |
| 344 | if [[ -n ${KDEBASE} ]]; then |
441 | if [[ -n ${KDEBASE} ]]; then |
| 345 | if [[ -n ${KMNAME} ]]; then |
442 | if [[ -n ${KMNAME} ]]; then |
| 346 | case ${KMNAME} in |
443 | case ${KMNAME} in |
| … | |
… | |
| 354 | fi |
451 | fi |
| 355 | _kmname_pv="${_kmname}-${PV}" |
452 | _kmname_pv="${_kmname}-${PV}" |
| 356 | case ${KDEBASE} in |
453 | case ${KDEBASE} in |
| 357 | kde-base) |
454 | kde-base) |
| 358 | case ${PV} in |
455 | case ${PV} in |
| 359 | 4.3.85 | 4.3.9[0568]) |
456 | 4.[45].8[05] | 4.[45].9[02568]) |
| 360 | # block for normally packed unstable releases |
457 | # Normally packed unstable releases |
| 361 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
458 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
| 362 | 4.3.[6-9]*) |
459 | 4.[45].[6-9]*) |
|
|
460 | # Repacked tarballs: need to depend on xz-utils to ensure that they can be unpacked |
| 363 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/${_kmname_pv}.tar.lzma" ;; |
461 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/src/${_kmname_pv}.tar.xz" |
|
|
462 | DEPEND+=" app-arch/xz-utils" |
|
|
463 | ;; |
| 364 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
464 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
| 365 | esac |
465 | esac |
| 366 | ;; |
466 | ;; |
| 367 | koffice) |
467 | koffice) |
| 368 | case ${PV} in |
468 | case ${PV} in |
| 369 | 2.0.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" ;; |
469 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 370 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
470 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 371 | esac |
471 | esac |
|
|
472 | ;; |
|
|
473 | kdevelop) |
|
|
474 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
475 | ;; |
| 372 | esac |
476 | esac |
| 373 | unset _kmname _kmname_pv |
477 | unset _kmname _kmname_pv |
| 374 | fi |
478 | fi |
| 375 | ;; |
479 | ;; |
| 376 | esac |
480 | esac |
| … | |
… | |
| 389 | # optional applications link |
493 | # optional applications link |
| 390 | kde4-base_pkg_setup() { |
494 | kde4-base_pkg_setup() { |
| 391 | debug-print-function ${FUNCNAME} "$@" |
495 | debug-print-function ${FUNCNAME} "$@" |
| 392 | |
496 | |
| 393 | # Prefix compat: |
497 | # Prefix compat: |
| 394 | use prefix || EROOT=${ROOT} |
498 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
499 | EPREFIX= |
|
|
500 | EROOT=${ROOT} |
|
|
501 | fi |
|
|
502 | |
| 395 | # Append missing trailing slash character |
503 | # Append missing trailing slash character |
| 396 | [[ ${EROOT} = */ ]] || EROOT+="/" |
504 | [[ ${EROOT} = */ ]] || EROOT+="/" |
| 397 | |
505 | |
| 398 | # QA ebuilds |
506 | # QA ebuilds |
| 399 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
507 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
| … | |
… | |
| 401 | # Don't set KDEHOME during compilation, it will cause access violations |
509 | # Don't set KDEHOME during compilation, it will cause access violations |
| 402 | unset KDEHOME |
510 | unset KDEHOME |
| 403 | |
511 | |
| 404 | if [[ ${KDEBASE} = kde-base ]]; then |
512 | if [[ ${KDEBASE} = kde-base ]]; then |
| 405 | if use kdeprefix; then |
513 | if use kdeprefix; then |
| 406 | KDEDIR="${EROOT}usr/kde/${_kdedir}" |
514 | KDEDIR=/usr/kde/${SLOT} |
| 407 | else |
515 | else |
| 408 | KDEDIR="${EROOT}usr" |
516 | KDEDIR=/usr |
| 409 | fi |
517 | fi |
| 410 | PREFIX="${PREFIX:-${KDEDIR}}" |
518 | : ${PREFIX:=${KDEDIR}} |
| 411 | else |
519 | else |
| 412 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
520 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
| 413 | KDEDIR= |
521 | KDEDIR= |
| 414 | local kde_minimal_met |
522 | local kde_minimal_met |
| 415 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
523 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
| 416 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
524 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
| 417 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
525 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
| 418 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
526 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
| 419 | KDEDIR="${EROOT}usr/kde/${slot}" |
527 | KDEDIR=/usr/kde/${slot} |
| 420 | else |
528 | else |
| 421 | KDEDIR="${EROOT}usr" |
529 | KDEDIR=/usr |
| 422 | fi |
530 | fi |
| 423 | break; |
531 | break; |
| 424 | fi |
532 | fi |
| 425 | done |
533 | done |
| 426 | unset slot |
534 | unset slot |
| 427 | |
535 | |
| 428 | # Bail out if kdelibs required but not found |
536 | # Bail out if kdelibs required but not found |
| 429 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
537 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
| 430 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
538 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
| 431 | else |
539 | else |
| 432 | [[ -z ${KDEDIR} ]] && KDEDIR="${EROOT}usr" |
540 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
| 433 | fi |
|
|
| 434 | |
|
|
| 435 | PREFIX="${PREFIX:-${EROOT}usr}" |
|
|
| 436 | fi |
541 | fi |
|
|
542 | |
|
|
543 | : ${PREFIX:=/usr} |
|
|
544 | fi |
|
|
545 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
546 | |
| 437 | # Point pkg-config path to KDE *.pc files |
547 | # Point pkg-config path to KDE *.pc files |
| 438 | export PKG_CONFIG_PATH="${KDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
548 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
| 439 | # Point to correct QT plugins path |
549 | # Point to correct QT plugins path |
| 440 | QT_PLUGIN_PATH="${KDEDIR}/$(get_libdir)/kde4/plugins/" |
550 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
| 441 | |
551 | |
| 442 | # Fix XDG collision with sandbox |
552 | # Fix XDG collision with sandbox |
| 443 | export XDG_CONFIG_HOME="${T}" |
553 | export XDG_CONFIG_HOME="${T}" |
| 444 | # Not needed anymore |
|
|
| 445 | unset _kdedir |
|
|
| 446 | } |
554 | } |
| 447 | |
555 | |
| 448 | # @FUNCTION: kde4-base_src_unpack |
556 | # @FUNCTION: kde4-base_src_unpack |
| 449 | # @DESCRIPTION: |
557 | # @DESCRIPTION: |
| 450 | # This function unpacks the source tarballs for KDE4 applications. |
558 | # This function unpacks the source tarballs for KDE4 applications. |
| 451 | kde4-base_src_unpack() { |
559 | kde4-base_src_unpack() { |
| 452 | debug-print-function ${FUNCNAME} "$@" |
560 | debug-print-function ${FUNCNAME} "$@" |
| 453 | |
561 | |
| 454 | if [[ ${BUILD_TYPE} = live ]]; then |
562 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
563 | if has subversion ${INHERITED}; then |
| 455 | migrate_store_dir |
564 | migrate_store_dir |
| 456 | subversion_src_unpack |
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) |
|
|
574 | case ${file} in |
|
|
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 | ;; |
|
|
583 | esac |
|
|
584 | done |
| 457 | else |
585 | else |
| 458 | base_src_unpack |
586 | # For EAPI >= 3, we can just use unpack() directly |
|
|
587 | unpack ${A} |
| 459 | fi |
588 | fi |
| 460 | } |
589 | } |
| 461 | |
590 | |
| 462 | # @FUNCTION: kde4-base_src_prepare |
591 | # @FUNCTION: kde4-base_src_prepare |
| 463 | # @DESCRIPTION: |
592 | # @DESCRIPTION: |
| … | |
… | |
| 478 | # kdelibs inherits kde4-base but handle installing the handbook itself |
607 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 479 | if ! has kde4-meta ${INHERITED}; then |
608 | if ! has kde4-meta ${INHERITED}; then |
| 480 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
609 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
| 481 | fi |
610 | fi |
| 482 | |
611 | |
| 483 | [[ ${BUILD_TYPE} = live ]] && subversion_src_prepare |
612 | # SCM bootstrap |
|
|
613 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
614 | if has subversion ${INHERITED}; then |
|
|
615 | subversion_src_prepare |
|
|
616 | elif has git ${INHERITED}; then |
|
|
617 | git_src_prepare |
|
|
618 | fi |
|
|
619 | fi |
|
|
620 | |
|
|
621 | # Apply patches |
| 484 | base_src_prepare |
622 | base_src_prepare |
| 485 | |
623 | |
| 486 | # Save library dependencies |
624 | # Save library dependencies |
| 487 | if [[ -n ${KMSAVELIBS} ]] ; then |
625 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 488 | save_library_dependencies |
626 | save_library_dependencies |
| … | |
… | |
| 498 | # @DESCRIPTION: |
636 | # @DESCRIPTION: |
| 499 | # Function for configuring the build of KDE4 applications. |
637 | # Function for configuring the build of KDE4 applications. |
| 500 | kde4-base_src_configure() { |
638 | kde4-base_src_configure() { |
| 501 | debug-print-function ${FUNCNAME} "$@" |
639 | debug-print-function ${FUNCNAME} "$@" |
| 502 | |
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 has debug ${IUSE//+} && use debug; then |
|
|
649 | # Set "real" debug mode |
|
|
650 | CMAKE_BUILD_TYPE="Debugfull" |
|
|
651 | else |
| 503 | # Handle common release builds |
652 | # Handle common release builds |
| 504 | if ! has debug ${IUSE//+} || ! use debug; then |
|
|
| 505 | append-cppflags -DQT_NO_DEBUG |
653 | append-cppflags -DQT_NO_DEBUG |
| 506 | fi |
654 | fi |
| 507 | |
655 | |
| 508 | # Build tests in src_test only, where we override this value |
|
|
| 509 | local cmakeargs="-DKDE4_BUILD_TESTS=OFF" |
|
|
| 510 | |
|
|
| 511 | # set "real" debug mode |
|
|
| 512 | if has debug ${IUSE//+} && use debug; then |
|
|
| 513 | CMAKE_BUILD_TYPE="Debugfull" |
|
|
| 514 | fi |
|
|
| 515 | |
|
|
| 516 | # Set distribution name |
656 | # Set distribution name |
| 517 | [[ ${PN} = kdelibs ]] && cmakeargs+=" -DKDE_DISTRIBUTION_TEXT=Gentoo" |
657 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
| 518 | |
658 | |
| 519 | # Here we set the install prefix |
659 | # Here we set the install prefix |
| 520 | cmakeargs+=" -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
660 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
| 521 | |
661 | |
| 522 | # Use colors |
662 | # Use colors |
| 523 | QTEST_COLORED=1 |
663 | QTEST_COLORED=1 |
| 524 | |
664 | |
| 525 | # Shadow existing /usr installations |
665 | # Shadow existing /usr installations |
| 526 | unset KDEDIRS |
666 | unset KDEDIRS |
| 527 | |
667 | |
| 528 | # Handle kdeprefix-ed KDE |
668 | # Handle kdeprefix-ed KDE |
| 529 | if [[ ${KDEDIR} != "${EROOT}usr" ]]; then |
669 | if [[ ${KDEDIR} != /usr ]]; then |
| 530 | # Override some environment variables - only when kdeprefix is different, |
670 | # Override some environment variables - only when kdeprefix is different, |
| 531 | # to not break ccache/distcc |
671 | # to not break ccache/distcc |
| 532 | PATH="${KDEDIR}/bin:${PATH}" |
672 | PATH="${EKDEDIR}/bin:${PATH}" |
| 533 | LDPATH="${KDEDIR}/$(get_libdir):${LDPATH}" |
673 | |
|
|
674 | # Append library search path |
|
|
675 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
| 534 | |
676 | |
| 535 | # Append full RPATH |
677 | # Append full RPATH |
| 536 | cmakeargs+=" -DCMAKE_SKIP_RPATH=OFF" |
678 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
| 537 | |
679 | |
| 538 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
680 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
| 539 | # when more are present |
681 | # when more are present |
| 540 | cmakeargs+=" -DCMAKE_SYSTEM_PREFIX_PATH=${KDEDIR}" |
682 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
| 541 | fi |
683 | fi |
|
|
684 | |
|
|
685 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
|
|
686 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
|
|
687 | #kde-config -path data unavailable when cross-compiling |
|
|
688 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
| 542 | |
689 | |
| 543 | # Handle kdeprefix in application itself |
690 | # Handle kdeprefix in application itself |
| 544 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
691 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
| 545 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
692 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
| 546 | cmakeargs+=" -DSYSCONF_INSTALL_DIR=${EROOT}etc" |
693 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
| 547 | fi |
694 | fi |
| 548 | |
695 | |
|
|
696 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
697 | mycmakeargs=(${mycmakeargs}) |
|
|
698 | fi |
|
|
699 | |
| 549 | mycmakeargs="${cmakeargs} ${mycmakeargs}" |
700 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
| 550 | |
701 | |
| 551 | cmake-utils_src_configure |
702 | cmake-utils_src_configure |
| 552 | } |
703 | } |
| 553 | |
704 | |
| 554 | # @FUNCTION: kde4-base_src_compile |
705 | # @FUNCTION: kde4-base_src_compile |
| … | |
… | |
| 565 | # Function for testing KDE4 applications. |
716 | # Function for testing KDE4 applications. |
| 566 | kde4-base_src_test() { |
717 | kde4-base_src_test() { |
| 567 | debug-print-function ${FUNCNAME} "$@" |
718 | debug-print-function ${FUNCNAME} "$@" |
| 568 | |
719 | |
| 569 | # Override this value, set in kde4-base_src_configure() |
720 | # Override this value, set in kde4-base_src_configure() |
| 570 | mycmakeargs+=" -DKDE4_BUILD_TESTS=ON" |
721 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 571 | cmake-utils_src_configure |
722 | cmake-utils_src_configure |
| 572 | kde4-base_src_compile |
723 | kde4-base_src_compile |
| 573 | |
724 | |
| 574 | cmake-utils_src_test |
725 | cmake-utils_src_test |
| 575 | } |
726 | } |
| … | |
… | |
| 578 | # @DESCRIPTION: |
729 | # @DESCRIPTION: |
| 579 | # Function for installing KDE4 applications. |
730 | # Function for installing KDE4 applications. |
| 580 | kde4-base_src_install() { |
731 | kde4-base_src_install() { |
| 581 | debug-print-function ${FUNCNAME} "$@" |
732 | debug-print-function ${FUNCNAME} "$@" |
| 582 | |
733 | |
|
|
734 | # Prefix support, for usage in ebuilds |
|
|
735 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
736 | ED=${D} |
|
|
737 | fi |
|
|
738 | |
| 583 | if [[ -n ${KMSAVELIBS} ]] ; then |
739 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 584 | install_library_dependencies |
740 | install_library_dependencies |
| 585 | fi |
741 | fi |
| 586 | |
742 | |
| 587 | kde4-base_src_make_doc |
743 | # Install common documentation of KDE4 applications |
|
|
744 | local doc |
|
|
745 | if ! has kde4-meta ${INHERITED}; then |
|
|
746 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
747 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
748 | done |
|
|
749 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
750 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
751 | done |
|
|
752 | fi |
|
|
753 | |
| 588 | cmake-utils_src_install |
754 | cmake-utils_src_install |
| 589 | } |
|
|
| 590 | |
|
|
| 591 | # @FUNCTION: kde4-base_src_make_doc |
|
|
| 592 | # @DESCRIPTION: |
|
|
| 593 | # Function for installing the documentation of KDE4 applications. |
|
|
| 594 | kde4-base_src_make_doc() { |
|
|
| 595 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 596 | |
|
|
| 597 | local doc |
|
|
| 598 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
|
|
| 599 | [[ -s ${doc} ]] && dodoc ${doc} |
|
|
| 600 | done |
|
|
| 601 | |
|
|
| 602 | if [[ -z ${KMNAME} ]]; then |
|
|
| 603 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
|
|
| 604 | if [[ -s ${doc} ]]; then |
|
|
| 605 | local doc_complete=${doc} |
|
|
| 606 | doc="${doc#*/}" |
|
|
| 607 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
| 608 | fi |
|
|
| 609 | done |
|
|
| 610 | fi |
|
|
| 611 | |
|
|
| 612 | if [[ -n ${KDEBASE} ]] && [[ -d "${D}${EROOT}usr/share/doc/${PF}" ]]; then |
|
|
| 613 | # work around bug #97196 |
|
|
| 614 | dodir /usr/share/doc/KDE4 && \ |
|
|
| 615 | cp -r "${D}${EROOT}usr/share/doc/${PF}" "${D}${EROOT}usr/share/doc/KDE4/" || \ |
|
|
| 616 | die "Failed to move docs to KDE4/." |
|
|
| 617 | rm -rf "${D}${EROOT}usr/share/doc/${PF}" |
|
|
| 618 | fi |
|
|
| 619 | } |
755 | } |
| 620 | |
756 | |
| 621 | # @FUNCTION: kde4-base_pkg_postinst |
757 | # @FUNCTION: kde4-base_pkg_postinst |
| 622 | # @DESCRIPTION: |
758 | # @DESCRIPTION: |
| 623 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
759 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| … | |
… | |
| 640 | ewarn "with KDE update strategies." |
776 | ewarn "with KDE update strategies." |
| 641 | ewarn "You are using this setup at your own risk and the kde team does not" |
777 | ewarn "You are using this setup at your own risk and the kde team does not" |
| 642 | ewarn "take responsibilities for dead kittens." |
778 | ewarn "take responsibilities for dead kittens." |
| 643 | echo |
779 | echo |
| 644 | fi |
780 | fi |
|
|
781 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
782 | # warn about not supported approach |
|
|
783 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
784 | echo |
|
|
785 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
786 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
787 | ewarn "With this setting you are unsupported by KDE team." |
|
|
788 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
789 | fi |
|
|
790 | fi |
| 645 | } |
791 | } |
| 646 | |
792 | |
| 647 | # @FUNCTION: kde4-base_pkg_postrm |
793 | # @FUNCTION: kde4-base_pkg_postrm |
| 648 | # @DESCRIPTION: |
794 | # @DESCRIPTION: |
| 649 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
795 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |