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