| 1 | # Copyright 2007-2008 Gentoo Foundation |
1 | # Copyright 2007-2008 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.3 2008/02/18 17:00:32 ingmar Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.29 2009/02/10 20:07:24 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: kde4-base.eclass |
5 | # @ECLASS: kde4-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: This eclass provides functions for kde 4.0 ebuilds |
8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The kde4-base.eclass provides support for building KDE4 monolithic ebuilds |
10 | # The kde4-base.eclass provides support for building KDE4 based ebuilds |
| 11 | # and KDE4 applications. |
11 | # and KDE4 applications. |
| 12 | # |
12 | # |
| 13 | # NOTE: This eclass uses the SLOT dependencies from EAPI="1" or compatible, |
13 | # NOTE: KDE 4 ebuilds by default define EAPI="2", this can be redefined but |
| 14 | # hence you must define EAPI="1" in the ebuild, before inheriting any eclasses. |
14 | # eclass will fail with version older than 2. |
| 15 | |
15 | |
| 16 | inherit base eutils multilib cmake-utils kde4-functions |
16 | inherit base cmake-utils eutils multilib kde4-functions |
| 17 | |
17 | |
|
|
18 | get_build_type |
|
|
19 | if [[ $BUILD_TYPE = live ]]; then |
|
|
20 | inherit subversion |
|
|
21 | fi |
|
|
22 | |
| 18 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
23 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
| 19 | |
24 | |
| 20 | COMMONDEPEND=">=x11-libs/qt-4.3.3:4" |
25 | # @FUNCTION: kde4-base_set_qt_dependencies |
|
|
26 | # @DESCRIPTION: |
|
|
27 | # Set qt dependencies. And use opengl based on OPENGL_REQUIRED variable. |
|
|
28 | kde4-base_set_qt_dependencies() { |
|
|
29 | local qtdepend qtopengldepend |
|
|
30 | |
|
|
31 | qtdepend=" |
|
|
32 | x11-libs/qt-core:4[qt3support,ssl] |
|
|
33 | x11-libs/qt-gui:4[accessibility,dbus] |
|
|
34 | x11-libs/qt-qt3support:4[accessibility] |
|
|
35 | x11-libs/qt-script:4 |
|
|
36 | x11-libs/qt-sql:4[qt3support] |
|
|
37 | x11-libs/qt-svg:4 |
|
|
38 | x11-libs/qt-test:4 |
|
|
39 | x11-libs/qt-webkit:4" |
|
|
40 | qtopengldepend="x11-libs/qt-opengl:4" |
|
|
41 | |
|
|
42 | # opengl dependencies |
|
|
43 | case ${OPENGL_REQUIRED} in |
|
|
44 | always) |
|
|
45 | qtdepend="${qtdepend} |
|
|
46 | ${qtopengldepend}" |
|
|
47 | ;; |
|
|
48 | optional) |
|
|
49 | IUSE="${IUSE} opengl" |
|
|
50 | qtdepend="${qtdepend} |
|
|
51 | opengl? ( ${qtopengldepend} )" |
|
|
52 | ;; |
|
|
53 | *) |
|
|
54 | OPENGL_REQUIRED="never" |
|
|
55 | ;; |
|
|
56 | esac |
|
|
57 | |
|
|
58 | COMMONDEPEND="${COMMONDEPEND} ${qtdepend}" |
|
|
59 | } |
|
|
60 | kde4-base_set_qt_dependencies |
|
|
61 | |
|
|
62 | # Set the cmake dependencies |
|
|
63 | # Quite a few packages fail with cmake-2.4 even for KDE 4.1, so we just require 2.6.2 |
|
|
64 | CMAKEDEPEND=">=dev-util/cmake-2.6.2" |
|
|
65 | |
|
|
66 | # Set the common dependencies |
| 21 | DEPEND="${DEPEND} ${COMMONDEPEND} |
67 | DEPEND="${DEPEND} ${COMMONDEPEND} ${CMAKEDEPEND} |
| 22 | >=dev-util/cmake-2.4.7-r1 |
|
|
| 23 | dev-util/pkgconfig |
68 | dev-util/pkgconfig |
| 24 | x11-libs/libXt |
69 | x11-libs/libXt |
| 25 | x11-proto/xf86vidmodeproto" |
70 | x11-proto/xf86vidmodeproto" |
| 26 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
71 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
| 27 | |
72 | |
| 28 | if has test ${IUSE//+}; then |
73 | if [[ $BUILD_TYPE = live ]]; then |
| 29 | DEPEND="${DEPEND} |
74 | # Disable tests for live ebuilds |
| 30 | test? ( dev-util/cppunit )" |
75 | RESTRICT="${RESTRICT} test" |
|
|
76 | # Live ebuilds in kde-base default to kdeprefix by default |
|
|
77 | IUSE="${IUSE} +kdeprefix" |
|
|
78 | else |
|
|
79 | # All other ebuild types default to -kdeprefix as before |
|
|
80 | IUSE="${IUSE} kdeprefix" |
| 31 | fi |
81 | fi |
| 32 | |
82 | |
|
|
83 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
|
|
84 | # @DESCRIPTION: |
|
|
85 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
|
|
86 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
87 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
|
|
88 | |
|
|
89 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
|
|
90 | # @DESCRIPTION: |
|
|
91 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
|
|
92 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
93 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
|
|
94 | |
|
|
95 | case ${CPPUNIT_REQUIRED} in |
|
|
96 | always) |
|
|
97 | DEPEND="${DEPEND} dev-util/cppunit" |
|
|
98 | ;; |
|
|
99 | optional) |
|
|
100 | IUSE="${IUSE} test" |
|
|
101 | DEPEND="${DEPEND} |
|
|
102 | test? ( dev-util/cppunit )" |
|
|
103 | ;; |
|
|
104 | *) |
|
|
105 | CPPUNIT_REQUIRED="never" |
|
|
106 | ;; |
|
|
107 | esac |
|
|
108 | |
| 33 | # @ECLASS-VARIABLE: NEED_KDE |
109 | # @ECLASS-VARIABLE: NEED_KDE |
| 34 | # @DESCRIPTION: |
110 | # @DESCRIPTION: |
| 35 | # This variable sets the version of KDE4 which will be used by the eclass. |
111 | # This variable sets the version of KDE4 which will be used by the eclass. |
| 36 | # This variable must be set by the ebuild, for all categories except for "kde-base". |
|
|
| 37 | # For kde-base packages, if it is not set by the ebuild, |
112 | # For kde-base packages, if it is not set by the ebuild, |
| 38 | # it's assumed that the required KDE4 version is the latest, non-live, available. |
113 | # it's assumed that the required KDE4 version is the latest available. |
|
|
114 | # For non kde-base packages, it is also set to the latest by default. |
|
|
115 | # |
|
|
116 | # For more precise adjustments or for specifying particular kde version, |
|
|
117 | # KDE_MINIMAL variable can be used. |
| 39 | # |
118 | # |
| 40 | # @CODE |
119 | # @CODE |
| 41 | # Acceptable values are: |
120 | # Acceptable values are: |
| 42 | # - latest - Use latest version in the portage tree |
121 | # - latest - Use latest version in the portage tree |
| 43 | # Default for kde-base ebuilds. Banned for ebuilds not part of kde or koffice. |
122 | # Default for kde-base ebuilds. |
| 44 | # - svn - Use svn release (live ebuilds) |
123 | # - live - Use live release (live ebuilds) |
| 45 | # - :SLOT - Use any version in the SLOT specified in the NEED_KDE value. |
|
|
| 46 | # - VERSION_NUMBER - Use the minimum KDE4 version specified in the NEED_KDE value. |
|
|
| 47 | # - VERSION_NUMBER:SLOT - Use the minimum KDE4 version and the SLOT specified in the NEED_KDE value. |
|
|
| 48 | # - none - Let the ebuild handle SLOT, kde dependencies, KDEDIR, ... |
124 | # - none - Let the ebuild handle SLOT, kde dependencies, KDEDIR, ... |
|
|
125 | # - 4.2, 4.1, kde-4 - respective slots for kde versions |
| 49 | # @CODE |
126 | # @CODE |
|
|
127 | # Note: default NEED_KDE is latest |
|
|
128 | NEED_KDE="${NEED_KDE:=latest}" |
|
|
129 | export NEED_KDE |
|
|
130 | |
|
|
131 | # @ECLASS-VARIABLE: KDE_MINIMAL |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # This wariable is used when NEED_KDE="latest" is set, to specify the |
|
|
134 | # required KDE minimal version for which apps will work. |
|
|
135 | # @CODE |
|
|
136 | # KDE_MINIMAL="-4.1" |
|
|
137 | # @CODE |
|
|
138 | # Note: default minimal version is kde-4.1, which means that the apps will work |
|
|
139 | # with any KDE version >=${KDE_MINIMAL} |
|
|
140 | KDE_MINIMAL="${KDE_MINIMAL:=4.1}" |
|
|
141 | export KDE_MINIMAL |
|
|
142 | |
|
|
143 | # FIXME: the code section, explanation of live. The last sentence needs other |
|
|
144 | # formulation too. |
| 50 | # |
145 | # |
| 51 | # Note: There is no default NEED_KDE for ebuilds not in kde-base or part of |
146 | # @ECLASS-VARIABLE: KDE_WANTED |
| 52 | # koffice, so you must set it explicitly in the ebuild, in all other cases. |
147 | # @DESCRIPTION: |
| 53 | if [[ -z ${NEED_KDE} ]]; then |
148 | # When NEED_KDE=latest is inherited, KDE_WANTED serves to indicate the prefered kde |
| 54 | if [[ -n ${KDEBASE} ]]; then |
149 | # version. It's value is looked for before any other. Useful when having more |
| 55 | NEED_KDE="latest" |
150 | # +kdeprefix installs: you can choose which kde version, if present, to link |
| 56 | else |
151 | # against. |
| 57 | die "kde4-base.eclass inherited but NEED_KDE not defined - broken ebuild" |
152 | # |
| 58 | fi |
153 | # @CODE |
| 59 | fi |
154 | # Acceptable values are: |
| 60 | export NEED_KDE |
155 | # stable = whatever is main tree (now 4.1) |
|
|
156 | # testing = whatever is in testing on main tree |
|
|
157 | # snapshot = whatever is released under snapshots (4.2 at present) |
|
|
158 | # live = live svn ebuilds, also default value, do not be scared it goes in this |
|
|
159 | # |
|
|
160 | # order: live->snapshot->testing->stable, when searching for kde. This way we |
|
|
161 | # allow users to use just kde4snapshots and use software from the tree. |
|
|
162 | KDE_WANTED="${KDE_WANTED:=live}" |
|
|
163 | export KDE_WANTED |
| 61 | |
164 | |
| 62 | case ${NEED_KDE} in |
165 | case ${NEED_KDE} in |
| 63 | latest) |
166 | latest) |
| 64 | # Should only be used by 'kde-base'-ebuilds |
|
|
| 65 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
167 | if [[ $KDEBASE = kde-base ]]; then |
| 66 | case ${PV} in |
168 | case ${PV} in |
| 67 | 3.9*) _kdedir="3.9" ;; |
169 | 4.2.6*) |
|
|
170 | _kdedir="4.3" |
|
|
171 | _pv="-${PV}:4.3" |
|
|
172 | _pvn="-${PV}" |
|
|
173 | ;; |
|
|
174 | 4.2* | 4.1.9* | 4.1.8* | 4.1.7* | 4.1.6*) |
|
|
175 | _kdedir="4.2" |
|
|
176 | _pv="-${PV}:4.2" |
|
|
177 | _pvn="-${PV}" |
|
|
178 | ;; |
|
|
179 | 4.1*| 4.0.9* | 4.0.8*) |
|
|
180 | _kdedir="4.1" |
|
|
181 | _pv="-${PV}:4.1" |
|
|
182 | _pvn="-${PV}" |
|
|
183 | ;; |
|
|
184 | 4.0*) |
| 68 | 4*) _kdedir="4.0" ;; |
185 | _kdedir="4.0" |
|
|
186 | _pv="-${PV}:kde-4" |
|
|
187 | _pvn="-${PV}" |
|
|
188 | ;; |
|
|
189 | 3.9*) |
|
|
190 | _kdedir="3.9" |
|
|
191 | _pv="-${PV}:kde-4" |
|
|
192 | _pvn="-${PV}" |
|
|
193 | ;; |
|
|
194 | 9999*) |
|
|
195 | _kdedir="live" |
|
|
196 | _pv="-${PV}:live" |
|
|
197 | _pvn="-${PV}" |
|
|
198 | ;; |
|
|
199 | *) |
| 69 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
200 | die "NEED_KDE=latest not supported for PV=${PV}" ;; |
| 70 | esac |
201 | esac |
| 71 | _operator=">=" |
202 | _operator=">=" |
| 72 | _pv="-${PV}:kde-4" |
|
|
| 73 | else |
203 | else |
| 74 | _kdedir="4.0" |
204 | # this creates dependency on any version of kde4 |
| 75 | _pv=":kde-4" |
205 | _operator=">=" |
|
|
206 | _pv="-${KDE_MINIMAL}" |
|
|
207 | _pvn=${_pv} |
| 76 | fi |
208 | fi |
| 77 | ;; |
209 | ;; |
| 78 | svn|9999*|:kde-svn) |
210 | |
|
|
211 | # NEED_KDE="${PV}" |
|
|
212 | scm|svn|live|9999*) |
| 79 | _kdedir="svn" |
213 | _kdedir="live" |
| 80 | _pv=":kde-svn" |
|
|
| 81 | export NEED_KDE="svn" |
|
|
| 82 | ;; |
|
|
| 83 | *:kde-svn) |
|
|
| 84 | _kdedir="svn" |
|
|
| 85 | _operator=">=" |
214 | _operator=">=" |
|
|
215 | _pv="-${NEED_KDE}:live" |
| 86 | _pv="-${NEED_KDE}" |
216 | _pvn="-${NEED_KDE}" |
| 87 | export NEED_KDE="svn" |
217 | export NEED_KDE="live" |
| 88 | ;; |
218 | ;; |
| 89 | # The ebuild handles dependencies, KDEDIR, SLOT. |
219 | 4.2.6*) |
| 90 | none) |
|
|
| 91 | : |
|
|
| 92 | ;; |
|
|
| 93 | # NEED_KDE=":${SLOT}" |
|
|
| 94 | :kde-4) |
|
|
| 95 | _kdedir="4.0" |
220 | _kdedir="4.3" |
|
|
221 | _pv="-${NEED_KDE}:4.3" |
| 96 | _pv="${NEED_KDE}" |
222 | _pvn="-${NEED_KDE}" |
|
|
223 | _operator=">=" |
| 97 | ;; |
224 | ;; |
| 98 | # NEED_KDE="${PV}:${SLOT}" |
225 | 4.2 | 4.1.9* | 4.1.8* | 4.1.7* | 4.1.6*) |
| 99 | *:kde-4) |
226 | _kdedir="4.2" |
|
|
227 | _pv="-${NEED_KDE}:4.2" |
|
|
228 | _pvn="-${NEED_KDE}" |
|
|
229 | _operator=">=" |
|
|
230 | ;; |
|
|
231 | 4.1 | 4.0.9* | 4.0.8*) |
|
|
232 | _kdedir="4.1" |
|
|
233 | _pv="-${NEED_KDE}:4.1" |
|
|
234 | _pvn="-${NEED_KDE}" |
|
|
235 | _operator=">=" |
|
|
236 | ;; |
|
|
237 | 4.0* | 4) |
| 100 | _kdedir="4.0" |
238 | _kdedir="4.0" |
| 101 | _operator=">=" |
239 | _operator=">=" |
|
|
240 | _pv="-${NEED_KDE}:kde-4" |
| 102 | _pv="-${NEED_KDE}" |
241 | _pvn="-${NEED_KDE}" |
| 103 | ;; |
242 | ;; |
| 104 | 3.9*) |
243 | 3.9*) |
| 105 | _kdedir="3.9" |
244 | _kdedir="3.9" |
| 106 | _operator=">=" |
245 | _operator=">=" |
| 107 | _pv="-${NEED_KDE}:kde-4" |
246 | _pv="-${NEED_KDE}:kde-4" |
|
|
247 | _pvn="-${NEED_KDE}" |
| 108 | ;; |
248 | ;; |
|
|
249 | |
|
|
250 | # The ebuild handles dependencies, KDEDIR, SLOT. |
|
|
251 | none) |
|
|
252 | : |
|
|
253 | ;; |
|
|
254 | |
| 109 | 4*) |
255 | *) |
| 110 | _kdedir="4.0" |
|
|
| 111 | _operator=">=" |
|
|
| 112 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 113 | ;; |
|
|
| 114 | *) die "NEED_KDE=${NEED_KDE} currently not supported." |
256 | die "NEED_KDE=${NEED_KDE} currently not supported." |
| 115 | ;; |
257 | ;; |
| 116 | esac |
258 | esac |
| 117 | |
259 | |
| 118 | if [[ ${NEED_KDE} != none ]]; then |
260 | if [[ ${NEED_KDE} != none ]]; then |
| 119 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
| 120 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 121 | |
261 | |
|
|
262 | #Set the SLOT |
| 122 | if [[ -n ${KDEBASE} ]]; then |
263 | if [[ -n $KDEBASE ]]; then |
| 123 | if [[ ${NEED_KDE} = svn ]]; then |
264 | if [[ $NEED_KDE = live ]]; then |
| 124 | SLOT="kde-svn" |
265 | SLOT="live" |
| 125 | else |
266 | else |
| 126 | SLOT="kde-4" |
267 | case ${KMNAME} in |
|
|
268 | koffice) |
|
|
269 | case ${PV} in |
|
|
270 | 9999*) SLOT="live" ;; |
|
|
271 | *) SLOT="2" ;; |
|
|
272 | esac |
|
|
273 | ;; |
|
|
274 | kdevelop) |
|
|
275 | case ${PV} in |
|
|
276 | 9999*) SLOT="live" ;; |
|
|
277 | 4.0*|3.9*) SLOT="4" ;; |
|
|
278 | esac |
|
|
279 | ;; |
|
|
280 | kdevplatform) |
|
|
281 | case ${PV} in |
|
|
282 | 9999*) SLOT="live" ;; |
|
|
283 | 1.0*|0.9*) SLOT="1" ;; |
|
|
284 | esac |
|
|
285 | ;; |
|
|
286 | *) |
|
|
287 | case ${PV} in |
|
|
288 | 9999*) SLOT="live" ;; |
|
|
289 | 4.2* | 4.1.9* | 4.1.8* | 4.1.7* | 4.1.6*) SLOT="4.2" ;; |
|
|
290 | 4.1* | 4.0.9* | 4.0.8*) SLOT="4.1" ;; |
|
|
291 | *) SLOT="4.1" ;; |
|
|
292 | esac |
|
|
293 | ;; |
|
|
294 | esac |
| 127 | fi |
295 | fi |
| 128 | fi |
296 | fi |
| 129 | |
297 | |
|
|
298 | # Block installation of other SLOTS unless kdeprefix |
|
|
299 | for KDE_SLOT in ${KDE_SLOTS[@]}; do |
|
|
300 | # block non kdeprefix ${PN} on other slots |
|
|
301 | # we do this only if we do not depend on any version of kde |
|
|
302 | if [[ ${SLOT} != ${KDE_SLOT} ]]; then |
|
|
303 | DEPEND="${DEPEND} |
|
|
304 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
305 | RDEPEND="${RDEPEND} |
|
|
306 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
307 | fi |
|
|
308 | done |
|
|
309 | |
|
|
310 | # Adding kdelibs, kdepimlibs and kdebase-data deps to all other packages. |
| 130 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
311 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
| 131 | if [[ ${PN} != "kdelibs" ]]; then |
312 | if [[ $PN != kdelibs ]]; then |
| 132 | DEPEND="${DEPEND} |
313 | DEPEND="${DEPEND} |
| 133 | ${_operator}kde-base/kdelibs${_pv}" |
314 | kdeprefix? ( ${_operator}kde-base/kdelibs${_pv}[kdeprefix] ) |
|
|
315 | !kdeprefix? ( ${_operator}kde-base/kdelibs${_pvn}[-kdeprefix] )" |
| 134 | RDEPEND="${RDEPEND} |
316 | RDEPEND="${RDEPEND} |
| 135 | ${_operator}kde-base/kdelibs${_pv}" |
317 | kdeprefix? ( ${_operator}kde-base/kdelibs${_pv}[kdeprefix] ) |
|
|
318 | !kdeprefix? ( ${_operator}kde-base/kdelibs${_pvn}[-kdeprefix] )" |
| 136 | if [[ ${PN} != "kdepimlibs" ]]; then |
319 | if [[ $PN != kdepimlibs ]]; then |
| 137 | DEPEND="${DEPEND} |
320 | DEPEND="${DEPEND} |
| 138 | ${_operator}kde-base/kdepimlibs${_pv}" |
321 | kdeprefix? ( ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix] ) |
|
|
322 | !kdeprefix? ( ${_operator}kde-base/kdepimlibs${_pvn}[-kdeprefix] )" |
| 139 | RDEPEND="${RDEPEND} |
323 | RDEPEND="${RDEPEND} |
| 140 | ${_operator}kde-base/kdepimlibs${_pv}" |
324 | kdeprefix? ( ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix] ) |
|
|
325 | !kdeprefix? ( ${_operator}kde-base/kdepimlibs${_pvn}[-kdeprefix] )" |
|
|
326 | if [[ $PN != kdebase-data ]]; then |
|
|
327 | RDEPEND="${RDEPEND} |
|
|
328 | kdeprefix? ( ${_operator}kde-base/kdebase-data${_pv}[kdeprefix] ) |
|
|
329 | !kdeprefix? ( ${_operator}kde-base/kdebase-data${_pvn}[-kdeprefix] )" |
|
|
330 | fi |
| 141 | fi |
331 | fi |
| 142 | fi |
332 | fi |
| 143 | |
|
|
| 144 | unset _operator _pv _kdedir |
333 | unset _operator _pv _pvn |
| 145 | fi |
334 | fi |
| 146 | |
335 | |
| 147 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
336 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
| 148 | # koffice ebuild, the URI should be set in the ebuild itself |
337 | # koffice ebuild, the URI should be set in the ebuild itself |
| 149 | if [[ -n ${KDEBASE} ]]; then |
338 | case ${SLOT} in |
|
|
339 | live) |
|
|
340 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
|
|
341 | # Split ebuild, or extragear stuff |
| 150 | if [[ -n ${KMNAME} ]]; then |
342 | if [[ -n $KMNAME ]]; then |
| 151 | _kmname=${KMNAME} |
343 | ESVN_PROJECT="${KMNAME}" |
| 152 | else |
344 | if [[ -z ${KMNOMODULE} && -z ${KMMODULE} ]]; then |
| 153 | _kmname=${PN} |
345 | KMMODULE="${PN}" |
| 154 | fi |
346 | fi |
| 155 | _kmname_pv="${_kmname}-${PV}" |
347 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
| 156 | if [[ ${NEED_KDE} != "svn" ]]; then |
|
|
| 157 | case ${KDEBASE} in |
348 | case ${KMNAME} in |
| 158 | kde-base) |
349 | kdebase-*) |
|
|
350 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/KDE/kdebase/${KMNAME#kdebase-}/" |
|
|
351 | ;; |
|
|
352 | kdereview) |
|
|
353 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}/" |
|
|
354 | ;; |
|
|
355 | kde*) |
|
|
356 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/KDE/${KMNAME}" |
|
|
357 | ;; |
|
|
358 | extragear*|playground*) |
| 159 | case ${PV} in |
359 | case ${PN} in |
| 160 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
360 | *-plasma) |
|
|
361 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}/" |
|
|
362 | ESVN_PROJECT="${KMNAME}/${KMMODULE}/" |
|
|
363 | ;; |
|
|
364 | *) |
|
|
365 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}/" |
|
|
366 | ;; |
|
|
367 | esac |
|
|
368 | ;; |
|
|
369 | koffice) |
|
|
370 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
371 | ;; |
|
|
372 | *) |
|
|
373 | # Extragear material |
|
|
374 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}/" |
|
|
375 | ;; |
| 161 | esac |
376 | esac |
|
|
377 | else |
|
|
378 | # kdelibs, kdepimlibs |
|
|
379 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/KDE/${PN}" |
|
|
380 | ESVN_PROJECT="${PN}" |
|
|
381 | fi |
|
|
382 | # limit syncing to 1 hour. |
|
|
383 | ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
| 162 | ;; |
384 | ;; |
|
|
385 | *) |
|
|
386 | if [[ -n $KDEBASE ]]; then |
|
|
387 | if [[ -n ${KMNAME} ]]; then |
|
|
388 | _kmname=${KMNAME} |
|
|
389 | else |
|
|
390 | _kmname=${PN} |
|
|
391 | fi |
|
|
392 | _kmname_pv="${_kmname}-${PV}" |
|
|
393 | if [[ $NEED_KDE != live ]]; then |
|
|
394 | case ${KDEBASE} in |
|
|
395 | kde-base) |
|
|
396 | case ${PV} in |
|
|
397 | 4.2.60) |
|
|
398 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.svn912032tar.bz2" ;; |
|
|
399 | 4.2.61) |
|
|
400 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.svn917530.tar.bz2" ;; |
|
|
401 | 4.1.9* | 4.1.8* | 4.1.7* | 4.1.6* | 4.0.9* | 4.0.8*) |
|
|
402 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
403 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
404 | esac |
|
|
405 | ;; |
| 163 | koffice) |
406 | koffice) |
| 164 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
407 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
| 165 | ;; |
408 | ;; |
| 166 | esac |
409 | esac |
| 167 | fi |
410 | fi |
| 168 | unset _kmname _kmname_pv |
411 | unset _kmname _kmname_pv |
| 169 | fi |
412 | fi |
|
|
413 | ;; |
|
|
414 | esac |
| 170 | |
415 | |
| 171 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
416 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
| 172 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND ${DEPEND} - before blockers" |
|
|
| 173 | |
|
|
| 174 | # Monolithic ebuilds should add blockers for split ebuilds in the same slot. |
|
|
| 175 | # If KMNAME is not set then this is not a split package |
|
|
| 176 | if [[ -n ${KDEBASE} && -z ${KMNAME} ]]; then |
|
|
| 177 | for _x in $(get-child-packages ${CATEGORY}/${PN}); do |
|
|
| 178 | DEPEND="${DEPEND} !${_x}:${SLOT}" |
|
|
| 179 | RDEPEND="${RDEPEND} !${_x}:${SLOT}" |
|
|
| 180 | done |
|
|
| 181 | unset _x |
|
|
| 182 | fi |
|
|
| 183 | |
|
|
| 184 | debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND ${DEPEND} - after blockers" |
|
|
| 185 | |
417 | |
| 186 | # @ECLASS-VARIABLE: PREFIX |
418 | # @ECLASS-VARIABLE: PREFIX |
| 187 | # @DESCRIPTION: |
419 | # @DESCRIPTION: |
| 188 | # Set the installation PREFIX. All kde-base ebuilds go into the KDE4 installation directory. |
420 | # Set the installation PREFIX. All kde-base ebuilds go into the KDE4 installation directory. |
| 189 | # Applications installed by the other ebuilds go into /usr/ by default, this value |
421 | # Applications installed by the other ebuilds go into ${KDEDIR} by default, this value |
| 190 | # can be superseded by defining PREFIX before inheriting kde4-base. |
422 | # can be superseded by defining PREFIX before inheriting kde4-base. |
| 191 | if [[ -n ${KDEBASE} ]]; then |
423 | # This value is set on pkg_setup |
| 192 | PREFIX=${KDEDIR} |
424 | PREFIX="" |
| 193 | else |
|
|
| 194 | # if PREFIX is not defined we set it to the default value of /usr |
|
|
| 195 | PREFIX="${PREFIX:-/usr}" |
|
|
| 196 | fi |
|
|
| 197 | |
425 | |
| 198 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - KDEDIR ${KDEDIR} - KDEDIRS ${KDEDIRS}- PREFIX ${PREFIX} - NEED_KDE ${NEED_KDE}" |
426 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - NEED_KDE ${NEED_KDE}" |
| 199 | |
427 | |
| 200 | # @FUNCTION: kde4-base_pkg_setup |
428 | # @FUNCTION: kde4-base_pkg_setup |
| 201 | # @DESCRIPTION: |
429 | # @DESCRIPTION: |
| 202 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
430 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
| 203 | # kde4-functions_check_use from kde4-functions.eclass to print appropriate |
431 | # kde4-functions_check_use from kde4-functions.eclass to print appropriate |
| 204 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
432 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
| 205 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
433 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
| 206 | kde4-base_pkg_setup() { |
434 | kde4-base_pkg_setup() { |
| 207 | debug-print-function $FUNCNAME "$@" |
435 | debug-print-function $FUNCNAME "$@" |
| 208 | |
436 | |
| 209 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
437 | # Don't set KDEHOME during compile, it will cause access violations |
| 210 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
438 | unset KDEHOME |
| 211 | |
439 | |
| 212 | if has debug ${IUSE//+} && use debug; then |
440 | # Search for best suitable kde installation for misc kde package. |
| 213 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} debug" |
441 | # Computation based on NEED_KDE and KDE_MINIMAL |
| 214 | fi |
442 | [[ ${NEED_KDE} = latest || ${NEED_KDE} = none ]] && get_latest_kdedir |
| 215 | |
443 | |
| 216 | if has opengl ${IUSE//+} && use opengl; then |
444 | # Set PREFIX |
| 217 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
445 | if use kdeprefix; then |
|
|
446 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
447 | KDEDIRS="/usr/local/:/usr:${KDEDIR}" |
|
|
448 | else |
|
|
449 | KDEDIR="/usr" |
|
|
450 | KDEDIRS="/usr/local/:/usr" |
| 218 | fi |
451 | fi |
|
|
452 | # Set the prefix based on KDEDIR |
|
|
453 | # Make it a consequence of kdeprefix |
|
|
454 | PREFIX=$KDEDIR |
| 219 | |
455 | |
| 220 | kde4-functions_check_use |
456 | unset _kdedir |
|
|
457 | |
|
|
458 | # check if qt has correct deps |
|
|
459 | [[ -n ${QT4_BUILT_WITH_USE_CHECK} || -n ${KDE4_BUILT_WITH_USE_CHECK[@]} ]] && \ |
|
|
460 | die "built_with_use illegal in this EAPI!" |
|
|
461 | |
|
|
462 | if [[ $BUILD_TYPE = live && -z $I_KNOW_WHAT_I_AM_DOING ]]; then |
|
|
463 | echo |
|
|
464 | elog "WARNING! This is an experimental live ebuild of ${KMNAME:-${PN}}" |
|
|
465 | elog "Use it at your own risk." |
|
|
466 | elog "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
467 | echo |
|
|
468 | fi |
| 221 | } |
469 | } |
| 222 | |
470 | |
| 223 | # @FUNCTION: kde4-base_src_unpack |
471 | # @FUNCTION: kde4-base_src_unpack |
| 224 | # @DESCRIPTION: |
472 | # @DESCRIPTION: |
| 225 | # This function unpacks the source tarballs for KDE4 applications. |
473 | # This function unpacks the source tarballs for KDE4 applications. |
| 226 | # |
474 | # |
| 227 | # If no argument is passed to this function, then standard src_unpack is |
475 | # If no argument is passed to this function, then standard src_unpack is |
| 228 | # executed. Otherwise options are passed to base_src_unpack. |
476 | # executed. Otherwise, options are passed to base_src_unpack. |
| 229 | # |
|
|
| 230 | # If the directory ${WORKDIR}/patches/ exists, we apply all patches in that |
|
|
| 231 | # directory, provided they follow this format: |
|
|
| 232 | # @CODE |
|
|
| 233 | # - Monolithic ebuilds, (from kde-base) |
|
|
| 234 | # - $CATEGORY=kde-base: |
|
|
| 235 | # Apply ${CHILD_EBUILD_NAME}-${SLOT}-*{diff,patch} |
|
|
| 236 | # - $CATEGORY=!kde-base: |
|
|
| 237 | # Apply ${CHILD_EBUILD_NAME}-${PV}-*{diff,patch} |
|
|
| 238 | # - Split ebuilds: |
|
|
| 239 | # - $CATEGORY=kde-base: |
|
|
| 240 | # Apply ${PN}-${SLOT}-*{diff,patch} |
|
|
| 241 | # - $CATEGORY!=kde-base: |
|
|
| 242 | # Apply ${PN}-${PV}-*{diff,patch} |
|
|
| 243 | # @CODE |
|
|
| 244 | # |
|
|
| 245 | # If ${PATCHES} is non-zero all patches in it gets applied. |
|
|
| 246 | kde4-base_src_unpack() { |
477 | kde4-base_src_unpack() { |
| 247 | debug-print-function $FUNCNAME "$@" |
478 | debug-print-function $FUNCNAME "$@" |
| 248 | |
479 | |
|
|
480 | if [[ $BUILD_TYPE = live ]]; then |
|
|
481 | migrate_store_dir |
|
|
482 | subversion_src_unpack |
|
|
483 | else |
| 249 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
484 | [[ -z $KDE_S ]] && KDE_S="${S}" |
| 250 | |
|
|
| 251 | local _patchdir _packages _p |
|
|
| 252 | _patchdir="${WORKDIR}/patches/" |
|
|
| 253 | if [[ -z $* ]]; then |
485 | if [[ -z $* ]]; then |
| 254 | # Unpack first and deal with KDE patches after examing possible patch sets. |
486 | # Unpack first and deal with KDE patches after examing possible patch sets. |
| 255 | # To be picked up, patches need to conform to the guidelines stated before. |
487 | # To be picked up, patches need to conform to the guidelines stated before. |
| 256 | # Monolithic ebuilds will use the split ebuild patches. |
488 | # Monolithic ebuilds will use the split ebuild patches. |
| 257 | [[ -d "${KDE_S}" ]] || unpack ${A} |
489 | [[ -d "${KDE_S}" ]] || unpack ${A} |
| 258 | if [[ -d "${_patchdir}" ]]; then |
|
|
| 259 | if is-parent-package ${CATEGORY}/${PN} ; then |
|
|
| 260 | _packages="$(get-child-packages ${CATEGORY}/${PN})" |
|
|
| 261 | _packages="${_packages//${CATEGORY}\//} ${PN}" |
|
|
| 262 | else |
|
|
| 263 | _packages="${PN}" |
|
|
| 264 | fi |
490 | fi |
| 265 | for _p in ${_packages}; do |
491 | # Updated cmake dir |
| 266 | PATCHES="${PATCHES} $(ls ${_patchdir}/${_p}-${PV}-*{diff,patch} 2>/dev/null)" |
492 | if [[ -d "${WORKDIR}/cmake" && -d "${KDE_S}/cmake" ]]; then |
|
|
493 | ebegin "Updating cmake/ directory..." |
|
|
494 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
|
|
495 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
|
|
496 | eend 0 |
|
|
497 | fi |
|
|
498 | fi |
|
|
499 | } |
|
|
500 | |
|
|
501 | # @FUNCTION: kde4-base_src_compile |
|
|
502 | # @DESCRIPTION: |
|
|
503 | # General pre-configure and pre-compile function for KDE4 applications. |
|
|
504 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
505 | # enable_selected_linguas() in kde4-functions.eclass(5) for further details. |
|
|
506 | kde4-base_src_prepare() { |
|
|
507 | debug-print-function ${FUNCNAME} "$@" |
|
|
508 | |
|
|
509 | # Only enable selected languages, used for KDE extragear apps. |
| 267 | if [[ -n "${KDEBASE}" ]]; then |
510 | if [[ -n $KDE_LINGUAS ]]; then |
| 268 | PATCHES="${PATCHES} $(ls ${_patchdir}/${_p}-${SLOT}-*{diff,patch} 2>/dev/null)" |
511 | enable_selected_linguas |
|
|
512 | fi |
|
|
513 | |
|
|
514 | # Autopatch |
|
|
515 | base_src_prepare |
|
|
516 | |
|
|
517 | # Save library dependencies |
|
|
518 | if [[ -n $KMSAVELIBS ]] ; then |
|
|
519 | save_library_dependencies |
|
|
520 | fi |
|
|
521 | |
|
|
522 | # Inject library dependencies |
|
|
523 | if [[ -n $KMLOADLIBS ]] ; then |
|
|
524 | load_library_dependencies |
|
|
525 | fi |
|
|
526 | } |
|
|
527 | |
|
|
528 | # @FUNCTION: kde4-base_src_configure |
|
|
529 | # @DESCRIPTION: |
|
|
530 | # Function for configuring the build of KDE4 applications. |
|
|
531 | kde4-base_src_configure() { |
|
|
532 | debug-print-function ${FUNCNAME} "$@" |
|
|
533 | |
|
|
534 | # We prefer KDE's own Debugfull mode over the standard Debug |
|
|
535 | if has debug ${IUSE//+} && use debug ; then |
|
|
536 | ebegin "Enabling debug flag" |
|
|
537 | mycmakeargs="${mycmakeargs} -DCMAKE_BUILD_TYPE=Debugfull" |
|
|
538 | eend $? |
|
|
539 | fi |
|
|
540 | |
|
|
541 | # Enable generation of HTML handbook |
|
|
542 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
|
|
543 | ebegin "Enabling building of HTML handbook" |
|
|
544 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
|
|
545 | eend $? |
|
|
546 | fi |
|
|
547 | |
|
|
548 | # Build tests in src_test only, where we override this value |
|
|
549 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
|
|
550 | |
|
|
551 | # Set distribution name |
|
|
552 | [[ $PN = kdelibs ]] && mycmakeargs="${mycmakeargs} -DKDE_DISTRIBUTION_TEXT=Gentoo" |
|
|
553 | |
|
|
554 | # runpath linking |
|
|
555 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
|
|
556 | |
|
|
557 | # Here we set the install prefix |
|
|
558 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
|
|
559 | |
|
|
560 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
561 | use kdeprefix || mycmakeargs="${mycmakeargs} -DSYSCONF_INSTALL_DIR=/etc" |
|
|
562 | |
|
|
563 | # Set environment |
|
|
564 | QTEST_COLORED=1 |
|
|
565 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
|
|
566 | |
|
|
567 | # hardcode path to *.cmake KDE files |
|
|
568 | export PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+${PKG_CONFIG_PATH}:}${KDEDIR}/$(get_libdir)/pkgconfig" |
|
|
569 | |
|
|
570 | # additonal arguments for KOFFICE |
|
|
571 | if [[ $KMNAME = koffice ]]; then |
|
|
572 | case ${PN} in |
|
|
573 | koffice-data) : ;; |
|
|
574 | *) |
|
|
575 | mycmakeargs="${mycmakeargs} |
|
|
576 | -DWITH_OpenEXR=ON |
|
|
577 | $(cmake-utils_use_with crypt QCA2) |
|
|
578 | $(cmake-utils_use_with opengl OpenGL)" |
|
|
579 | if use crypt; then |
|
|
580 | mycmakeargs="${mycmakeargs} |
|
|
581 | -DQCA2_LIBRARIES=/usr/$(get_libdir)/qca2/libqca.so.2" |
| 269 | fi |
582 | fi |
| 270 | done |
583 | ;; |
|
|
584 | esac |
| 271 | fi |
585 | fi |
| 272 | [[ -n ${PATCHES} ]] && base_src_unpack autopatch |
|
|
| 273 | else |
|
|
| 274 | # Call base_src_unpack, which unpacks and patches |
|
|
| 275 | # step by step transparently as defined in the ebuild. |
|
|
| 276 | base_src_unpack $* |
|
|
| 277 | fi |
|
|
| 278 | |
586 | |
| 279 | # Updated cmake dir |
587 | [ -e CMakeLists.txt ] && cmake-utils_src_configure |
| 280 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
|
|
| 281 | ebegin "Updating cmake/ directory..." |
|
|
| 282 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
|
|
| 283 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
|
|
| 284 | eend 0 |
|
|
| 285 | fi |
|
|
| 286 | } |
588 | } |
| 287 | |
589 | |
| 288 | # @FUNCTION: kde4-base_src_compile |
590 | # @FUNCTION: kde4-base_src_compile |
| 289 | # @DESCRIPTION: |
591 | # @DESCRIPTION: |
| 290 | # General function for compiling KDE4 applications. |
592 | # General function for compiling KDE4 applications. |
| 291 | kde4-base_src_compile() { |
593 | kde4-base_src_compile() { |
| 292 | debug-print-function ${FUNCNAME} "$@" |
594 | debug-print-function ${FUNCNAME} "$@" |
| 293 | |
595 | |
| 294 | kde4-base_src_configure |
|
|
| 295 | kde4-base_src_make |
596 | kde4-base_src_make |
| 296 | } |
|
|
| 297 | |
|
|
| 298 | # @FUNCTION: kde4-base_src_configure |
|
|
| 299 | # @DESCRIPTION: |
|
|
| 300 | # Function for configuring the build of KDE4 applications. |
|
|
| 301 | kde4-base_src_configure() { |
|
|
| 302 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 303 | |
|
|
| 304 | # Final flag handling |
|
|
| 305 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
| 306 | einfo "Activating enable-final flag" |
|
|
| 307 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_FINAL=ON" |
|
|
| 308 | fi |
|
|
| 309 | |
|
|
| 310 | # Enable generation of HTML handbook |
|
|
| 311 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
|
|
| 312 | einfo "Enabling building of HTML handbook" |
|
|
| 313 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
|
|
| 314 | fi |
|
|
| 315 | |
|
|
| 316 | # Build tests in src_test only, where we override this value |
|
|
| 317 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
|
|
| 318 | |
|
|
| 319 | # Set distribution name |
|
|
| 320 | [[ ${PN} == "kdelibs" ]] && mycmakeargs="${mycmakeargs} -DKDE_DISTRIBUTION_TEXT=Gentoo" |
|
|
| 321 | |
|
|
| 322 | # runpath linking |
|
|
| 323 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
|
|
| 324 | |
|
|
| 325 | # Here we set the install prefix |
|
|
| 326 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
|
|
| 327 | |
|
|
| 328 | # Set environment |
|
|
| 329 | QTEST_COLORED=1 |
|
|
| 330 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
|
|
| 331 | |
|
|
| 332 | cmake-utils_src_configureout |
|
|
| 333 | } |
597 | } |
| 334 | |
598 | |
| 335 | # @FUNCTION: kde4-base_src_make |
599 | # @FUNCTION: kde4-base_src_make |
| 336 | # @DESCRIPTION: |
600 | # @DESCRIPTION: |
| 337 | # Function for building KDE4 applications. |
601 | # Function for building KDE4 applications. |
| 338 | # Options are passed to cmake-utils_src_make. |
602 | # Options are passed to cmake-utils_src_make. |
| 339 | kde4-base_src_make() { |
603 | kde4-base_src_make() { |
| 340 | debug-print-function ${FUNCNAME} "$@" |
604 | debug-print-function ${FUNCNAME} "$@" |
| 341 | |
605 | |
| 342 | cmake-utils_src_make "$@" |
606 | if [[ -d "$WORKDIR/${PN}_build" ]]; then |
|
|
607 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
608 | fi |
|
|
609 | [ -e [Mm]akefile ] && cmake-utils_src_make "$@" |
| 343 | } |
610 | } |
| 344 | |
611 | |
| 345 | # @FUNCTION: kde4-base_src_test |
612 | # @FUNCTION: kde4-base_src_test |
| 346 | # @DESCRIPTION: |
613 | # @DESCRIPTION: |
| 347 | # Function for testing KDE4 applications. |
614 | # Function for testing KDE4 applications. |
| … | |
… | |
| 359 | # @DESCRIPTION: |
626 | # @DESCRIPTION: |
| 360 | # Function for installing KDE4 applications. |
627 | # Function for installing KDE4 applications. |
| 361 | kde4-base_src_install() { |
628 | kde4-base_src_install() { |
| 362 | debug-print-function ${FUNCNAME} "$@" |
629 | debug-print-function ${FUNCNAME} "$@" |
| 363 | |
630 | |
|
|
631 | if [[ -n $KMSAVELIBS ]] ; then |
|
|
632 | install_library_dependencies |
|
|
633 | fi |
|
|
634 | |
| 364 | kde4-base_src_make_doc |
635 | kde4-base_src_make_doc |
| 365 | cmake-utils_src_install |
636 | if [[ -d "$WORKDIR/${PN}_build" ]]; then |
|
|
637 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
638 | fi |
|
|
639 | [ -e [Mm]akefile ] && cmake-utils_src_install |
| 366 | } |
640 | } |
| 367 | |
641 | |
| 368 | # @FUNCTION: kde4-base_src_make_doc |
642 | # @FUNCTION: kde4-base_src_make_doc |
| 369 | # @DESCRIPTION: |
643 | # @DESCRIPTION: |
| 370 | # Function for installing the documentation of KDE4 applications. |
644 | # Function for installing the documentation of KDE4 applications. |
| … | |
… | |
| 374 | local doc |
648 | local doc |
| 375 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
649 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
| 376 | [[ -s $doc ]] && dodoc ${doc} |
650 | [[ -s $doc ]] && dodoc ${doc} |
| 377 | done |
651 | done |
| 378 | |
652 | |
| 379 | if [[ -z ${KMNAME} ]]; then |
653 | if [[ -z $KMNAME ]]; then |
| 380 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
654 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
| 381 | if [[ -s $doc ]]; then |
655 | if [[ -s $doc ]]; then |
| 382 | local doc_complete=${doc} |
656 | local doc_complete=${doc} |
| 383 | doc="${doc#*/}" |
657 | doc="${doc#*/}" |
| 384 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
658 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
| 385 | fi |
659 | fi |
| 386 | done |
660 | done |
| 387 | fi |
661 | fi |
| 388 | |
662 | |
| 389 | if [[ -n ${KDEBASE} && -d "${D}"/usr/share/doc/${PF} ]]; then |
663 | if [[ -n ${KDEBASE} && -d "${D}/usr/share/doc/${PF}" ]]; then |
| 390 | # work around bug #97196 |
664 | # work around bug #97196 |
| 391 | dodir /usr/share/doc/kde && \ |
665 | dodir /usr/share/doc/kde && \ |
| 392 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
666 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
| 393 | die "Failed to move docs to kde/ failed." |
667 | die "Failed to move docs to kde/ failed." |
| 394 | fi |
668 | fi |