| 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.21 2009/01/06 10:55:41 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 monolithic 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: This eclass uses the SLOT dependencies from EAPI="1" or compatible, |
| 14 | # hence you must define EAPI="1" in the ebuild, before inheriting any eclasses. |
14 | # and use deps from EAPI="2", hence you must define EAPI="2" in the ebuild, |
|
|
15 | # before inheriting any eclasses. |
| 15 | |
16 | |
| 16 | inherit base eutils multilib cmake-utils kde4-functions |
17 | inherit base cmake-utils eutils kde4-functions multilib |
| 17 | |
18 | |
|
|
19 | case "${EAPI}" in |
|
|
20 | 2) |
|
|
21 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
|
|
22 | ;; |
|
|
23 | *) |
| 18 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
24 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
|
|
25 | ;; |
|
|
26 | esac |
| 19 | |
27 | |
| 20 | COMMONDEPEND=">=x11-libs/qt-4.3.3:4" |
28 | # Set the qt dependencies |
|
|
29 | kde4-base_set_qt_dependencies() { |
|
|
30 | local qt qtcore qtgui qt3support qtdepend qtopengldepend |
|
|
31 | |
|
|
32 | # use dependencies |
|
|
33 | case "${EAPI}" in |
|
|
34 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
35 | |
|
|
36 | qt="[" |
|
|
37 | case "${OPENGL_REQUIRED}" in |
|
|
38 | always) |
|
|
39 | qt="${qt}opengl," |
|
|
40 | ;; |
|
|
41 | optional) |
|
|
42 | qt="${qt}opengl?," |
|
|
43 | ;; |
|
|
44 | esac |
|
|
45 | qt="${qt}accessibility,dbus,gif,jpeg,png,qt3support,ssl,zlib]" |
|
|
46 | qtcore="[qt3support,ssl]" |
|
|
47 | qtgui="[accessibility,dbus]" |
|
|
48 | qt3support="[accessibility]" |
|
|
49 | ;; |
|
|
50 | esac |
|
|
51 | |
|
|
52 | # split qt |
|
|
53 | qtdepend=" |
|
|
54 | x11-libs/qt-core:4${qtcore} |
|
|
55 | x11-libs/qt-gui:4${qtgui} |
|
|
56 | x11-libs/qt-qt3support:4${qt3support} |
|
|
57 | x11-libs/qt-script:4 |
|
|
58 | x11-libs/qt-svg:4 |
|
|
59 | x11-libs/qt-test:4" |
|
|
60 | qtopengldepend="x11-libs/qt-opengl:4" |
|
|
61 | |
|
|
62 | # allow monolithic qt for PV < 4.1 |
|
|
63 | case "${PV}" in |
|
|
64 | scm|9999*|4.1*|4.0.9*|4.0.8*) : ;; |
|
|
65 | *) |
|
|
66 | qtdepend="|| ( ( ${qtdepend} ) >=x11-libs/qt-4.3.3:4${qt} )" |
|
|
67 | qtopengldepend="|| ( ${qtopengldepend} >=x11-libs/qt-4.3.3:4 )" |
|
|
68 | ;; |
|
|
69 | esac |
|
|
70 | |
|
|
71 | # opengl dependencies |
|
|
72 | case "${OPENGL_REQUIRED}" in |
|
|
73 | always) |
|
|
74 | qtdepend="${qtdepend} |
|
|
75 | ${qtopengldepend}" |
|
|
76 | ;; |
|
|
77 | optional) |
|
|
78 | IUSE="${IUSE} opengl" |
|
|
79 | qtdepend="${qtdepend} |
|
|
80 | opengl? ( ${qtopengldepend} )" |
|
|
81 | ;; |
|
|
82 | *) |
|
|
83 | OPENGL_REQUIRED="never" |
|
|
84 | ;; |
|
|
85 | esac |
|
|
86 | |
|
|
87 | COMMONDEPEND="${COMMONDEPEND} ${qtdepend} !x11-libs/qt-phonon" |
|
|
88 | } |
|
|
89 | kde4-base_set_qt_dependencies |
|
|
90 | |
|
|
91 | # Set the cmake dependencies |
|
|
92 | case "${PV}" in |
|
|
93 | 9999*) |
|
|
94 | CMAKEDEPEND=">=dev-util/cmake-2.6" |
|
|
95 | ;; |
|
|
96 | *) |
|
|
97 | CMAKEDEPEND=">=dev-util/cmake-2.4.7-r1" |
|
|
98 | ;; |
|
|
99 | esac |
|
|
100 | |
|
|
101 | # Set the common dependencies |
| 21 | DEPEND="${DEPEND} ${COMMONDEPEND} |
102 | DEPEND="${DEPEND} ${COMMONDEPEND} ${CMAKEDEPEND} |
| 22 | >=dev-util/cmake-2.4.7-r1 |
|
|
| 23 | dev-util/pkgconfig |
103 | dev-util/pkgconfig |
|
|
104 | kde-base/automoc |
| 24 | x11-libs/libXt |
105 | x11-libs/libXt |
| 25 | x11-proto/xf86vidmodeproto" |
106 | x11-proto/xf86vidmodeproto" |
| 26 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
107 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
| 27 | |
108 | |
| 28 | if has test ${IUSE//+}; then |
109 | # Add the kdeprefix use flag |
|
|
110 | case "${EAPI}" in |
|
|
111 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
112 | IUSE="${IUSE} kdeprefix" |
|
|
113 | ;; |
|
|
114 | esac |
|
|
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: CPPUNIT_REQUIRED |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
|
|
125 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
126 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
|
|
127 | |
|
|
128 | case "${CPPUNIT_REQUIRED}" in |
|
|
129 | always) |
|
|
130 | DEPEND="${DEPEND} dev-util/cppunit" |
|
|
131 | ;; |
|
|
132 | optional) |
|
|
133 | IUSE="${IUSE} test" |
| 29 | DEPEND="${DEPEND} |
134 | DEPEND="${DEPEND} |
| 30 | test? ( dev-util/cppunit )" |
135 | test? ( dev-util/cppunit )" |
| 31 | fi |
136 | ;; |
|
|
137 | *) |
|
|
138 | CPPUNIT_REQUIRED="never" |
|
|
139 | ;; |
|
|
140 | esac |
| 32 | |
141 | |
| 33 | # @ECLASS-VARIABLE: NEED_KDE |
142 | # @ECLASS-VARIABLE: NEED_KDE |
| 34 | # @DESCRIPTION: |
143 | # @DESCRIPTION: |
| 35 | # This variable sets the version of KDE4 which will be used by the eclass. |
144 | # 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". |
145 | # This variable must be set by the ebuild, for all categories except for "kde-base". |
| … | |
… | |
| 62 | case ${NEED_KDE} in |
171 | case ${NEED_KDE} in |
| 63 | latest) |
172 | latest) |
| 64 | # Should only be used by 'kde-base'-ebuilds |
173 | # Should only be used by 'kde-base'-ebuilds |
| 65 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
174 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
| 66 | case ${PV} in |
175 | case ${PV} in |
| 67 | 3.9*) _kdedir="3.9" ;; |
176 | 4.1*| 4.0.9* | 4.0.8*) |
|
|
177 | _kdedir="4.1" |
|
|
178 | _pv="-${PV}:4.1" ;; |
|
|
179 | 4.0*) |
| 68 | 4*) _kdedir="4.0" ;; |
180 | _kdedir="4.0" |
|
|
181 | _pv="-${PV}:kde-4" ;; |
|
|
182 | 3.9*) |
|
|
183 | _kdedir="3.9" |
|
|
184 | _pv="-${PV}:kde-4" ;; |
|
|
185 | *) |
| 69 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
186 | die "NEED_KDE=latest not supported for PV=${PV}" ;; |
| 70 | esac |
187 | esac |
| 71 | _operator=">=" |
188 | _operator=">=" |
| 72 | _pv="-${PV}:kde-4" |
|
|
| 73 | else |
189 | else |
|
|
190 | case ${PV} in |
|
|
191 | 4.1 | 4.0.9* | 4.0.8*) _kdedir="4.1" ;; |
| 74 | _kdedir="4.0" |
192 | 4.0*) _kdedir="4.0" ;; |
| 75 | _pv=":kde-4" |
193 | 3.9*) _kdedir="3.9" ;; |
|
|
194 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
195 | esac |
| 76 | fi |
196 | fi |
| 77 | ;; |
197 | ;; |
| 78 | svn|9999*|:kde-svn) |
198 | |
|
|
199 | # NEED_KDE=":${SLOT}" |
|
|
200 | :kde-svn) |
| 79 | _kdedir="svn" |
201 | _kdedir="svn" |
| 80 | _pv=":kde-svn" |
202 | _pv="-${NEED_KDE}" |
| 81 | export NEED_KDE="svn" |
203 | export NEED_KDE="svn" |
| 82 | ;; |
204 | ;; |
|
|
205 | :4.1) |
|
|
206 | _kdedir="4.1" |
|
|
207 | _pv="${NEED_KDE}" |
|
|
208 | ;; |
|
|
209 | :kde-4) |
|
|
210 | _kdedir="4.0" |
|
|
211 | _pv="${NEED_KDE}" |
|
|
212 | ;; |
|
|
213 | |
|
|
214 | # NEED_KDE="${PV}:${SLOT}" |
| 83 | *:kde-svn) |
215 | *:kde-svn) |
| 84 | _kdedir="svn" |
216 | _kdedir="svn" |
| 85 | _operator=">=" |
217 | _operator=">=" |
| 86 | _pv="-${NEED_KDE}" |
218 | _pv="-${NEED_KDE}" |
| 87 | export NEED_KDE="svn" |
219 | export NEED_KDE="svn" |
| 88 | ;; |
220 | ;; |
| 89 | # The ebuild handles dependencies, KDEDIR, SLOT. |
221 | *:4.1) |
| 90 | none) |
|
|
| 91 | : |
|
|
| 92 | ;; |
|
|
| 93 | # NEED_KDE=":${SLOT}" |
|
|
| 94 | :kde-4) |
|
|
| 95 | _kdedir="4.0" |
222 | _kdedir="4.1" |
|
|
223 | _operator=">=" |
| 96 | _pv="${NEED_KDE}" |
224 | _pv="-${NEED_KDE}" |
| 97 | ;; |
225 | ;; |
| 98 | # NEED_KDE="${PV}:${SLOT}" |
|
|
| 99 | *:kde-4) |
226 | *:kde-4) |
| 100 | _kdedir="4.0" |
227 | _kdedir="4.0" |
| 101 | _operator=">=" |
228 | _operator=">=" |
| 102 | _pv="-${NEED_KDE}" |
229 | _pv="-${NEED_KDE}" |
| 103 | ;; |
230 | ;; |
|
|
231 | |
|
|
232 | # NEED_KDE="${PV}" |
|
|
233 | scm|svn|9999*) |
|
|
234 | _kdedir="svn" |
|
|
235 | _operator=">=" |
|
|
236 | _pv="-${NEED_KDE}:kde-svn" |
|
|
237 | export NEED_KDE="svn" |
|
|
238 | ;; |
|
|
239 | 4.1 | 4.0.9* | 4.0.8*) |
|
|
240 | _kdedir="4.1" |
|
|
241 | _operator=">=" |
|
|
242 | _pv="-${NEED_KDE}:4.1" |
|
|
243 | ;; |
|
|
244 | 4.0* | 4) |
|
|
245 | _kdedir="4.0" |
|
|
246 | _operator=">=" |
|
|
247 | _pv="-${NEED_KDE}:kde-4" |
|
|
248 | ;; |
| 104 | 3.9*) |
249 | 3.9*) |
| 105 | _kdedir="3.9" |
250 | _kdedir="3.9" |
| 106 | _operator=">=" |
251 | _operator=">=" |
| 107 | _pv="-${NEED_KDE}:kde-4" |
252 | _pv="-${NEED_KDE}:kde-4" |
| 108 | ;; |
253 | ;; |
|
|
254 | |
|
|
255 | # The ebuild handles dependencies, KDEDIR, SLOT. |
|
|
256 | none) |
|
|
257 | : |
|
|
258 | ;; |
|
|
259 | |
| 109 | 4*) |
260 | *) |
| 110 | _kdedir="4.0" |
|
|
| 111 | _operator=">=" |
|
|
| 112 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 113 | ;; |
|
|
| 114 | *) die "NEED_KDE=${NEED_KDE} currently not supported." |
261 | die "NEED_KDE=${NEED_KDE} currently not supported." |
| 115 | ;; |
262 | ;; |
| 116 | esac |
263 | esac |
| 117 | |
264 | |
| 118 | if [[ ${NEED_KDE} != none ]]; then |
265 | if [[ ${NEED_KDE} != none ]]; then |
| 119 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
| 120 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 121 | |
266 | |
|
|
267 | #Set the SLOT |
| 122 | if [[ -n ${KDEBASE} ]]; then |
268 | if [[ -n ${KDEBASE} ]]; then |
| 123 | if [[ ${NEED_KDE} = svn ]]; then |
269 | if [[ ${NEED_KDE} = svn ]]; then |
| 124 | SLOT="kde-svn" |
270 | SLOT="kde-svn" |
| 125 | else |
271 | else |
|
|
272 | case ${PV} in |
|
|
273 | 4.1* | 4.0.9* | 4.0.8*) SLOT="4.1" ;; |
| 126 | SLOT="kde-4" |
274 | *) SLOT="kde-4" ;; |
| 127 | fi |
275 | esac |
| 128 | fi |
276 | fi |
|
|
277 | fi |
| 129 | |
278 | |
|
|
279 | # Block install of other SLOTS unless kdeprefix |
|
|
280 | case "${EAPI}" in |
|
|
281 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
282 | for KDE_SLOT in ${KDE_SLOTS[@]}; do |
|
|
283 | # block non kdeprefix ${PN} on other slots |
|
|
284 | if [[ ${SLOT} != ${KDE_SLOT} ]]; then |
|
|
285 | DEPEND="${DEPEND} |
|
|
286 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
287 | RDEPEND="${RDEPEND} |
|
|
288 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
289 | fi |
|
|
290 | done |
|
|
291 | ;; |
|
|
292 | esac |
|
|
293 | |
|
|
294 | # 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" |
295 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
| 131 | if [[ ${PN} != "kdelibs" ]]; then |
296 | if [[ ${PN} != "kdelibs" ]]; then |
| 132 | DEPEND="${DEPEND} |
297 | case "${EAPI}" in |
|
|
298 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
299 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
|
|
300 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
|
|
301 | ;; |
|
|
302 | *) |
| 133 | ${_operator}kde-base/kdelibs${_pv}" |
303 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}" |
| 134 | RDEPEND="${RDEPEND} |
|
|
| 135 | ${_operator}kde-base/kdelibs${_pv}" |
304 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}" |
|
|
305 | ;; |
|
|
306 | esac |
| 136 | if [[ ${PN} != "kdepimlibs" ]]; then |
307 | if [[ ${PN} != "kdepimlibs" ]]; then |
| 137 | DEPEND="${DEPEND} |
308 | case "${EAPI}" in |
|
|
309 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
310 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
|
|
311 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
|
|
312 | ;; |
|
|
313 | *) |
| 138 | ${_operator}kde-base/kdepimlibs${_pv}" |
314 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
| 139 | RDEPEND="${RDEPEND} |
|
|
| 140 | ${_operator}kde-base/kdepimlibs${_pv}" |
315 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
316 | esac |
|
|
317 | if [[ ${PN} != "kdebase-data" ]]; then |
|
|
318 | case "${EAPI}" in |
|
|
319 | 2) |
|
|
320 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdebase-data${_pv}[kdeprefix=]" |
|
|
321 | ;; |
|
|
322 | *) |
|
|
323 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdebase-data${_pv}" |
|
|
324 | ;; |
|
|
325 | esac |
| 141 | fi |
326 | fi |
| 142 | fi |
327 | fi |
|
|
328 | fi |
| 143 | |
329 | |
| 144 | unset _operator _pv _kdedir |
330 | unset _operator _pv |
| 145 | fi |
331 | fi |
| 146 | |
332 | |
| 147 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
333 | # 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 |
334 | # koffice ebuild, the URI should be set in the ebuild itself |
| 149 | if [[ -n ${KDEBASE} ]]; then |
335 | if [[ -n ${KDEBASE} ]]; then |
| … | |
… | |
| 155 | _kmname_pv="${_kmname}-${PV}" |
341 | _kmname_pv="${_kmname}-${PV}" |
| 156 | if [[ ${NEED_KDE} != "svn" ]]; then |
342 | if [[ ${NEED_KDE} != "svn" ]]; then |
| 157 | case ${KDEBASE} in |
343 | case ${KDEBASE} in |
| 158 | kde-base) |
344 | kde-base) |
| 159 | case ${PV} in |
345 | case ${PV} in |
|
|
346 | 4.0.9* | 4.0.8*) |
|
|
347 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
| 160 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
348 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
| 161 | esac |
349 | esac |
| 162 | ;; |
350 | ;; |
| 163 | koffice) |
351 | koffice) |
| 164 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
352 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
| 165 | ;; |
353 | ;; |
| … | |
… | |
| 167 | fi |
355 | fi |
| 168 | unset _kmname _kmname_pv |
356 | unset _kmname _kmname_pv |
| 169 | fi |
357 | fi |
| 170 | |
358 | |
| 171 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
359 | 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 | |
360 | |
| 186 | # @ECLASS-VARIABLE: PREFIX |
361 | # @ECLASS-VARIABLE: PREFIX |
| 187 | # @DESCRIPTION: |
362 | # @DESCRIPTION: |
| 188 | # Set the installation PREFIX. All kde-base ebuilds go into the KDE4 installation directory. |
363 | # 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 |
364 | # Applications installed by the other ebuilds go into /usr/ by default, this value |
| 190 | # can be superseded by defining PREFIX before inheriting kde4-base. |
365 | # can be superseded by defining PREFIX before inheriting kde4-base. |
| 191 | if [[ -n ${KDEBASE} ]]; then |
366 | # This value is set on pkg_setup |
| 192 | PREFIX=${KDEDIR} |
367 | 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 | |
368 | |
| 198 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - KDEDIR ${KDEDIR} - KDEDIRS ${KDEDIRS}- PREFIX ${PREFIX} - NEED_KDE ${NEED_KDE}" |
369 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - NEED_KDE ${NEED_KDE}" |
| 199 | |
370 | |
| 200 | # @FUNCTION: kde4-base_pkg_setup |
371 | # @FUNCTION: kde4-base_pkg_setup |
| 201 | # @DESCRIPTION: |
372 | # @DESCRIPTION: |
| 202 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
373 | # 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 |
374 | # 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 |
375 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
| 205 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
376 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
| 206 | kde4-base_pkg_setup() { |
377 | kde4-base_pkg_setup() { |
| 207 | debug-print-function $FUNCNAME "$@" |
378 | debug-print-function $FUNCNAME "$@" |
| 208 | |
379 | |
|
|
380 | # Don't set KDEHOME during compile, it will cause access violations |
|
|
381 | unset KDEHOME |
|
|
382 | |
|
|
383 | if [[ ${NEED_KDE} != none ]]; then |
|
|
384 | |
|
|
385 | # Set PREFIX |
|
|
386 | case "${EAPI}" in |
|
|
387 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
388 | if use kdeprefix; then |
|
|
389 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
390 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
391 | else |
|
|
392 | KDEDIR="/usr" |
|
|
393 | KDEDIRS="/usr:/usr/local" |
|
|
394 | fi |
|
|
395 | ;; |
|
|
396 | *) |
|
|
397 | KDEDIR="/usr" |
|
|
398 | KDEDIRS="/usr:/usr/local" |
|
|
399 | ;; |
|
|
400 | esac |
|
|
401 | fi |
|
|
402 | |
|
|
403 | # Set the prefix based on KDEDIR |
|
|
404 | # Make it a consequence of kdeprefix |
|
|
405 | PREFIX=${KDEDIR} |
|
|
406 | |
|
|
407 | unset _kdedir |
|
|
408 | |
|
|
409 | case "${EAPI}" in |
|
|
410 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
411 | [[ -n ${QT4_BUILT_WITH_USE_CHECK} || -n ${KDE4_BUILT_WITH_USE_CHECK[@]} ]] && \ |
|
|
412 | die "built_with_use illegal in this EAPI!" |
|
|
413 | ;; |
|
|
414 | *) |
|
|
415 | # Make KDE4_BUILT_WITH_USE_CHECK an array if it isn't already |
|
|
416 | local line kde4_built_with_use_check=() |
|
|
417 | if [[ -n ${KDE4_BUILT_WITH_USE_CHECK[@]} && $(declare -p KDE4_BUILT_WITH_USE_CHECK) != 'declare -a '* ]]; then |
|
|
418 | while read line; do |
|
|
419 | [[ -z ${line} ]] && continue |
|
|
420 | kde4_built_with_use_check+=("${line}") |
|
|
421 | done <<< "${KDE4_BUILT_WITH_USE_CHECK}" |
|
|
422 | KDE4_BUILT_WITH_USE_CHECK=("${kde4_built_with_use_check[@]}") |
|
|
423 | fi |
|
|
424 | |
| 209 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
425 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
|
|
426 | if has_version '<x11-libs/qt-4.4_alpha:4'; then |
| 210 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
427 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
| 211 | |
428 | else |
| 212 | if has debug ${IUSE//+} && use debug; then |
|
|
| 213 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} debug" |
429 | KDE4_BUILT_WITH_USE_CHECK=("${KDE4_BUILT_WITH_USE_CHECK[@]}" |
|
|
430 | "x11-libs/qt-core qt3support ssl" |
|
|
431 | "x11-libs/qt-gui accessibility dbus" |
|
|
432 | "x11-libs/qt-qt3support accessibility") |
| 214 | fi |
433 | fi |
| 215 | |
434 | |
| 216 | if has opengl ${IUSE//+} && use opengl; then |
435 | if has opengl ${IUSE//+} && use opengl || [[ ${OPENGL_REQUIRED} == always ]]; then |
|
|
436 | if has_version '<x11-libs/qt-4.4.0_alpha:4'; then |
| 217 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
437 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
|
|
438 | fi |
| 218 | fi |
439 | fi |
| 219 | |
|
|
| 220 | kde4-functions_check_use |
440 | kde4-functions_check_use |
|
|
441 | ;; |
|
|
442 | esac |
| 221 | } |
443 | } |
| 222 | |
444 | |
| 223 | # @FUNCTION: kde4-base_src_unpack |
445 | # @FUNCTION: kde4-base_apply_patches |
| 224 | # @DESCRIPTION: |
446 | # @DESCRIPTION: |
| 225 | # This function unpacks the source tarballs for KDE4 applications. |
447 | # This function applies patches. |
| 226 | # |
|
|
| 227 | # If no argument is passed to this function, then standard src_unpack is |
|
|
| 228 | # executed. Otherwise options are passed to base_src_unpack. |
|
|
| 229 | # |
448 | # |
| 230 | # If the directory ${WORKDIR}/patches/ exists, we apply all patches in that |
449 | # If the directory ${WORKDIR}/patches/ exists, we apply all patches in that |
| 231 | # directory, provided they follow this format: |
450 | # directory, provided they follow this format: |
| 232 | # @CODE |
451 | # @CODE |
| 233 | # - Monolithic ebuilds, (from kde-base) |
452 | # - Monolithic ebuilds, (from kde-base) |
| … | |
… | |
| 240 | # Apply ${PN}-${SLOT}-*{diff,patch} |
459 | # Apply ${PN}-${SLOT}-*{diff,patch} |
| 241 | # - $CATEGORY!=kde-base: |
460 | # - $CATEGORY!=kde-base: |
| 242 | # Apply ${PN}-${PV}-*{diff,patch} |
461 | # Apply ${PN}-${PV}-*{diff,patch} |
| 243 | # @CODE |
462 | # @CODE |
| 244 | # |
463 | # |
| 245 | # If ${PATCHES} is non-zero all patches in it gets applied. |
464 | # If ${PATCHES} is non-zero all patches in it get applied. If there is more |
|
|
465 | # than one patch please make ${PATCHES} an array for proper quoting. |
|
|
466 | kde4-base_apply_patches() { |
|
|
467 | local _patchdir _packages _p _f |
|
|
468 | _patchdir="${WORKDIR}/patches/" |
|
|
469 | if [[ -d "${_patchdir}" ]]; then |
|
|
470 | if is-parent-package ${CATEGORY}/${PN} ; then |
|
|
471 | _packages="$(get-child-packages ${CATEGORY}/${PN})" |
|
|
472 | _packages="${_packages//${CATEGORY}\//} ${PN}" |
|
|
473 | else |
|
|
474 | _packages="${PN}" |
|
|
475 | fi |
|
|
476 | if [[ $(declare -p PATCHES) != 'declare -a '* ]]; then |
|
|
477 | die "PATCHES needs to be an array!" |
|
|
478 | fi |
|
|
479 | for _p in ${_packages}; do |
|
|
480 | for _f in "${_patchdir}"/${_p}-${PV}-*{diff,patch}; do |
|
|
481 | [[ -e ${_f} ]] && PATCHES+=("${_f}") |
|
|
482 | done |
|
|
483 | if [[ -n "${KDEBASE}" ]]; then |
|
|
484 | for _f in "${_patchdir}"/${_p}-${SLOT}-*{diff,patch}; do |
|
|
485 | [[ -e ${_f} ]] && PATCHES+=("${_f}") |
|
|
486 | done |
|
|
487 | fi |
|
|
488 | done |
|
|
489 | fi |
|
|
490 | [[ -n ${PATCHES[@]} ]] && base_src_unpack autopatch |
|
|
491 | } |
|
|
492 | |
|
|
493 | # @FUNCTION: kde4-base_src_unpack |
|
|
494 | # @DESCRIPTION: |
|
|
495 | # This function unpacks the source tarballs for KDE4 applications. |
|
|
496 | # |
|
|
497 | # If no argument is passed to this function, then standard src_unpack is |
|
|
498 | # executed. Otherwise options are passed to base_src_unpack. |
|
|
499 | # |
|
|
500 | # In addition it calls kde4-base_apply_patches when no arguments are passed to |
|
|
501 | # this function. |
|
|
502 | # |
|
|
503 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
504 | # enable_selected_linguas() in kde4-functions.eclass(5) for further details. |
| 246 | kde4-base_src_unpack() { |
505 | kde4-base_src_unpack() { |
| 247 | debug-print-function $FUNCNAME "$@" |
506 | debug-print-function $FUNCNAME "$@" |
| 248 | |
507 | |
| 249 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
508 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
| 250 | |
509 | |
| 251 | local _patchdir _packages _p |
|
|
| 252 | _patchdir="${WORKDIR}/patches/" |
|
|
| 253 | if [[ -z $* ]]; then |
510 | if [[ -z $* ]]; then |
| 254 | # Unpack first and deal with KDE patches after examing possible patch sets. |
511 | # 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. |
512 | # To be picked up, patches need to conform to the guidelines stated before. |
| 256 | # Monolithic ebuilds will use the split ebuild patches. |
513 | # Monolithic ebuilds will use the split ebuild patches. |
| 257 | [[ -d "${KDE_S}" ]] || unpack ${A} |
514 | [[ -d "${KDE_S}" ]] || unpack ${A} |
| 258 | if [[ -d "${_patchdir}" ]]; then |
515 | base_src_unpack $* |
| 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 |
|
|
| 265 | for _p in ${_packages}; do |
|
|
| 266 | PATCHES="${PATCHES} $(ls ${_patchdir}/${_p}-${PV}-*{diff,patch} 2>/dev/null)" |
|
|
| 267 | if [[ -n "${KDEBASE}" ]]; then |
|
|
| 268 | PATCHES="${PATCHES} $(ls ${_patchdir}/${_p}-${SLOT}-*{diff,patch} 2>/dev/null)" |
|
|
| 269 | fi |
|
|
| 270 | done |
|
|
| 271 | fi |
|
|
| 272 | [[ -n ${PATCHES} ]] && base_src_unpack autopatch |
|
|
| 273 | else |
516 | else |
| 274 | # Call base_src_unpack, which unpacks and patches |
517 | # Call base_src_unpack, which unpacks and patches |
| 275 | # step by step transparently as defined in the ebuild. |
518 | # step by step transparently as defined in the ebuild. |
| 276 | base_src_unpack $* |
519 | base_src_unpack $* |
| 277 | fi |
520 | fi |
| … | |
… | |
| 279 | # Updated cmake dir |
522 | # Updated cmake dir |
| 280 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
523 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
| 281 | ebegin "Updating cmake/ directory..." |
524 | ebegin "Updating cmake/ directory..." |
| 282 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
525 | 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" |
526 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
| 284 | eend 0 |
527 | eend 0 |
| 285 | fi |
528 | fi |
|
|
529 | |
|
|
530 | # Only enable selected languages, used for KDE extragear apps. |
|
|
531 | if [[ -n ${KDE_LINGUAS} ]]; then |
|
|
532 | enable_selected_linguas |
|
|
533 | fi |
|
|
534 | } |
|
|
535 | |
|
|
536 | |
|
|
537 | # transition function so we will be compatible with soon to come eclasses |
|
|
538 | kde4-base_src_prepare() { |
|
|
539 | base_src_prepare |
| 286 | } |
540 | } |
| 287 | |
541 | |
| 288 | # @FUNCTION: kde4-base_src_compile |
542 | # @FUNCTION: kde4-base_src_compile |
| 289 | # @DESCRIPTION: |
543 | # @DESCRIPTION: |
| 290 | # General function for compiling KDE4 applications. |
544 | # General function for compiling KDE4 applications. |
| 291 | kde4-base_src_compile() { |
545 | kde4-base_src_compile() { |
| 292 | debug-print-function ${FUNCNAME} "$@" |
546 | debug-print-function ${FUNCNAME} "$@" |
| 293 | |
547 | case "${EAPI}" in |
|
|
548 | 2) |
|
|
549 | ;; |
|
|
550 | *) |
| 294 | kde4-base_src_configure |
551 | kde4-base_src_configure |
| 295 | kde4-base_src_make |
552 | ;; |
|
|
553 | esac |
|
|
554 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
555 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
556 | fi |
|
|
557 | [ -e [Mm]akefile ] && kde4-base_src_make |
| 296 | } |
558 | } |
| 297 | |
559 | |
| 298 | # @FUNCTION: kde4-base_src_configure |
560 | # @FUNCTION: kde4-base_src_configure |
| 299 | # @DESCRIPTION: |
561 | # @DESCRIPTION: |
| 300 | # Function for configuring the build of KDE4 applications. |
562 | # Function for configuring the build of KDE4 applications. |
| 301 | kde4-base_src_configure() { |
563 | kde4-base_src_configure() { |
| 302 | debug-print-function ${FUNCNAME} "$@" |
564 | debug-print-function ${FUNCNAME} "$@" |
| 303 | |
565 | |
| 304 | # Final flag handling |
566 | # Final flag handling |
| 305 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
567 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
| 306 | einfo "Activating enable-final flag" |
568 | echo "Activating enable-final flag" |
| 307 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_FINAL=ON" |
569 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_FINAL=ON" |
| 308 | fi |
570 | fi |
| 309 | |
571 | |
| 310 | # Enable generation of HTML handbook |
572 | # Enable generation of HTML handbook |
| 311 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
573 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
| 312 | einfo "Enabling building of HTML handbook" |
574 | echo "Enabling building of HTML handbook" |
| 313 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
575 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
| 314 | fi |
576 | fi |
| 315 | |
577 | |
| 316 | # Build tests in src_test only, where we override this value |
578 | # Build tests in src_test only, where we override this value |
| 317 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
579 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
| … | |
… | |
| 322 | # runpath linking |
584 | # runpath linking |
| 323 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
585 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
| 324 | |
586 | |
| 325 | # Here we set the install prefix |
587 | # Here we set the install prefix |
| 326 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
588 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
|
|
589 | |
|
|
590 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
591 | [[ "${PREFIX}" == "/usr" ]] && mycmakeargs="${mycmakeargs} -DSYSCONF_INSTALL_DIR=/etc" |
| 327 | |
592 | |
| 328 | # Set environment |
593 | # Set environment |
| 329 | QTEST_COLORED=1 |
594 | QTEST_COLORED=1 |
| 330 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
595 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
| 331 | |
596 | |
| 332 | cmake-utils_src_configureout |
597 | # hardcode path to *.cmake KDE files |
|
|
598 | PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+${PKG_CONFIG_PATH}:}${KDEDIR}/$(get_libdir)/pkgconfig" |
|
|
599 | |
|
|
600 | [ -e CMakeLists.txt ] && cmake-utils_src_configureout |
| 333 | } |
601 | } |
| 334 | |
602 | |
| 335 | # @FUNCTION: kde4-base_src_make |
603 | # @FUNCTION: kde4-base_src_make |
| 336 | # @DESCRIPTION: |
604 | # @DESCRIPTION: |
| 337 | # Function for building KDE4 applications. |
605 | # Function for building KDE4 applications. |
| … | |
… | |
| 360 | # Function for installing KDE4 applications. |
628 | # Function for installing KDE4 applications. |
| 361 | kde4-base_src_install() { |
629 | kde4-base_src_install() { |
| 362 | debug-print-function ${FUNCNAME} "$@" |
630 | debug-print-function ${FUNCNAME} "$@" |
| 363 | |
631 | |
| 364 | kde4-base_src_make_doc |
632 | kde4-base_src_make_doc |
| 365 | cmake-utils_src_install |
633 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
634 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
635 | fi |
|
|
636 | [ -e [Mm]akefile ] && cmake-utils_src_install |
| 366 | } |
637 | } |
| 367 | |
638 | |
| 368 | # @FUNCTION: kde4-base_src_make_doc |
639 | # @FUNCTION: kde4-base_src_make_doc |
| 369 | # @DESCRIPTION: |
640 | # @DESCRIPTION: |
| 370 | # Function for installing the documentation of KDE4 applications. |
641 | # Function for installing the documentation of KDE4 applications. |