| 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.55 2009/12/02 17:07:05 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.69 2010/09/09 17:02:30 reavertm Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: kde4-base.eclass |
5 | # @ECLASS: kde4-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: This eclass provides functions for kde 4.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:=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 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
|
|
117 | # @DESCRIPTION: |
|
|
118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
|
|
119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
120 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
|
|
121 | |
|
|
122 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
|
|
125 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
126 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
|
|
127 | |
|
|
128 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
129 | # @DESCRIPTION: |
|
|
130 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
131 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
132 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
133 | |
|
|
134 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
|
|
135 | # @DESCRIPTION: |
|
|
136 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
|
|
137 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
138 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
|
|
139 | |
|
|
140 | # @ECLASS-VARIABLE: KDE_REQUIRED |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
|
|
143 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
|
|
144 | # If set to always or optional, KDE_MINIMAL may be overriden as well. |
|
|
145 | # Note that for kde-base packages this variable is fixed to 'always'. |
|
|
146 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
|
|
147 | |
|
|
148 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
|
|
149 | # @DESCRIPTION: |
|
|
150 | # Set to enable handbook in application. It adds +handbook to IUSE, handbook dirs |
|
|
151 | # to KMEXTRA and ensures buildtime and runtime dependencies. |
|
|
152 | [[ -n ${KDE_HANDBOOK} ]] && IUSE+=" +handbook" |
| 102 | |
153 | |
| 103 | # Setup packages inheriting this eclass |
154 | # Setup packages inheriting this eclass |
| 104 | case ${KDEBASE} in |
155 | case ${KDEBASE} in |
| 105 | kde-base) |
156 | kde-base) |
|
|
157 | HOMEPAGE="http://www.kde.org/" |
|
|
158 | LICENSE="GPL-2" |
| 106 | if [[ $BUILD_TYPE = live ]]; then |
159 | if [[ $BUILD_TYPE = live ]]; then |
| 107 | # Disable tests for live ebuilds |
160 | # Disable tests for live ebuilds |
| 108 | RESTRICT+=" test" |
161 | RESTRICT+=" test" |
| 109 | # Live ebuilds in kde-base default to kdeprefix by default |
162 | # Live ebuilds in kde-base default to kdeprefix by default |
| 110 | IUSE+=" +kdeprefix" |
163 | IUSE+=" +kdeprefix" |
| 111 | else |
164 | else |
| 112 | # All other ebuild types default to -kdeprefix as before |
165 | # All other ebuild types default to -kdeprefix as before |
| 113 | IUSE+=" kdeprefix" |
166 | IUSE+=" kdeprefix" |
| 114 | fi |
167 | 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 |
168 | # 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 |
169 | # packages that will never be mirrored. (As they only will ever be in |
| 126 | # the overlay). |
170 | # the overlay). |
| 127 | case ${PV} in |
171 | case ${PV} in |
| 128 | *9999* | 4.?.[6-9]?) |
172 | *9999* | 4.?.[6-9]?) |
| 129 | RESTRICT+=" mirror" |
173 | RESTRICT+=" mirror" |
| 130 | ;; |
174 | ;; |
| 131 | esac |
175 | esac |
| 132 | KDE_MINIMAL="${SLOT}" |
|
|
| 133 | _kdedir="${SLOT}" |
|
|
| 134 | |
|
|
| 135 | # Block installation of other SLOTS unless kdeprefix |
176 | # Block installation of other SLOTS unless kdeprefix |
| 136 | RDEPEND+=" $(block_other_slots)" |
177 | RDEPEND+=" $(block_other_slots)" |
| 137 | ;; |
178 | ;; |
| 138 | koffice) |
179 | koffice) |
| 139 | SLOT="2" |
180 | HOMEPAGE="http://www.koffice.org/" |
|
|
181 | LICENSE="GPL-2" |
|
|
182 | ;; |
|
|
183 | kdevelop) |
|
|
184 | HOMEPAGE="http://www.kdevelop.org/" |
|
|
185 | LICENSE="GPL-2" |
| 140 | ;; |
186 | ;; |
| 141 | esac |
187 | esac |
| 142 | |
188 | |
| 143 | # @ECLASS-VARIABLE: QT_MINIMAL |
189 | # @ECLASS-VARIABLE: QT_MINIMAL |
| 144 | # @DESCRIPTION: |
190 | # @DESCRIPTION: |
| 145 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1.. |
191 | # 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 |
192 | # 4.6.0 for 4.4 and 4.6.3 for 4.5 and later |
| 147 | # or 4.6.0_rc1 for KDE 4.4 and later |
|
|
| 148 | if slot_is_at_least 4.4 "${KDE_MINIMAL}"; then |
193 | if slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
|
|
194 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
|
|
195 | else |
| 149 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
196 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
| 150 | fi |
197 | fi |
| 151 | |
|
|
| 152 | QT_MINIMAL="${QT_MINIMAL:-4.5.1}" |
|
|
| 153 | |
198 | |
| 154 | # OpenGL dependencies |
199 | # OpenGL dependencies |
| 155 | qtopengldepend=" |
200 | qtopengldepend=" |
| 156 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
201 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
| 157 | " |
202 | " |
| … | |
… | |
| 164 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
209 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
| 165 | ;; |
210 | ;; |
| 166 | *) ;; |
211 | *) ;; |
| 167 | esac |
212 | esac |
| 168 | unset qtopengldepend |
213 | unset qtopengldepend |
|
|
214 | |
|
|
215 | # MultiMedia dependencies |
|
|
216 | qtmultimediadepend=" |
|
|
217 | >=x11-libs/qt-multimedia-${QT_MINIMAL}:4 |
|
|
218 | " |
|
|
219 | case ${MULTIMEDIA_REQUIRED} in |
|
|
220 | always) |
|
|
221 | COMMONDEPEND+=" ${qtmultimediadepend}" |
|
|
222 | ;; |
|
|
223 | optional) |
|
|
224 | IUSE+=" multimedia" |
|
|
225 | COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )" |
|
|
226 | ;; |
|
|
227 | *) ;; |
|
|
228 | esac |
|
|
229 | unset qtmultimediadepend |
| 169 | |
230 | |
| 170 | # WebKit dependencies |
231 | # WebKit dependencies |
| 171 | case ${KDE_REQUIRED} in |
232 | case ${KDE_REQUIRED} in |
| 172 | always) |
233 | always) |
| 173 | qtwebkitusedeps="[kde]" |
234 | qtwebkitusedeps="[kde]" |
| … | |
… | |
| 208 | *) ;; |
269 | *) ;; |
| 209 | esac |
270 | esac |
| 210 | unset cppuintdepend |
271 | unset cppuintdepend |
| 211 | |
272 | |
| 212 | # KDE dependencies |
273 | # KDE dependencies |
|
|
274 | # Qt accessibility classes are needed in various places, bug 325461 |
| 213 | kdecommondepend=" |
275 | kdecommondepend=" |
| 214 | dev-lang/perl |
|
|
| 215 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
276 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
| 216 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
277 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
| 217 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
278 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
| 218 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
279 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
| 219 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
280 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
| … | |
… | |
| 223 | x11-libs/libXext |
284 | x11-libs/libXext |
| 224 | x11-libs/libXt |
285 | x11-libs/libXt |
| 225 | x11-libs/libXxf86vm |
286 | x11-libs/libXxf86vm |
| 226 | ) |
287 | ) |
| 227 | " |
288 | " |
|
|
289 | #perl is not needed on host (+ difficult crosscompilation) |
|
|
290 | tc-is-cross-compiler || kdecommondepend+=" dev-lang/perl" |
|
|
291 | |
| 228 | if [[ ${PN} != kdelibs ]]; then |
292 | if [[ ${PN} != kdelibs ]]; then |
| 229 | if [[ ${KDEBASE} = kde-base ]]; then |
293 | if [[ ${KDEBASE} = kde-base ]]; then |
| 230 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
294 | 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 |
295 | else |
| 235 | kdecommondepend+=" |
296 | kdecommondepend+=" |
| 236 | >=kde-base/kdelibs-${KDE_MINIMAL} |
297 | >=kde-base/kdelibs-${KDE_MINIMAL} |
| 237 | " |
298 | " |
|
|
299 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
300 | if [[ ${PN} != kdevplatform ]]; then |
|
|
301 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
|
|
302 | # @DESCRIPTION: |
|
|
303 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
|
|
304 | # Applies to KDEBASE=kdevelop only. |
|
|
305 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
|
|
306 | case ${KDEVPLATFORM_REQUIRED} in |
|
|
307 | always) |
|
|
308 | kdecommondepend+=" |
|
|
309 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
|
|
310 | " |
|
|
311 | ;; |
|
|
312 | *) ;; |
|
|
313 | esac |
|
|
314 | fi |
|
|
315 | fi |
| 238 | fi |
316 | fi |
| 239 | fi |
317 | fi |
| 240 | kdedepend=" |
318 | kdedepend=" |
|
|
319 | dev-util/automoc |
| 241 | dev-util/pkgconfig |
320 | dev-util/pkgconfig |
| 242 | !aqua? ( |
321 | !aqua? ( |
| 243 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
322 | || ( >=x11-libs/libXtst-1.1.0 <x11-proto/xextproto-7.1.0 ) |
| 244 | x11-proto/xf86vidmodeproto |
323 | x11-proto/xf86vidmodeproto |
| 245 | ) |
324 | ) |
| 246 | " |
325 | " |
|
|
326 | |
|
|
327 | # Handbook handling - dependencies |
|
|
328 | if [[ -n ${KDE_HANDBOOK} ]]; then |
|
|
329 | kdedepend+=" |
|
|
330 | handbook? ( |
|
|
331 | app-text/docbook-xml-dtd:4.2 |
|
|
332 | app-text/docbook-xsl-stylesheets |
|
|
333 | ) |
|
|
334 | " |
|
|
335 | if [[ ${PN} != kdelibs ]]; then |
|
|
336 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
337 | PDEPEND+=" handbook? ( $(add_kdebase_dep kdelibs 'handbook') )" |
|
|
338 | else |
|
|
339 | PDEPEND+=" handbook? ( >=kde-base/kdelibs-${KDE_MINIMAL}[handbook] )" |
|
|
340 | fi |
|
|
341 | elif [[ ${PN} != khelpcenter ]]; then |
|
|
342 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
343 | PDEPEND+=" handbook? ( $(add_kdebase_dep khelpcenter 'handbook') )" |
|
|
344 | else |
|
|
345 | PDEPEND+=" handbook? ( >=kde-base/khelpcenter-${KDE_MINIMAL}[handbook] )" |
|
|
346 | fi |
|
|
347 | fi |
|
|
348 | fi |
|
|
349 | |
| 247 | case ${KDE_REQUIRED} in |
350 | case ${KDE_REQUIRED} in |
| 248 | always) |
351 | always) |
| 249 | IUSE+=" aqua" |
352 | IUSE+=" aqua" |
| 250 | COMMONDEPEND+=" ${kdecommondepend}" |
353 | COMMONDEPEND+=" ${kdecommondepend}" |
| 251 | DEPEND+=" ${kdedepend}" |
354 | DEPEND+=" ${kdedepend}" |
| … | |
… | |
| 261 | unset kdecommondepend kdedepend |
364 | unset kdecommondepend kdedepend |
| 262 | |
365 | |
| 263 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
366 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
| 264 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
367 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
| 265 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
368 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
|
|
369 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: PDEPEND is ${PDEPEND}" |
| 266 | |
370 | |
| 267 | # Accumulate dependencies set by this eclass |
371 | # Accumulate dependencies set by this eclass |
| 268 | DEPEND+=" ${COMMONDEPEND}" |
372 | DEPEND+=" ${COMMONDEPEND}" |
| 269 | RDEPEND+=" ${COMMONDEPEND}" |
373 | RDEPEND+=" ${COMMONDEPEND}" |
| 270 | unset COMMONDEPEND |
374 | unset COMMONDEPEND |
| … | |
… | |
| 274 | |
378 | |
| 275 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
379 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 276 | # koffice ebuild, the URI should be set in the ebuild itself |
380 | # koffice ebuild, the URI should be set in the ebuild itself |
| 277 | case ${BUILD_TYPE} in |
381 | case ${BUILD_TYPE} in |
| 278 | live) |
382 | live) |
| 279 | # Determine branch URL based on live type |
|
|
| 280 | local branch_prefix |
|
|
| 281 | case ${PV} in |
|
|
| 282 | 9999*) |
|
|
| 283 | # trunk |
|
|
| 284 | branch_prefix="trunk/KDE" |
|
|
| 285 | ;; |
|
|
| 286 | *) |
|
|
| 287 | # branch |
|
|
| 288 | branch_prefix="branches/KDE/${SLOT}" |
|
|
| 289 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
| 290 | # @DESCRIPTION |
|
|
| 291 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
| 292 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
| 293 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
| 294 | ;; |
|
|
| 295 | esac |
|
|
| 296 | SRC_URI="" |
383 | SRC_URI="" |
|
|
384 | if has subversion ${INHERITED}; then |
|
|
385 | # Determine branch URL based on live type |
|
|
386 | local branch_prefix |
|
|
387 | case ${PV} in |
|
|
388 | 9999*) |
|
|
389 | # trunk |
|
|
390 | branch_prefix="trunk/KDE" |
|
|
391 | ;; |
|
|
392 | *) |
|
|
393 | # branch |
|
|
394 | branch_prefix="branches/KDE/${SLOT}" |
|
|
395 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
396 | # @DESCRIPTION |
|
|
397 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
398 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
399 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
400 | ;; |
|
|
401 | esac |
| 297 | # @ECLASS-VARIABLE: ESVN_MIRROR |
402 | # @ECLASS-VARIABLE: ESVN_MIRROR |
| 298 | # @DESCRIPTION: |
403 | # @DESCRIPTION: |
| 299 | # This variable allows easy overriding of default kde mirror service |
404 | # This variable allows easy overriding of default kde mirror service |
| 300 | # (anonsvn) with anything else you might want to use. |
405 | # (anonsvn) with anything else you might want to use. |
| 301 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
406 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
| 302 | # Split ebuild, or extragear stuff |
407 | # Split ebuild, or extragear stuff |
| 303 | if [[ -n ${KMNAME} ]]; then |
408 | if [[ -n ${KMNAME} ]]; then |
| 304 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
409 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
410 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
411 | KMMODULE="${PN}" |
|
|
412 | fi |
|
|
413 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
414 | case ${KMNAME} in |
|
|
415 | kdebase-*) |
|
|
416 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
417 | ;; |
|
|
418 | kdelibs-*) |
|
|
419 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
420 | ;; |
|
|
421 | kdereview*) |
|
|
422 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
423 | ;; |
|
|
424 | kdesupport) |
|
|
425 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
426 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
427 | ;; |
|
|
428 | kde*) |
|
|
429 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
430 | ;; |
|
|
431 | extragear*|playground*) |
|
|
432 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
433 | # build packages from same svn location. |
|
|
434 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
435 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
436 | ;; |
|
|
437 | koffice) |
|
|
438 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
439 | ;; |
|
|
440 | *) |
|
|
441 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
442 | ;; |
|
|
443 | esac |
|
|
444 | else |
|
|
445 | # kdelibs, kdepimlibs |
|
|
446 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
447 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
448 | fi |
|
|
449 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
450 | # @DESCRIPTION: |
|
|
451 | # This variable is used for specifying the timeout between svn synces |
|
|
452 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
453 | # Default value is 1 hour. |
|
|
454 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
455 | elif has git ${INHERITED}; then |
| 305 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
456 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
| 306 | KMMODULE="${PN}" |
457 | KMMODULE="${PN}" |
| 307 | fi |
458 | fi |
| 308 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
| 309 | case ${KMNAME} in |
459 | case ${KDEBASE} in |
| 310 | kdebase-*) |
460 | kdevelop) |
| 311 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
461 | EGIT_REPO_URI="git://gitorious.org/${KMNAME}/${KMMODULE}.git" |
| 312 | ;; |
|
|
| 313 | kdelibs-*) |
|
|
| 314 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
| 315 | ;; |
|
|
| 316 | kdereview*) |
|
|
| 317 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 318 | ;; |
|
|
| 319 | kdesupport) |
|
|
| 320 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 321 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
| 322 | ;; |
|
|
| 323 | kde*) |
|
|
| 324 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
| 325 | ;; |
|
|
| 326 | extragear*|playground*) |
|
|
| 327 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
| 328 | # build packages from same svn location. |
|
|
| 329 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 330 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
| 331 | ;; |
|
|
| 332 | koffice) |
|
|
| 333 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
| 334 | ;; |
|
|
| 335 | *) |
|
|
| 336 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
| 337 | ;; |
462 | ;; |
| 338 | esac |
463 | esac |
| 339 | else |
|
|
| 340 | # kdelibs, kdepimlibs |
|
|
| 341 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
| 342 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
| 343 | fi |
464 | fi |
| 344 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
| 345 | # @DESCRIPTION: |
|
|
| 346 | # This variable is used for specifying the timeout between svn synces |
|
|
| 347 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
| 348 | # Default value is 1 hour. |
|
|
| 349 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
| 350 | ;; |
465 | ;; |
| 351 | *) |
466 | *) |
| 352 | if [[ -n ${KDEBASE} ]]; then |
467 | if [[ -n ${KDEBASE} ]]; then |
| 353 | if [[ -n ${KMNAME} ]]; then |
468 | if [[ -n ${KMNAME} ]]; then |
| 354 | case ${KMNAME} in |
469 | case ${KMNAME} in |
| … | |
… | |
| 362 | fi |
477 | fi |
| 363 | _kmname_pv="${_kmname}-${PV}" |
478 | _kmname_pv="${_kmname}-${PV}" |
| 364 | case ${KDEBASE} in |
479 | case ${KDEBASE} in |
| 365 | kde-base) |
480 | kde-base) |
| 366 | case ${PV} in |
481 | case ${PV} in |
| 367 | 4.3.8[05] | 4.3.9[0568]) |
482 | 4.[45].8[05] | 4.[45].9[02568]) |
| 368 | # block for normally packed unstable releases |
483 | # Normally packed unstable releases |
| 369 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
484 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
| 370 | 4.3.[6-9]*) |
485 | 4.[45].[6-9]*) |
| 371 | # Repacked tarballs: need to depend on xz-utils to ensure that they can be unpacked |
486 | # Repacked tarballs: need to depend on xz-utils to ensure that they can be unpacked |
| 372 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/${_kmname_pv}.tar.xz" |
487 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/src/${_kmname_pv}.tar.xz" |
| 373 | DEPEND+=" app-arch/xz-utils" |
488 | DEPEND+=" app-arch/xz-utils" |
| 374 | ;; |
489 | ;; |
| 375 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
490 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
| 376 | esac |
491 | esac |
| 377 | ;; |
492 | ;; |
| 378 | koffice) |
493 | koffice) |
| 379 | case ${PV} in |
494 | case ${PV} in |
| 380 | 2.0.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" ;; |
495 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 381 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
496 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 382 | esac |
497 | esac |
|
|
498 | ;; |
|
|
499 | kdevelop) |
|
|
500 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
501 | ;; |
| 383 | esac |
502 | esac |
| 384 | unset _kmname _kmname_pv |
503 | unset _kmname _kmname_pv |
| 385 | fi |
504 | fi |
| 386 | ;; |
505 | ;; |
| 387 | esac |
506 | esac |
| … | |
… | |
| 400 | # optional applications link |
519 | # optional applications link |
| 401 | kde4-base_pkg_setup() { |
520 | kde4-base_pkg_setup() { |
| 402 | debug-print-function ${FUNCNAME} "$@" |
521 | debug-print-function ${FUNCNAME} "$@" |
| 403 | |
522 | |
| 404 | # Prefix compat: |
523 | # Prefix compat: |
| 405 | use prefix || EROOT=${ROOT} |
524 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
525 | EPREFIX= |
|
|
526 | EROOT=${ROOT} |
|
|
527 | fi |
|
|
528 | |
| 406 | # Append missing trailing slash character |
529 | # Append missing trailing slash character |
| 407 | [[ ${EROOT} = */ ]] || EROOT+="/" |
530 | [[ ${EROOT} = */ ]] || EROOT+="/" |
| 408 | |
531 | |
| 409 | # QA ebuilds |
532 | # QA ebuilds |
| 410 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
533 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
| … | |
… | |
| 412 | # Don't set KDEHOME during compilation, it will cause access violations |
535 | # Don't set KDEHOME during compilation, it will cause access violations |
| 413 | unset KDEHOME |
536 | unset KDEHOME |
| 414 | |
537 | |
| 415 | if [[ ${KDEBASE} = kde-base ]]; then |
538 | if [[ ${KDEBASE} = kde-base ]]; then |
| 416 | if use kdeprefix; then |
539 | if use kdeprefix; then |
| 417 | KDEDIR="${EROOT}usr/kde/${_kdedir}" |
540 | KDEDIR=/usr/kde/${SLOT} |
| 418 | else |
541 | else |
| 419 | KDEDIR="${EROOT}usr" |
542 | KDEDIR=/usr |
| 420 | fi |
543 | fi |
| 421 | PREFIX="${PREFIX:-${KDEDIR}}" |
544 | : ${PREFIX:=${KDEDIR}} |
| 422 | else |
545 | else |
| 423 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
546 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
| 424 | KDEDIR= |
547 | KDEDIR= |
| 425 | local kde_minimal_met |
548 | local kde_minimal_met |
| 426 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
549 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
| 427 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
550 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
| 428 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
551 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
| 429 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
552 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
| 430 | KDEDIR="${EROOT}usr/kde/${slot}" |
553 | KDEDIR=/usr/kde/${slot} |
| 431 | else |
554 | else |
| 432 | KDEDIR="${EROOT}usr" |
555 | KDEDIR=/usr |
| 433 | fi |
556 | fi |
| 434 | break; |
557 | break; |
| 435 | fi |
558 | fi |
| 436 | done |
559 | done |
| 437 | unset slot |
560 | unset slot |
| 438 | |
561 | |
| 439 | # Bail out if kdelibs required but not found |
562 | # Bail out if kdelibs required but not found |
| 440 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
563 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
| 441 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
564 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
| 442 | else |
565 | else |
| 443 | [[ -z ${KDEDIR} ]] && KDEDIR="${EROOT}usr" |
566 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
| 444 | fi |
|
|
| 445 | |
|
|
| 446 | PREFIX="${PREFIX:-${EROOT}usr}" |
|
|
| 447 | fi |
567 | fi |
|
|
568 | |
|
|
569 | : ${PREFIX:=/usr} |
|
|
570 | fi |
|
|
571 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
572 | |
| 448 | # Point pkg-config path to KDE *.pc files |
573 | # Point pkg-config path to KDE *.pc files |
| 449 | export PKG_CONFIG_PATH="${KDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
574 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
| 450 | # Point to correct QT plugins path |
575 | # Point to correct QT plugins path |
| 451 | QT_PLUGIN_PATH="${KDEDIR}/$(get_libdir)/kde4/plugins/" |
576 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
| 452 | |
577 | |
| 453 | # Fix XDG collision with sandbox |
578 | # Fix XDG collision with sandbox |
| 454 | export XDG_CONFIG_HOME="${T}" |
579 | export XDG_CONFIG_HOME="${T}" |
| 455 | # Not needed anymore |
|
|
| 456 | unset _kdedir |
|
|
| 457 | } |
580 | } |
| 458 | |
581 | |
| 459 | # @FUNCTION: kde4-base_src_unpack |
582 | # @FUNCTION: kde4-base_src_unpack |
| 460 | # @DESCRIPTION: |
583 | # @DESCRIPTION: |
| 461 | # This function unpacks the source tarballs for KDE4 applications. |
584 | # This function unpacks the source tarballs for KDE4 applications. |
| 462 | kde4-base_src_unpack() { |
585 | kde4-base_src_unpack() { |
| 463 | debug-print-function ${FUNCNAME} "$@" |
586 | debug-print-function ${FUNCNAME} "$@" |
| 464 | |
587 | |
| 465 | if [[ ${BUILD_TYPE} = live ]]; then |
588 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
589 | if has subversion ${INHERITED}; then |
| 466 | migrate_store_dir |
590 | migrate_store_dir |
| 467 | subversion_src_unpack |
591 | subversion_src_unpack |
|
|
592 | elif has git ${INHERITED}; then |
|
|
593 | git_src_unpack |
|
|
594 | fi |
| 468 | elif [[ ${EAPI} == 2 ]]; then |
595 | elif [[ ${EAPI} == 2 ]]; then |
| 469 | local file |
596 | local file |
| 470 | for file in ${A}; do |
597 | for file in ${A}; do |
| 471 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
598 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
| 472 | # directly, so we do it ourselves (using the exact same code as portage) |
599 | # directly, so we do it ourselves (using the exact same code as portage) |
| … | |
… | |
| 506 | # kdelibs inherits kde4-base but handle installing the handbook itself |
633 | # kdelibs inherits kde4-base but handle installing the handbook itself |
| 507 | if ! has kde4-meta ${INHERITED}; then |
634 | if ! has kde4-meta ${INHERITED}; then |
| 508 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
635 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
| 509 | fi |
636 | fi |
| 510 | |
637 | |
| 511 | [[ ${BUILD_TYPE} = live ]] && subversion_src_prepare |
638 | # SCM bootstrap |
|
|
639 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
640 | if has subversion ${INHERITED}; then |
|
|
641 | subversion_src_prepare |
|
|
642 | elif has git ${INHERITED}; then |
|
|
643 | git_src_prepare |
|
|
644 | fi |
|
|
645 | fi |
|
|
646 | |
|
|
647 | # Apply patches |
| 512 | base_src_prepare |
648 | base_src_prepare |
| 513 | |
649 | |
| 514 | # Save library dependencies |
650 | # Save library dependencies |
| 515 | if [[ -n ${KMSAVELIBS} ]] ; then |
651 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 516 | save_library_dependencies |
652 | save_library_dependencies |
| … | |
… | |
| 527 | # Function for configuring the build of KDE4 applications. |
663 | # Function for configuring the build of KDE4 applications. |
| 528 | kde4-base_src_configure() { |
664 | kde4-base_src_configure() { |
| 529 | debug-print-function ${FUNCNAME} "$@" |
665 | debug-print-function ${FUNCNAME} "$@" |
| 530 | |
666 | |
| 531 | # Build tests in src_test only, where we override this value |
667 | # Build tests in src_test only, where we override this value |
| 532 | local cmakeargs="-DKDE4_BUILD_TESTS=OFF" |
668 | local cmakeargs=(-DKDE4_BUILD_TESTS=OFF) |
| 533 | |
669 | |
| 534 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
670 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 535 | cmakeargs+=" -DKDE4_ENABLE_FINAL=ON" |
671 | cmakeargs+=(-DKDE4_ENABLE_FINAL=ON) |
| 536 | fi |
672 | fi |
| 537 | |
673 | |
| 538 | if has debug ${IUSE//+} && use debug; then |
674 | if has debug ${IUSE//+} && use debug; then |
| 539 | # Set "real" debug mode |
675 | # Set "real" debug mode |
| 540 | CMAKE_BUILD_TYPE="Debugfull" |
676 | CMAKE_BUILD_TYPE="Debugfull" |
| … | |
… | |
| 542 | # Handle common release builds |
678 | # Handle common release builds |
| 543 | append-cppflags -DQT_NO_DEBUG |
679 | append-cppflags -DQT_NO_DEBUG |
| 544 | fi |
680 | fi |
| 545 | |
681 | |
| 546 | # Set distribution name |
682 | # Set distribution name |
| 547 | [[ ${PN} = kdelibs ]] && cmakeargs+=" -DKDE_DISTRIBUTION_TEXT=Gentoo" |
683 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
| 548 | |
684 | |
| 549 | # Here we set the install prefix |
685 | # Here we set the install prefix |
| 550 | cmakeargs+=" -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
686 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
| 551 | |
687 | |
| 552 | # Use colors |
688 | # Use colors |
| 553 | QTEST_COLORED=1 |
689 | QTEST_COLORED=1 |
| 554 | |
690 | |
| 555 | # Shadow existing /usr installations |
691 | # Shadow existing /usr installations |
| 556 | unset KDEDIRS |
692 | unset KDEDIRS |
| 557 | |
693 | |
| 558 | # Handle kdeprefix-ed KDE |
694 | # Handle kdeprefix-ed KDE |
| 559 | if [[ ${KDEDIR} != "${EROOT}usr" ]]; then |
695 | if [[ ${KDEDIR} != /usr ]]; then |
| 560 | # Override some environment variables - only when kdeprefix is different, |
696 | # Override some environment variables - only when kdeprefix is different, |
| 561 | # to not break ccache/distcc |
697 | # to not break ccache/distcc |
| 562 | PATH="${KDEDIR}/bin:${PATH}" |
698 | PATH="${EKDEDIR}/bin:${PATH}" |
| 563 | LDPATH="${KDEDIR}/$(get_libdir):${LDPATH}" |
699 | |
|
|
700 | # Append library search path |
|
|
701 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
| 564 | |
702 | |
| 565 | # Append full RPATH |
703 | # Append full RPATH |
| 566 | cmakeargs+=" -DCMAKE_SKIP_RPATH=OFF" |
704 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
| 567 | |
705 | |
| 568 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
706 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
| 569 | # when more are present |
707 | # when more are present |
| 570 | cmakeargs+=" -DCMAKE_SYSTEM_PREFIX_PATH=${KDEDIR}" |
708 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
| 571 | fi |
709 | fi |
|
|
710 | |
|
|
711 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
|
|
712 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
|
|
713 | #kde-config -path data unavailable when cross-compiling |
|
|
714 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
| 572 | |
715 | |
| 573 | # Handle kdeprefix in application itself |
716 | # Handle kdeprefix in application itself |
| 574 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
717 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
| 575 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
718 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
| 576 | cmakeargs+=" -DSYSCONF_INSTALL_DIR=${EROOT}etc" |
719 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
| 577 | fi |
720 | fi |
| 578 | |
721 | |
|
|
722 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
723 | mycmakeargs=(${mycmakeargs}) |
|
|
724 | fi |
|
|
725 | |
| 579 | mycmakeargs="${cmakeargs} ${mycmakeargs}" |
726 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
| 580 | |
727 | |
| 581 | cmake-utils_src_configure |
728 | cmake-utils_src_configure |
| 582 | } |
729 | } |
| 583 | |
730 | |
| 584 | # @FUNCTION: kde4-base_src_compile |
731 | # @FUNCTION: kde4-base_src_compile |
| … | |
… | |
| 595 | # Function for testing KDE4 applications. |
742 | # Function for testing KDE4 applications. |
| 596 | kde4-base_src_test() { |
743 | kde4-base_src_test() { |
| 597 | debug-print-function ${FUNCNAME} "$@" |
744 | debug-print-function ${FUNCNAME} "$@" |
| 598 | |
745 | |
| 599 | # Override this value, set in kde4-base_src_configure() |
746 | # Override this value, set in kde4-base_src_configure() |
| 600 | mycmakeargs+=" -DKDE4_BUILD_TESTS=ON" |
747 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 601 | cmake-utils_src_configure |
748 | cmake-utils_src_configure |
| 602 | kde4-base_src_compile |
749 | kde4-base_src_compile |
| 603 | |
750 | |
| 604 | cmake-utils_src_test |
751 | cmake-utils_src_test |
| 605 | } |
752 | } |
| … | |
… | |
| 608 | # @DESCRIPTION: |
755 | # @DESCRIPTION: |
| 609 | # Function for installing KDE4 applications. |
756 | # Function for installing KDE4 applications. |
| 610 | kde4-base_src_install() { |
757 | kde4-base_src_install() { |
| 611 | debug-print-function ${FUNCNAME} "$@" |
758 | debug-print-function ${FUNCNAME} "$@" |
| 612 | |
759 | |
|
|
760 | # Prefix support, for usage in ebuilds |
|
|
761 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
762 | ED=${D} |
|
|
763 | fi |
|
|
764 | |
| 613 | if [[ -n ${KMSAVELIBS} ]] ; then |
765 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 614 | install_library_dependencies |
766 | install_library_dependencies |
| 615 | fi |
767 | fi |
| 616 | |
768 | |
| 617 | kde4-base_src_make_doc |
769 | # Install common documentation of KDE4 applications |
|
|
770 | local doc |
|
|
771 | if ! has kde4-meta ${INHERITED}; then |
|
|
772 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
773 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
774 | done |
|
|
775 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
776 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
777 | done |
|
|
778 | fi |
|
|
779 | |
| 618 | cmake-utils_src_install |
780 | cmake-utils_src_install |
| 619 | } |
|
|
| 620 | |
|
|
| 621 | # @FUNCTION: kde4-base_src_make_doc |
|
|
| 622 | # @DESCRIPTION: |
|
|
| 623 | # Function for installing the documentation of KDE4 applications. |
|
|
| 624 | kde4-base_src_make_doc() { |
|
|
| 625 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 626 | |
|
|
| 627 | local doc |
|
|
| 628 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
|
|
| 629 | [[ -s ${doc} ]] && dodoc ${doc} |
|
|
| 630 | done |
|
|
| 631 | |
|
|
| 632 | if [[ -z ${KMNAME} ]]; then |
|
|
| 633 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
|
|
| 634 | if [[ -s ${doc} ]]; then |
|
|
| 635 | local doc_complete=${doc} |
|
|
| 636 | doc="${doc#*/}" |
|
|
| 637 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
| 638 | fi |
|
|
| 639 | done |
|
|
| 640 | fi |
|
|
| 641 | |
|
|
| 642 | if [[ -n ${KDEBASE} ]] && [[ -d "${D}${EROOT}usr/share/doc/${PF}" ]]; then |
|
|
| 643 | # work around bug #97196 |
|
|
| 644 | dodir /usr/share/doc/KDE4 && \ |
|
|
| 645 | cp -r "${D}${EROOT}usr/share/doc/${PF}" "${D}${EROOT}usr/share/doc/KDE4/" || \ |
|
|
| 646 | die "Failed to move docs to KDE4/." |
|
|
| 647 | rm -rf "${D}${EROOT}usr/share/doc/${PF}" |
|
|
| 648 | fi |
|
|
| 649 | } |
781 | } |
| 650 | |
782 | |
| 651 | # @FUNCTION: kde4-base_pkg_postinst |
783 | # @FUNCTION: kde4-base_pkg_postinst |
| 652 | # @DESCRIPTION: |
784 | # @DESCRIPTION: |
| 653 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
785 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| … | |
… | |
| 670 | ewarn "with KDE update strategies." |
802 | ewarn "with KDE update strategies." |
| 671 | ewarn "You are using this setup at your own risk and the kde team does not" |
803 | ewarn "You are using this setup at your own risk and the kde team does not" |
| 672 | ewarn "take responsibilities for dead kittens." |
804 | ewarn "take responsibilities for dead kittens." |
| 673 | echo |
805 | echo |
| 674 | fi |
806 | fi |
|
|
807 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
808 | # warn about not supported approach |
|
|
809 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
810 | echo |
|
|
811 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
812 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
813 | ewarn "With this setting you are unsupported by KDE team." |
|
|
814 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
815 | fi |
|
|
816 | fi |
| 675 | } |
817 | } |
| 676 | |
818 | |
| 677 | # @FUNCTION: kde4-base_pkg_postrm |
819 | # @FUNCTION: kde4-base_pkg_postrm |
| 678 | # @DESCRIPTION: |
820 | # @DESCRIPTION: |
| 679 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
821 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |