| 1 | # Copyright 2007-2008 Gentoo Foundation |
1 | # Copyright 1999-2012 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.15 2008/10/11 03:05:37 jmbsvicetto Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.118 2012/06/07 22:06:04 zmedico Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: kde4-base.eclass |
5 | # @ECLASS: kde4-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
8 | # @BLURB: This eclass provides functions for kde 4.X ebuilds |
| 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 currently support EAPI "3". This will be reviewed |
| 14 | # and use deps from EAPI="2", hence you must define EAPI="2" in the ebuild, |
14 | # over time as new EAPI versions are approved. |
| 15 | # before inheriting any eclasses. |
|
|
| 16 | |
15 | |
| 17 | inherit base cmake-utils eutils kde4-functions multilib |
16 | # @ECLASS-VARIABLE: KDE_SELINUX_MODULE |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # If set to "none", do nothing. |
|
|
19 | # For any other value, add selinux to IUSE, and depending on that useflag |
|
|
20 | # add a dependency on sec-policy/selinux-${KDE_SELINUX_MODULE} to (R)DEPEND |
|
|
21 | : ${KDE_SELINUX_MODULE:=none} |
| 18 | |
22 | |
| 19 | case "${EAPI}" in |
23 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
| 20 | 2) |
24 | # @DESCRIPTION: |
| 21 | EXPORT_FUNCTIONS pkg_setup src_unpack src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
25 | # For proper description see virtualx.eclass manpage. |
| 22 | ;; |
26 | # Here we redefine default value to be manual, if your package needs virtualx |
| 23 | *) |
27 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
| 24 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
28 | : ${VIRTUALX_REQUIRED:=manual} |
| 25 | ;; |
|
|
| 26 | esac |
|
|
| 27 | |
29 | |
| 28 | # Set the qt dependencies |
30 | inherit kde4-functions toolchain-funcs fdo-mime flag-o-matic gnome2-utils base virtualx versionator eutils multilib |
| 29 | kde4-base_set_qt_dependencies() { |
|
|
| 30 | local qt qtcore qtgui qt3support qtdepend qtopengldepend |
|
|
| 31 | |
31 | |
| 32 | # use dependencies |
32 | if [[ ${BUILD_TYPE} = live ]]; then |
| 33 | case "${EAPI}" in |
33 | case ${KDE_SCM} in |
| 34 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
34 | svn) inherit subversion ;; |
| 35 | |
35 | git) inherit git-2 ;; |
| 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 |
36 | esac |
|
|
37 | fi |
| 51 | |
38 | |
| 52 | # split qt |
39 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
| 53 | qtdepend=" |
40 | # @DESCRIPTION: |
| 54 | x11-libs/qt-core:4${qtcore} |
41 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
| 55 | x11-libs/qt-gui:4${qtgui} |
42 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
| 56 | x11-libs/qt-qt3support:4${qt3support} |
43 | # src_configure, src_compile, src_test and src_install. |
| 57 | x11-libs/qt-script:4 |
44 | # Defaults to 'always'. |
| 58 | x11-libs/qt-svg:4 |
45 | : ${CMAKE_REQUIRED:=always} |
| 59 | x11-libs/qt-test:4" |
46 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
| 60 | qtopengldepend="x11-libs/qt-opengl:4" |
47 | buildsystem_eclass="cmake-utils" |
|
|
48 | export_fns="src_configure src_compile src_test src_install" |
|
|
49 | fi |
| 61 | |
50 | |
| 62 | # allow monolithic qt for PV < 4.1 |
51 | # @ECLASS-VARIABLE: KDE_MINIMAL |
|
|
52 | # @DESCRIPTION: |
|
|
53 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
|
|
54 | # version for apps to work. Currently defaults to 4.4 |
|
|
55 | # One may override this variable to raise version requirements. |
|
|
56 | # Note that it is fixed to ${PV} for kde-base packages. |
|
|
57 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
|
|
58 | |
|
|
59 | # Set slot for KDEBASE known packages |
|
|
60 | case ${KDEBASE} in |
|
|
61 | kde-base) |
|
|
62 | SLOT=4 |
|
|
63 | KDE_MINIMAL="${PV}" |
|
|
64 | ;; |
|
|
65 | koffice) |
|
|
66 | SLOT="2" |
|
|
67 | ;; |
|
|
68 | kdevelop) |
|
|
69 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
70 | # @ECLASS-VARIABLE: KDEVELOP_VERSION |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # Specifies KDevelop version. Default is 4.0.0 for tagged packages and 9999 for live packages. |
|
|
73 | # Applies to KDEBASE=kdevelop only. |
|
|
74 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-9999}" |
|
|
75 | # @ECLASS-VARIABLE: KDEVPLATFORM_VERSION |
|
|
76 | # @DESCRIPTION: |
|
|
77 | # Specifies KDevplatform version. Default is 1.0.0 for tagged packages and 9999 for live packages. |
|
|
78 | # Applies to KDEBASE=kdevelop only. |
|
|
79 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-9999}" |
|
|
80 | else |
| 63 | case "${PV}" in |
81 | case ${PN} in |
| 64 | scm|9999*|4.1*|4.0.9*|4.0.8*) : ;; |
82 | kdevelop|quanta) |
|
|
83 | KDEVELOP_VERSION=${PV} |
|
|
84 | KDEVPLATFORM_VERSION="$(($(get_major_version)-3)).$(get_after_major_version)" |
|
|
85 | ;; |
|
|
86 | kdevplatform|kdevelop-php*) |
|
|
87 | KDEVELOP_VERSION="$(($(get_major_version)+3)).$(get_after_major_version)" |
|
|
88 | KDEVPLATFORM_VERSION=${PV} |
|
|
89 | ;; |
| 65 | *) |
90 | *) |
| 66 | qtdepend="|| ( ( ${qtdepend} ) >=x11-libs/qt-4.3.3:4${qt} )" |
91 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.0.0}" |
| 67 | qtopengldepend="|| ( ${qtopengldepend} >=x11-libs/qt-4.3.3:4 )" |
92 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-1.0.0}" |
|
|
93 | esac |
|
|
94 | fi |
|
|
95 | SLOT="4" |
| 68 | ;; |
96 | ;; |
| 69 | esac |
97 | esac |
| 70 | |
98 | |
| 71 | # opengl dependencies |
99 | inherit ${buildsystem_eclass} |
| 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 | |
100 | |
| 87 | COMMONDEPEND="${COMMONDEPEND} ${qtdepend}" |
101 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_preinst pkg_postinst pkg_postrm |
| 88 | } |
|
|
| 89 | kde4-base_set_qt_dependencies |
|
|
| 90 | |
102 | |
| 91 | # Set the cmake dependencies |
103 | unset buildsystem_eclass |
| 92 | case "${PV}" in |
104 | unset export_fns |
| 93 | 9999*) |
|
|
| 94 | CMAKEDEPEND=">=dev-util/cmake-2.6" |
|
|
| 95 | ;; |
|
|
| 96 | *) |
|
|
| 97 | CMAKEDEPEND=">=dev-util/cmake-2.4.7-r1" |
|
|
| 98 | ;; |
|
|
| 99 | esac |
|
|
| 100 | |
105 | |
| 101 | # Set the common dependencies |
106 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
| 102 | DEPEND="${DEPEND} ${COMMONDEPEND} ${CMAKEDEPEND} |
107 | # @DESCRIPTION: |
| 103 | dev-util/pkgconfig |
108 | # Is qt-declarative required? Possible values are 'always', 'optional' and 'never'. |
| 104 | kde-base/automoc |
109 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 105 | x11-libs/libXt |
110 | DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}" |
| 106 | x11-proto/xf86vidmodeproto" |
|
|
| 107 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
|
|
| 108 | |
111 | |
| 109 | # Add the kdeprefix use flag |
112 | # @ECLASS-VARIABLE: QTHELP_REQUIRED |
| 110 | case "${EAPI}" in |
113 | # @DESCRIPTION: |
| 111 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
114 | # Is qt-assistant required? Possible values are 'always', 'optional' and 'never'. |
| 112 | IUSE="${IUSE} kdeprefix" |
115 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 113 | ;; |
116 | QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}" |
| 114 | esac |
|
|
| 115 | |
117 | |
| 116 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
118 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
| 117 | # @DESCRIPTION: |
119 | # @DESCRIPTION: |
| 118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
120 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
| 119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
121 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 120 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
122 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
| 121 | |
123 | |
|
|
124 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
|
|
125 | # @DESCRIPTION: |
|
|
126 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
|
|
127 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
128 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
|
|
129 | |
| 122 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
130 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 123 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 124 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
132 | # 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'. |
133 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 126 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
134 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
| 127 | |
135 | |
| 128 | case "${CPPUNIT_REQUIRED}" in |
136 | # @ECLASS-VARIABLE: KDE_REQUIRED |
|
|
137 | # @DESCRIPTION: |
|
|
138 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
|
|
139 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
|
|
140 | # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well. |
|
|
141 | # Note that for kde-base packages this variable is fixed to 'always'. |
|
|
142 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
|
|
143 | |
|
|
144 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
|
|
145 | # @DESCRIPTION: |
|
|
146 | # Set to enable handbook in application. Possible values are 'always', 'optional' |
|
|
147 | # (handbook USE flag) and 'never'. |
|
|
148 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
149 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
|
|
150 | # ensures buildtime and runtime dependencies. |
|
|
151 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
152 | |
|
|
153 | # @ECLASS-VARIABLE: KDE_LINGUAS_LIVE_OVERRIDE |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # Set this varible if you want your live package to manage its |
|
|
156 | # translations. (Mostly all kde ebuilds does not ship documentation |
|
|
157 | # and translations in live ebuilds) |
|
|
158 | if [[ ${BUILD_TYPE} == live && -z ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
159 | # Kdebase actualy provides the handbooks even for live stuff |
|
|
160 | [[ ${KDEBASE} == kde-base ]] || KDE_HANDBOOK=never |
|
|
161 | KDE_LINGUAS="" |
|
|
162 | fi |
|
|
163 | |
|
|
164 | # Setup packages inheriting this eclass |
|
|
165 | case ${KDEBASE} in |
|
|
166 | kde-base) |
|
|
167 | HOMEPAGE="http://www.kde.org/" |
|
|
168 | LICENSE="GPL-2" |
|
|
169 | if [[ $BUILD_TYPE = live ]]; then |
|
|
170 | # Disable tests for live ebuilds |
|
|
171 | RESTRICT+=" test" |
|
|
172 | fi |
|
|
173 | |
|
|
174 | # Only add the kdeprefix USE flag for older versions, to help |
|
|
175 | # non-portage package managers handle the upgrade |
|
|
176 | if [[ ${PV} < 4.6.4 && ( ( ${KMNAME} != kdepim && ${PN} != kdepim-runtime ) || ${PV} < 4.6 ) ]]; then |
|
|
177 | IUSE+=" kdeprefix" |
|
|
178 | fi |
|
|
179 | |
|
|
180 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
|
|
181 | # packages that will never be mirrored. (As they only will ever be in |
|
|
182 | # the overlay). |
|
|
183 | case ${PV} in |
|
|
184 | *9999* | 4.?.[6-9]?) |
|
|
185 | RESTRICT+=" mirror" |
|
|
186 | ;; |
|
|
187 | esac |
|
|
188 | ;; |
|
|
189 | koffice) |
|
|
190 | HOMEPAGE="http://www.koffice.org/" |
|
|
191 | LICENSE="GPL-2" |
|
|
192 | ;; |
|
|
193 | kdevelop) |
|
|
194 | HOMEPAGE="http://www.kdevelop.org/" |
|
|
195 | LICENSE="GPL-2" |
|
|
196 | ;; |
|
|
197 | esac |
|
|
198 | |
|
|
199 | # @ECLASS-VARIABLE: QT_MINIMAL |
|
|
200 | # @DESCRIPTION: |
|
|
201 | # Determine version of qt we enforce as minimal for the package. |
|
|
202 | if version_is_at_least 4.8.50 "${KDE_MINIMAL}"; then |
|
|
203 | # Upstream has added an *undeclared* dependency on Qt 4.8... |
|
|
204 | QT_MINIMAL="${QT_MINIMAL:-4.8.0}" |
|
|
205 | elif version_is_at_least 4.7.80 "${KDE_MINIMAL}"; then |
|
|
206 | QT_MINIMAL="${QT_MINIMAL:-4.7.4}" |
|
|
207 | else |
|
|
208 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
|
|
209 | fi |
|
|
210 | |
|
|
211 | # Declarative dependencies |
|
|
212 | qtdeclarativedepend=" |
|
|
213 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
|
|
214 | " |
|
|
215 | case ${DECLARATIVE_REQUIRED} in |
| 129 | always) |
216 | always) |
| 130 | DEPEND="${DEPEND} dev-util/cppunit" |
217 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
| 131 | ;; |
218 | ;; |
| 132 | optional) |
219 | optional) |
| 133 | IUSE="${IUSE} test" |
220 | IUSE+=" declarative" |
| 134 | DEPEND="${DEPEND} |
221 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
| 135 | test? ( dev-util/cppunit )" |
|
|
| 136 | ;; |
222 | ;; |
| 137 | *) |
223 | *) ;; |
| 138 | CPPUNIT_REQUIRED="never" |
224 | esac |
|
|
225 | unset qtdeclarativedepend |
|
|
226 | |
|
|
227 | # QtHelp dependencies |
|
|
228 | qthelpdepend=" |
|
|
229 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
230 | " |
|
|
231 | case ${QTHELP_REQUIRED} in |
|
|
232 | always) |
|
|
233 | COMMONDEPEND+=" ${qthelpdepend}" |
| 139 | ;; |
234 | ;; |
|
|
235 | optional) |
|
|
236 | IUSE+=" qthelp" |
|
|
237 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
238 | ;; |
| 140 | esac |
239 | esac |
|
|
240 | unset qthelpdepend |
| 141 | |
241 | |
| 142 | # @ECLASS-VARIABLE: NEED_KDE |
242 | # OpenGL dependencies |
|
|
243 | qtopengldepend=" |
|
|
244 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
|
|
245 | " |
|
|
246 | case ${OPENGL_REQUIRED} in |
|
|
247 | always) |
|
|
248 | COMMONDEPEND+=" ${qtopengldepend}" |
|
|
249 | ;; |
|
|
250 | optional) |
|
|
251 | IUSE+=" opengl" |
|
|
252 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
|
|
253 | ;; |
|
|
254 | *) ;; |
|
|
255 | esac |
|
|
256 | unset qtopengldepend |
|
|
257 | |
|
|
258 | # MultiMedia dependencies |
|
|
259 | qtmultimediadepend=" |
|
|
260 | >=x11-libs/qt-multimedia-${QT_MINIMAL}:4 |
|
|
261 | " |
|
|
262 | case ${MULTIMEDIA_REQUIRED} in |
|
|
263 | always) |
|
|
264 | COMMONDEPEND+=" ${qtmultimediadepend}" |
|
|
265 | ;; |
|
|
266 | optional) |
|
|
267 | IUSE+=" multimedia" |
|
|
268 | COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )" |
|
|
269 | ;; |
|
|
270 | *) ;; |
|
|
271 | esac |
|
|
272 | unset qtmultimediadepend |
|
|
273 | |
|
|
274 | # CppUnit dependencies |
|
|
275 | cppuintdepend=" |
|
|
276 | dev-util/cppunit |
|
|
277 | " |
|
|
278 | case ${CPPUNIT_REQUIRED} in |
|
|
279 | always) |
|
|
280 | DEPEND+=" ${cppuintdepend}" |
|
|
281 | ;; |
|
|
282 | optional) |
|
|
283 | IUSE+=" test" |
|
|
284 | DEPEND+=" test? ( ${cppuintdepend} )" |
|
|
285 | ;; |
|
|
286 | *) ;; |
|
|
287 | esac |
|
|
288 | unset cppuintdepend |
|
|
289 | |
|
|
290 | # KDE dependencies |
|
|
291 | # Qt accessibility classes are needed in various places, bug 325461 |
|
|
292 | kdecommondepend=" |
|
|
293 | dev-lang/perl |
|
|
294 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
|
|
295 | >=x11-libs/qt-dbus-${QT_MINIMAL}:4 |
|
|
296 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
|
|
297 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility] |
|
|
298 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
|
|
299 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
|
|
300 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
|
|
301 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
302 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4 |
|
|
303 | !aqua? ( |
|
|
304 | x11-libs/libXext |
|
|
305 | x11-libs/libXt |
|
|
306 | x11-libs/libXxf86vm |
|
|
307 | x11-libs/libXcomposite |
|
|
308 | x11-libs/libxkbfile |
|
|
309 | ) |
|
|
310 | " |
|
|
311 | |
|
|
312 | if [[ ${PN} != kdelibs ]]; then |
|
|
313 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
|
|
314 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
315 | if [[ ${PN} != kdevplatform ]]; then |
|
|
316 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
| 143 | # @DESCRIPTION: |
317 | # @DESCRIPTION: |
| 144 | # This variable sets the version of KDE4 which will be used by the eclass. |
318 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
| 145 | # This variable must be set by the ebuild, for all categories except for "kde-base". |
319 | # Applies to KDEBASE=kdevelop only. |
| 146 | # For kde-base packages, if it is not set by the ebuild, |
320 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
| 147 | # it's assumed that the required KDE4 version is the latest, non-live, available. |
321 | case ${KDEVPLATFORM_REQUIRED} in |
| 148 | # |
322 | always) |
| 149 | # @CODE |
323 | kdecommondepend+=" |
| 150 | # Acceptable values are: |
324 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
| 151 | # - latest - Use latest version in the portage tree |
325 | " |
| 152 | # Default for kde-base ebuilds. Banned for ebuilds not part of kde or koffice. |
326 | ;; |
| 153 | # - svn - Use svn release (live ebuilds) |
|
|
| 154 | # - :SLOT - Use any version in the SLOT specified in the NEED_KDE value. |
|
|
| 155 | # - VERSION_NUMBER - Use the minimum KDE4 version specified in the NEED_KDE value. |
|
|
| 156 | # - VERSION_NUMBER:SLOT - Use the minimum KDE4 version and the SLOT specified in the NEED_KDE value. |
|
|
| 157 | # - none - Let the ebuild handle SLOT, kde dependencies, KDEDIR, ... |
|
|
| 158 | # @CODE |
|
|
| 159 | # |
|
|
| 160 | # Note: There is no default NEED_KDE for ebuilds not in kde-base or part of |
|
|
| 161 | # koffice, so you must set it explicitly in the ebuild, in all other cases. |
|
|
| 162 | if [[ -z ${NEED_KDE} ]]; then |
|
|
| 163 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 164 | NEED_KDE="latest" |
|
|
| 165 | else |
|
|
| 166 | die "kde4-base.eclass inherited but NEED_KDE not defined - broken ebuild" |
|
|
| 167 | fi |
|
|
| 168 | fi |
|
|
| 169 | export NEED_KDE |
|
|
| 170 | |
|
|
| 171 | case ${NEED_KDE} in |
|
|
| 172 | latest) |
|
|
| 173 | # Should only be used by 'kde-base'-ebuilds |
|
|
| 174 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
|
|
| 175 | case ${PV} in |
|
|
| 176 | 4.1*| 4.0.9* | 4.0.8*) |
|
|
| 177 | _kdedir="4.1" |
|
|
| 178 | _pv="-${PV}:4.1" ;; |
|
|
| 179 | 4.0*) |
|
|
| 180 | _kdedir="4.0" |
|
|
| 181 | _pv="-${PV}:kde-4" ;; |
|
|
| 182 | 3.9*) |
|
|
| 183 | _kdedir="3.9" |
|
|
| 184 | _pv="-${PV}:kde-4" ;; |
|
|
| 185 | *) |
327 | *) ;; |
| 186 | die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 187 | esac |
|
|
| 188 | _operator=">=" |
|
|
| 189 | else |
|
|
| 190 | case ${PV} in |
|
|
| 191 | 4.1 | 4.0.9* | 4.0.8*) _kdedir="4.1" ;; |
|
|
| 192 | 4.0*) _kdedir="4.0" ;; |
|
|
| 193 | 3.9*) _kdedir="3.9" ;; |
|
|
| 194 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 195 | esac |
328 | esac |
| 196 | fi |
329 | fi |
| 197 | ;; |
330 | fi |
|
|
331 | fi |
| 198 | |
332 | |
| 199 | # NEED_KDE=":${SLOT}" |
333 | kdedepend=" |
| 200 | :kde-svn) |
334 | dev-util/automoc |
| 201 | _kdedir="svn" |
335 | virtual/pkgconfig |
| 202 | _pv="-${NEED_KDE}" |
336 | !aqua? ( |
| 203 | export NEED_KDE="svn" |
337 | >=x11-libs/libXtst-1.1.0 |
| 204 | ;; |
338 | x11-proto/xf86vidmodeproto |
| 205 | :4.1) |
339 | ) |
| 206 | _kdedir="4.1" |
340 | " |
| 207 | _pv="${NEED_KDE}" |
|
|
| 208 | ;; |
|
|
| 209 | :kde-4) |
|
|
| 210 | _kdedir="4.0" |
|
|
| 211 | _pv="${NEED_KDE}" |
|
|
| 212 | ;; |
|
|
| 213 | |
341 | |
| 214 | # NEED_KDE="${PV}:${SLOT}" |
342 | kderdepend="" |
| 215 | *:kde-svn) |
|
|
| 216 | _kdedir="svn" |
|
|
| 217 | _operator=">=" |
|
|
| 218 | _pv="-${NEED_KDE}" |
|
|
| 219 | export NEED_KDE="svn" |
|
|
| 220 | ;; |
|
|
| 221 | *:4.1) |
|
|
| 222 | _kdedir="4.1" |
|
|
| 223 | _operator=">=" |
|
|
| 224 | _pv="-${NEED_KDE}" |
|
|
| 225 | ;; |
|
|
| 226 | *:kde-4) |
|
|
| 227 | _kdedir="4.0" |
|
|
| 228 | _operator=">=" |
|
|
| 229 | _pv="-${NEED_KDE}" |
|
|
| 230 | ;; |
|
|
| 231 | |
343 | |
| 232 | # NEED_KDE="${PV}" |
344 | # all packages needs oxygen icons for basic iconset |
| 233 | scm|svn|9999*) |
345 | if [[ ${PN} != oxygen-icons ]]; then |
| 234 | _kdedir="svn" |
346 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
| 235 | _operator=">=" |
347 | fi |
| 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 | ;; |
|
|
| 249 | 3.9*) |
|
|
| 250 | _kdedir="3.9" |
|
|
| 251 | _operator=">=" |
|
|
| 252 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 253 | ;; |
|
|
| 254 | |
348 | |
| 255 | # The ebuild handles dependencies, KDEDIR, SLOT. |
349 | # add a dependency over kde-l10n if EAPI4 or better is around |
|
|
350 | if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} && ${EAPI:-0} != 3 ]]; then |
|
|
351 | for _lingua in ${KDE_LINGUAS}; do |
|
|
352 | # if our package has lignuas, pull in kde-l10n with selected lingua enabled, |
|
|
353 | # but only for selected ones. |
|
|
354 | # this can't be done on one line because if user doesn't use any localisation |
|
|
355 | # then he is probably not interested in kde-l10n at all. |
|
|
356 | kderdepend+=" |
|
|
357 | linguas_${_lingua}? ( $(add_kdebase_dep kde-l10n "linguas_${_lingua}(+)") ) |
|
|
358 | " |
|
|
359 | done |
|
|
360 | unset _lingua |
|
|
361 | fi |
|
|
362 | |
|
|
363 | kdehandbookdepend=" |
|
|
364 | app-text/docbook-xml-dtd:4.2 |
|
|
365 | app-text/docbook-xsl-stylesheets |
|
|
366 | " |
|
|
367 | kdehandbookrdepend=" |
|
|
368 | $(add_kdebase_dep kdelibs 'handbook') |
|
|
369 | " |
|
|
370 | case ${KDE_HANDBOOK} in |
|
|
371 | always) |
|
|
372 | kdedepend+=" ${kdehandbookdepend}" |
|
|
373 | [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}" |
|
|
374 | ;; |
|
|
375 | optional) |
|
|
376 | IUSE+=" +handbook" |
|
|
377 | kdedepend+=" handbook? ( ${kdehandbookdepend} )" |
|
|
378 | [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )" |
|
|
379 | ;; |
|
|
380 | *) ;; |
|
|
381 | esac |
|
|
382 | unset kdehandbookdepend kdehandbookrdepend |
|
|
383 | |
|
|
384 | case ${KDE_SELINUX_MODULE} in |
| 256 | none) |
385 | none) ;; |
| 257 | : |
|
|
| 258 | ;; |
|
|
| 259 | |
|
|
| 260 | *) |
386 | *) |
| 261 | die "NEED_KDE=${NEED_KDE} currently not supported." |
387 | IUSE+=" selinux" |
|
|
388 | kdecommondepend+=" selinux? ( sec-policy/selinux-${KDE_SELINUX_MODULE} )" |
| 262 | ;; |
389 | ;; |
| 263 | esac |
390 | esac |
| 264 | |
391 | |
| 265 | if [[ ${NEED_KDE} != none ]]; then |
392 | case ${KDE_REQUIRED} in |
|
|
393 | always) |
|
|
394 | IUSE+=" aqua" |
|
|
395 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}" |
|
|
396 | [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}" |
|
|
397 | [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}" |
|
|
398 | ;; |
|
|
399 | optional) |
|
|
400 | IUSE+=" aqua kde" |
|
|
401 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
|
|
402 | [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )" |
|
|
403 | [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )" |
|
|
404 | ;; |
|
|
405 | *) ;; |
|
|
406 | esac |
| 266 | |
407 | |
| 267 | #Set the SLOT |
408 | unset kdecommondepend kdedepend kderdepend |
|
|
409 | |
|
|
410 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
|
|
411 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
|
|
412 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
|
|
413 | |
|
|
414 | # Accumulate dependencies set by this eclass |
|
|
415 | DEPEND+=" ${COMMONDEPEND}" |
|
|
416 | RDEPEND+=" ${COMMONDEPEND}" |
|
|
417 | unset COMMONDEPEND |
|
|
418 | |
|
|
419 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
|
|
420 | # koffice ebuild, the URI should be set in the ebuild itself |
|
|
421 | _calculate_src_uri() { |
|
|
422 | debug-print-function ${FUNCNAME} "$@" |
|
|
423 | |
|
|
424 | local _kmname _kmname_pv |
|
|
425 | |
|
|
426 | # we calculate URI only for known KDEBASE modules |
|
|
427 | [[ -n ${KDEBASE} ]] || return |
|
|
428 | |
|
|
429 | # calculate tarball module name |
| 268 | if [[ -n ${KDEBASE} ]]; then |
430 | if [[ -n ${KMNAME} ]]; then |
| 269 | if [[ ${NEED_KDE} = svn ]]; then |
431 | # fixup kdebase-apps name |
| 270 | SLOT="kde-svn" |
432 | case ${KMNAME} in |
|
|
433 | kdebase-apps) |
|
|
434 | _kmname="kdebase" ;; |
|
|
435 | *) |
|
|
436 | _kmname="${KMNAME}" ;; |
|
|
437 | esac |
| 271 | else |
438 | else |
|
|
439 | _kmname=${PN} |
|
|
440 | fi |
|
|
441 | _kmname_pv="${_kmname}-${PV}" |
|
|
442 | case ${KDEBASE} in |
|
|
443 | kde-base) |
| 272 | case ${PV} in |
444 | case ${PV} in |
| 273 | 4.1* | 4.0.9* | 4.0.8*) SLOT="4.1" ;; |
445 | 4.4.11.1) |
| 274 | *) SLOT="kde-4" ;; |
446 | # KDEPIM 4.4, special case |
|
|
447 | # TODO: Remove this part when KDEPIM 4.4 gets out of the tree |
|
|
448 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
449 | 4.[456789].8[05] | 4.[456789].9[0235678]) |
|
|
450 | # Unstable KDE SC releases |
|
|
451 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
452 | 4.8.[12345]) |
|
|
453 | # Stable KDE SC releases with .xz support |
|
|
454 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.xz" ;; |
|
|
455 | *) |
|
|
456 | # Stable KDE SC releases |
|
|
457 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
| 275 | esac |
458 | esac |
| 276 | fi |
459 | ;; |
| 277 | fi |
460 | koffice) |
| 278 | |
|
|
| 279 | # Block install of other SLOTS unless kdeprefix |
|
|
| 280 | case "${EAPI}" in |
461 | case ${PV} in |
| 281 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
462 | 2.[1234].[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 282 | for KDE_SLOT in ${KDE_SLOTS[@]}; do |
463 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
| 283 | # block non kdeprefix ${PN} on other slots |
464 | esac |
| 284 | if [[ ${SLOT} != ${KDE_SLOT} ]]; then |
465 | ;; |
| 285 | DEPEND="${DEPEND} |
466 | kdevelop|kdevelop-php*|kdevplatform) |
| 286 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
467 | case ${KDEVELOP_VERSION} in |
| 287 | RDEPEND="${RDEPEND} |
468 | 4.[12].[6-9]*) SRC_URI="mirror://kde/unstable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" ;; |
| 288 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
469 | *) SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" ;; |
| 289 | fi |
470 | esac |
| 290 | done |
|
|
| 291 | ;; |
471 | ;; |
| 292 | esac |
472 | esac |
|
|
473 | } |
| 293 | |
474 | |
| 294 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
475 | _calculate_live_repo() { |
| 295 | if [[ ${PN} != "kdelibs" ]]; then |
476 | debug-print-function ${FUNCNAME} "$@" |
|
|
477 | |
|
|
478 | SRC_URI="" |
|
|
479 | case ${KDE_SCM} in |
|
|
480 | svn) |
|
|
481 | # Determine branch URL based on live type |
|
|
482 | local branch_prefix |
| 296 | case "${EAPI}" in |
483 | case ${PV} in |
| 297 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
484 | 9999*) |
| 298 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
485 | # trunk |
| 299 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
486 | branch_prefix="trunk/KDE" |
|
|
487 | ;; |
|
|
488 | *) |
|
|
489 | # branch |
|
|
490 | branch_prefix="branches/KDE/$(get_kde_version)" |
|
|
491 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
492 | # @DESCRIPTION |
|
|
493 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
494 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
495 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
496 | ;; |
|
|
497 | esac |
|
|
498 | # @ECLASS-VARIABLE: ESVN_MIRROR |
|
|
499 | # @DESCRIPTION: |
|
|
500 | # This variable allows easy overriding of default kde mirror service |
|
|
501 | # (anonsvn) with anything else you might want to use. |
|
|
502 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
|
|
503 | # Split ebuild, or extragear stuff |
|
|
504 | if [[ -n ${KMNAME} ]]; then |
|
|
505 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
506 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
507 | KMMODULE="${PN}" |
|
|
508 | fi |
|
|
509 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
510 | case ${KMNAME} in |
|
|
511 | kdebase-*) |
|
|
512 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
513 | ;; |
|
|
514 | kdelibs-*) |
|
|
515 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
516 | ;; |
|
|
517 | kdereview*) |
|
|
518 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
519 | ;; |
|
|
520 | kdesupport) |
|
|
521 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
522 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
523 | ;; |
|
|
524 | kde*) |
|
|
525 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
526 | ;; |
|
|
527 | extragear*|playground*) |
|
|
528 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
529 | # build packages from same svn location. |
|
|
530 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
531 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
532 | ;; |
|
|
533 | koffice) |
|
|
534 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
535 | ;; |
|
|
536 | *) |
|
|
537 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
538 | ;; |
|
|
539 | esac |
|
|
540 | else |
|
|
541 | # kdelibs, kdepimlibs |
|
|
542 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
543 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
544 | fi |
|
|
545 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
546 | # @DESCRIPTION: |
|
|
547 | # This variable is used for specifying the timeout between svn synces |
|
|
548 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
549 | # Default value is 1 hour. |
|
|
550 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
551 | ;; |
|
|
552 | git) |
|
|
553 | local _kmname |
|
|
554 | # @ECLASS-VARIABLE: EGIT_MIRROR |
|
|
555 | # @DESCRIPTION: |
|
|
556 | # This variable allows easy overriding of default kde mirror service |
|
|
557 | # (anongit) with anything else you might want to use. |
|
|
558 | EGIT_MIRROR=${EGIT_MIRROR:=git://anongit.kde.org} |
|
|
559 | |
|
|
560 | # @ECLASS-VARIABLE: EGIT_REPONAME |
|
|
561 | # @DESCRIPTION: |
|
|
562 | # This variable allows overriding of default repository |
|
|
563 | # name. Specify only if this differ from PN and KMNAME. |
|
|
564 | if [[ -n ${EGIT_REPONAME} ]]; then |
|
|
565 | # the repository and kmname different |
|
|
566 | _kmname=${EGIT_REPONAME} |
|
|
567 | elif [[ -n ${KMNAME} ]]; then |
|
|
568 | _kmname=${KMNAME} |
|
|
569 | else |
|
|
570 | _kmname=${PN} |
|
|
571 | fi |
|
|
572 | |
|
|
573 | # default branching |
|
|
574 | [[ ${PV} != 9999* && ${KDEBASE} == kde-base ]] && \ |
|
|
575 | EGIT_BRANCH="KDE/$(get_kde_version)" |
|
|
576 | |
|
|
577 | # default repo uri |
|
|
578 | EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" |
|
|
579 | |
|
|
580 | debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" |
|
|
581 | debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" |
|
|
582 | ;; |
|
|
583 | esac |
|
|
584 | } |
|
|
585 | |
|
|
586 | case ${BUILD_TYPE} in |
|
|
587 | live) _calculate_live_repo ;; |
|
|
588 | *) _calculate_src_uri ;; |
|
|
589 | esac |
|
|
590 | |
|
|
591 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
592 | |
|
|
593 | # @ECLASS-VARIABLE: PREFIX |
|
|
594 | # @DESCRIPTION: |
|
|
595 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
|
|
596 | # kde-base packages go into KDE4 installation directory (/usr). |
|
|
597 | # No matter the PREFIX, package will be built against KDE installed in /usr. |
|
|
598 | |
|
|
599 | # @FUNCTION: kde4-base_pkg_setup |
|
|
600 | # @DESCRIPTION: |
|
|
601 | # Do some basic settings |
|
|
602 | kde4-base_pkg_setup() { |
|
|
603 | debug-print-function ${FUNCNAME} "$@" |
|
|
604 | |
|
|
605 | if has handbook ${IUSE} || has "+handbook" ${IUSE} && [ "${KDE_HANDBOOK}" != optional ] ; then |
|
|
606 | eqawarn "Handbook support is enabled via KDE_HANDBOOK=optional in the ebuild." |
|
|
607 | eqawarn "Please do not just set IUSE=handbook, as this leads to dependency errors." |
|
|
608 | fi |
|
|
609 | |
|
|
610 | if use_if_iuse kdeprefix; then |
|
|
611 | eerror "Sorry, kdeprefix support has been removed." |
|
|
612 | eerror "Please remove kdeprefix from your USE variable." |
|
|
613 | die "kdeprefix support has been removed" |
|
|
614 | fi |
|
|
615 | |
|
|
616 | if [[ ${CATEGORY}/${PN} != kde-base/kdelibs && ${CATEGORY}/${PN} != kde-base/kde-env ]] && \ |
|
|
617 | { [[ ${KDE_REQUIRED} == always ]] || { [[ ${KDE_REQUIRED} == optional ]] && use kde; }; } && \ |
|
|
618 | has_version kde-base/kdelibs[kdeprefix]; then |
|
|
619 | eerror "Sorry, kdeprefix support has been removed." |
|
|
620 | eerror "Please rebuild kdelibs without kdeprefix support." |
|
|
621 | die "kdeprefix support has been removed" |
|
|
622 | fi |
|
|
623 | |
|
|
624 | # Don't set KDEHOME during compilation, it will cause access violations |
|
|
625 | unset KDEHOME |
|
|
626 | |
|
|
627 | # Check if gcc compiler is fresh enough. |
|
|
628 | # In theory should be in pkg_pretend but we check it only for kdelibs there |
|
|
629 | # and for others we do just quick scan in pkg_setup because pkg_pretend |
|
|
630 | # executions consume quite some time. |
|
|
631 | # We can only do this for EAPI 4 or later because the MERGE_TYPE variable |
|
|
632 | # is otherwise undefined. |
|
|
633 | if [[ ${EAPI:-0} != 3 ]]; then |
|
|
634 | if [[ ${MERGE_TYPE} != binary ]]; then |
|
|
635 | [[ $(gcc-major-version) -lt 4 ]] || \ |
|
|
636 | ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ |
|
|
637 | && die "Sorry, but gcc-4.3 and earlier wont work for KDE (see bug 354837)." |
|
|
638 | fi |
|
|
639 | fi |
|
|
640 | |
|
|
641 | KDEDIR=/usr |
|
|
642 | : ${PREFIX:=/usr} |
|
|
643 | EKDEDIR=${EPREFIX}/usr |
|
|
644 | |
|
|
645 | # Point to correct QT plugins path |
|
|
646 | QT_PLUGIN_PATH="${EPREFIX}/usr/$(get_libdir)/kde4/plugins/" |
|
|
647 | |
|
|
648 | # Fix XDG collision with sandbox |
|
|
649 | export XDG_CONFIG_HOME="${T}" |
|
|
650 | } |
|
|
651 | |
|
|
652 | # @FUNCTION: kde4-base_src_unpack |
|
|
653 | # @DESCRIPTION: |
|
|
654 | # This function unpacks the source tarballs for KDE4 applications. |
|
|
655 | kde4-base_src_unpack() { |
|
|
656 | debug-print-function ${FUNCNAME} "$@" |
|
|
657 | |
|
|
658 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
659 | case ${KDE_SCM} in |
|
|
660 | svn) |
|
|
661 | migrate_store_dir |
|
|
662 | subversion_src_unpack |
| 300 | ;; |
663 | ;; |
| 301 | *) |
664 | git) |
| 302 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}" |
665 | git-2_src_unpack |
| 303 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 304 | ;; |
666 | ;; |
| 305 | esac |
667 | esac |
| 306 | if [[ ${PN} != "kdepimlibs" ]]; then |
|
|
| 307 | case "${EAPI}" in |
|
|
| 308 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 309 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
|
|
| 310 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
|
|
| 311 | ;; |
|
|
| 312 | *) |
|
|
| 313 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 314 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 315 | esac |
|
|
| 316 | fi |
|
|
| 317 | fi |
|
|
| 318 | |
|
|
| 319 | unset _operator _pv |
|
|
| 320 | fi |
|
|
| 321 | |
|
|
| 322 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
|
|
| 323 | # koffice ebuild, the URI should be set in the ebuild itself |
|
|
| 324 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 325 | if [[ -n ${KMNAME} ]]; then |
|
|
| 326 | _kmname=${KMNAME} |
|
|
| 327 | else |
668 | else |
| 328 | _kmname=${PN} |
669 | unpack ${A} |
| 329 | fi |
|
|
| 330 | _kmname_pv="${_kmname}-${PV}" |
|
|
| 331 | if [[ ${NEED_KDE} != "svn" ]]; then |
|
|
| 332 | case ${KDEBASE} in |
|
|
| 333 | kde-base) |
|
|
| 334 | case ${PV} in |
|
|
| 335 | 4.0.9* | 4.0.8*) |
|
|
| 336 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
| 337 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
|
|
| 338 | esac |
|
|
| 339 | ;; |
|
|
| 340 | koffice) |
|
|
| 341 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
|
|
| 342 | ;; |
|
|
| 343 | esac |
|
|
| 344 | fi |
|
|
| 345 | unset _kmname _kmname_pv |
|
|
| 346 | fi |
|
|
| 347 | |
|
|
| 348 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
| 349 | |
|
|
| 350 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 351 | # @DESCRIPTION: |
|
|
| 352 | # Set the installation PREFIX. All kde-base ebuilds go into the KDE4 installation directory. |
|
|
| 353 | # Applications installed by the other ebuilds go into /usr/ by default, this value |
|
|
| 354 | # can be superseded by defining PREFIX before inheriting kde4-base. |
|
|
| 355 | # This value is set on pkg_setup |
|
|
| 356 | PREFIX="" |
|
|
| 357 | |
|
|
| 358 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - NEED_KDE ${NEED_KDE}" |
|
|
| 359 | |
|
|
| 360 | # @FUNCTION: kde4-base_pkg_setup |
|
|
| 361 | # @DESCRIPTION: |
|
|
| 362 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
|
|
| 363 | # kde4-functions_check_use from kde4-functions.eclass to print appropriate |
|
|
| 364 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
|
|
| 365 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
|
|
| 366 | kde4-base_pkg_setup() { |
|
|
| 367 | debug-print-function $FUNCNAME "$@" |
|
|
| 368 | |
|
|
| 369 | # Don't set KDEHOME during compile, it will cause access violations |
|
|
| 370 | unset KDEHOME |
|
|
| 371 | |
|
|
| 372 | if [[ ${NEED_KDE} != none ]]; then |
|
|
| 373 | |
|
|
| 374 | # Set PREFIX |
|
|
| 375 | case "${EAPI}" in |
|
|
| 376 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 377 | if use kdeprefix; then |
|
|
| 378 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
| 379 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 380 | else |
|
|
| 381 | KDEDIR="/usr" |
|
|
| 382 | KDEDIRS="/usr:/usr/local" |
|
|
| 383 | fi |
|
|
| 384 | ;; |
|
|
| 385 | *) |
|
|
| 386 | KDEDIR="/usr" |
|
|
| 387 | KDEDIRS="/usr:/usr/local" |
|
|
| 388 | ;; |
|
|
| 389 | esac |
|
|
| 390 | fi |
|
|
| 391 | |
|
|
| 392 | # Set the prefix based on KDEDIR |
|
|
| 393 | # Make it a consequence of kdeprefix |
|
|
| 394 | PREFIX=${KDEDIR} |
|
|
| 395 | |
|
|
| 396 | unset _kdedir |
|
|
| 397 | |
|
|
| 398 | case "${EAPI}" in |
|
|
| 399 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 400 | [[ -n ${QT4_BUILT_WITH_USE_CHECK} || -n ${KDE4_BUILT_WITH_USE_CHECK[@]} ]] && \ |
|
|
| 401 | die "built_with_use illegal in this EAPI!" |
|
|
| 402 | ;; |
|
|
| 403 | *) |
|
|
| 404 | # Make KDE4_BUILT_WITH_USE_CHECK an array if it isn't already |
|
|
| 405 | local line kde4_built_with_use_check=() |
|
|
| 406 | if [[ -n ${KDE4_BUILT_WITH_USE_CHECK[@]} && $(declare -p KDE4_BUILT_WITH_USE_CHECK) != 'declare -a '* ]]; then |
|
|
| 407 | while read line; do |
|
|
| 408 | [[ -z ${line} ]] && continue |
|
|
| 409 | kde4_built_with_use_check+=("${line}") |
|
|
| 410 | done <<< "${KDE4_BUILT_WITH_USE_CHECK}" |
|
|
| 411 | KDE4_BUILT_WITH_USE_CHECK=("${kde4_built_with_use_check[@]}") |
|
|
| 412 | fi |
670 | fi |
| 413 | |
|
|
| 414 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
|
|
| 415 | if has_version '<x11-libs/qt-4.4_alpha:4'; then |
|
|
| 416 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
|
|
| 417 | else |
|
|
| 418 | KDE4_BUILT_WITH_USE_CHECK=("${KDE4_BUILT_WITH_USE_CHECK[@]}" |
|
|
| 419 | "x11-libs/qt-core qt3support ssl" |
|
|
| 420 | "x11-libs/qt-gui accessibility dbus" |
|
|
| 421 | "x11-libs/qt-qt3support accessibility") |
|
|
| 422 | fi |
|
|
| 423 | |
|
|
| 424 | if has opengl ${IUSE//+} && use opengl || [[ ${OPENGL_REQUIRED} == always ]]; then |
|
|
| 425 | if has_version '<x11-libs/qt-4.4.0_alpha:4'; then |
|
|
| 426 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
|
|
| 427 | fi |
|
|
| 428 | fi |
|
|
| 429 | kde4-functions_check_use |
|
|
| 430 | ;; |
|
|
| 431 | esac |
|
|
| 432 | } |
671 | } |
| 433 | |
672 | |
| 434 | # @FUNCTION: kde4-base_apply_patches |
|
|
| 435 | # @DESCRIPTION: |
|
|
| 436 | # This function applies patches. |
|
|
| 437 | # |
|
|
| 438 | # If the directory ${WORKDIR}/patches/ exists, we apply all patches in that |
|
|
| 439 | # directory, provided they follow this format: |
|
|
| 440 | # @CODE |
|
|
| 441 | # - Monolithic ebuilds, (from kde-base) |
|
|
| 442 | # - $CATEGORY=kde-base: |
|
|
| 443 | # Apply ${CHILD_EBUILD_NAME}-${SLOT}-*{diff,patch} |
|
|
| 444 | # - $CATEGORY=!kde-base: |
|
|
| 445 | # Apply ${CHILD_EBUILD_NAME}-${PV}-*{diff,patch} |
|
|
| 446 | # - Split ebuilds: |
|
|
| 447 | # - $CATEGORY=kde-base: |
|
|
| 448 | # Apply ${PN}-${SLOT}-*{diff,patch} |
|
|
| 449 | # - $CATEGORY!=kde-base: |
|
|
| 450 | # Apply ${PN}-${PV}-*{diff,patch} |
|
|
| 451 | # @CODE |
|
|
| 452 | # |
|
|
| 453 | # If ${PATCHES} is non-zero all patches in it get applied. If there is more |
|
|
| 454 | # than one patch please make ${PATCHES} an array for proper quoting. |
|
|
| 455 | kde4-base_apply_patches() { |
|
|
| 456 | local _patchdir _packages _p _f |
|
|
| 457 | _patchdir="${WORKDIR}/patches/" |
|
|
| 458 | if [[ -d "${_patchdir}" ]]; then |
|
|
| 459 | if is-parent-package ${CATEGORY}/${PN} ; then |
|
|
| 460 | _packages="$(get-child-packages ${CATEGORY}/${PN})" |
|
|
| 461 | _packages="${_packages//${CATEGORY}\//} ${PN}" |
|
|
| 462 | else |
|
|
| 463 | _packages="${PN}" |
|
|
| 464 | fi |
|
|
| 465 | if [[ $(declare -p PATCHES) != 'declare -a '* ]]; then |
|
|
| 466 | die "PATCHES needs to be an array!" |
|
|
| 467 | fi |
|
|
| 468 | for _p in ${_packages}; do |
|
|
| 469 | for _f in "${_patchdir}"/${_p}-${PV}-*{diff,patch}; do |
|
|
| 470 | [[ -e ${_f} ]] && PATCHES+=("${_f}") |
|
|
| 471 | done |
|
|
| 472 | if [[ -n "${KDEBASE}" ]]; then |
|
|
| 473 | for _f in "${_patchdir}"/${_p}-${SLOT}-*{diff,patch}; do |
|
|
| 474 | [[ -e ${_f} ]] && PATCHES+=("${_f}") |
|
|
| 475 | done |
|
|
| 476 | fi |
|
|
| 477 | done |
|
|
| 478 | fi |
|
|
| 479 | [[ -n ${PATCHES[@]} ]] && base_src_unpack autopatch |
|
|
| 480 | } |
|
|
| 481 | |
|
|
| 482 | # @FUNCTION: kde4-base_src_unpack |
673 | # @FUNCTION: kde4-base_src_prepare |
| 483 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 484 | # This function unpacks the source tarballs for KDE4 applications. |
675 | # General pre-configure and pre-compile function for KDE4 applications. |
| 485 | # |
|
|
| 486 | # If no argument is passed to this function, then standard src_unpack is |
|
|
| 487 | # executed. Otherwise options are passed to base_src_unpack. |
|
|
| 488 | # |
|
|
| 489 | # In addition it calls kde4-base_apply_patches when no arguments are passed to |
|
|
| 490 | # this function. |
|
|
| 491 | # |
|
|
| 492 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
676 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
677 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 493 | # enable_selected_linguas() in kde4-functions.eclass(5) for further details. |
678 | # in kde4-functions.eclass(5) for further details. |
| 494 | kde4-base_src_unpack() { |
679 | kde4-base_src_prepare() { |
| 495 | debug-print-function $FUNCNAME "$@" |
680 | debug-print-function ${FUNCNAME} "$@" |
| 496 | |
681 | |
| 497 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
682 | # enable handbook and linguas only when not using live ebuild |
| 498 | |
|
|
| 499 | if [[ -z $* ]]; then |
|
|
| 500 | # Unpack first and deal with KDE patches after examing possible patch sets. |
|
|
| 501 | # To be picked up, patches need to conform to the guidelines stated before. |
|
|
| 502 | # Monolithic ebuilds will use the split ebuild patches. |
|
|
| 503 | [[ -d "${KDE_S}" ]] || unpack ${A} |
|
|
| 504 | kde4-base_apply_patches |
|
|
| 505 | else |
|
|
| 506 | # Call base_src_unpack, which unpacks and patches |
|
|
| 507 | # step by step transparently as defined in the ebuild. |
|
|
| 508 | base_src_unpack $* |
|
|
| 509 | fi |
|
|
| 510 | |
|
|
| 511 | # Updated cmake dir |
|
|
| 512 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
|
|
| 513 | ebegin "Updating cmake/ directory..." |
|
|
| 514 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
|
|
| 515 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
|
|
| 516 | eend 0 |
|
|
| 517 | fi |
|
|
| 518 | |
683 | |
| 519 | # Only enable selected languages, used for KDE extragear apps. |
684 | # Only enable selected languages, used for KDE extragear apps. |
| 520 | if [[ -n ${KDE_LINGUAS} ]]; then |
685 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 521 | enable_selected_linguas |
686 | enable_selected_linguas |
| 522 | fi |
687 | fi |
|
|
688 | |
|
|
689 | # Enable/disable handbooks for kde4-base packages |
|
|
690 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
|
|
691 | # kdelibs inherits kde4-base but handle installing the handbook itself |
|
|
692 | if ! has kde4-meta ${INHERITED} && in_iuse handbook; then |
|
|
693 | if [[ ${KDEBASE} == kde-base ]]; then |
|
|
694 | if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then |
|
|
695 | # documentation in kde4-functions |
|
|
696 | : ${KDE_DOC_DIRS:=doc} |
|
|
697 | local dir |
|
|
698 | for dir in ${KDE_DOC_DIRS}; do |
|
|
699 | sed -e "\!^[[:space:]]*add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
700 | -e "\!^[[:space:]]*ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
701 | -e "\!^[[:space:]]*macro_optional_add_subdirectory[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
702 | -e "\!^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${dir}[[:space:]]*)!s/^/#DONOTCOMPILE /" \ |
|
|
703 | -i CMakeLists.txt || die "failed to comment out handbook" |
|
|
704 | done |
|
|
705 | fi |
|
|
706 | else |
|
|
707 | enable_selected_doc_linguas |
|
|
708 | fi |
|
|
709 | fi |
|
|
710 | |
|
|
711 | # SCM bootstrap |
|
|
712 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
713 | case ${KDE_SCM} in |
|
|
714 | svn) subversion_src_prepare ;; |
|
|
715 | esac |
|
|
716 | fi |
|
|
717 | |
|
|
718 | # Apply patches |
|
|
719 | base_src_prepare |
|
|
720 | |
|
|
721 | # Save library dependencies |
|
|
722 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
723 | save_library_dependencies |
|
|
724 | fi |
|
|
725 | |
|
|
726 | # Inject library dependencies |
|
|
727 | if [[ -n ${KMLOADLIBS} ]] ; then |
|
|
728 | load_library_dependencies |
|
|
729 | fi |
|
|
730 | |
|
|
731 | # Hack for manuals relying on outdated DTD, only outside kde-base/koffice/... |
|
|
732 | if [[ -z ${KDEBASE} ]]; then |
|
|
733 | find "${S}" -name "*.docbook" \ |
|
|
734 | -exec sed -i -r \ |
|
|
735 | -e 's:-//KDE//DTD DocBook XML V4\.1(\..)?-Based Variant V1\.[01]//EN:-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN:g' {} + \ |
|
|
736 | || die 'failed to fix DocBook variant version' |
|
|
737 | fi |
|
|
738 | } |
|
|
739 | |
|
|
740 | # @FUNCTION: kde4-base_src_configure |
|
|
741 | # @DESCRIPTION: |
|
|
742 | # Function for configuring the build of KDE4 applications. |
|
|
743 | kde4-base_src_configure() { |
|
|
744 | debug-print-function ${FUNCNAME} "$@" |
|
|
745 | |
|
|
746 | # Build tests in src_test only, where we override this value |
|
|
747 | local cmakeargs=(-DKDE4_BUILD_TESTS=OFF) |
|
|
748 | |
|
|
749 | if use_if_iuse debug; then |
|
|
750 | # Set "real" debug mode |
|
|
751 | CMAKE_BUILD_TYPE="Debugfull" |
|
|
752 | else |
|
|
753 | # Handle common release builds |
|
|
754 | append-cppflags -DQT_NO_DEBUG |
|
|
755 | fi |
|
|
756 | |
|
|
757 | # Set distribution name |
|
|
758 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
|
|
759 | |
|
|
760 | # Here we set the install prefix |
|
|
761 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
|
|
762 | |
|
|
763 | # Use colors |
|
|
764 | QTEST_COLORED=1 |
|
|
765 | |
|
|
766 | # Shadow existing installations |
|
|
767 | unset KDEDIRS |
|
|
768 | |
|
|
769 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
|
|
770 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/$(get_libdir)/qt4) |
|
|
771 | #kde-config -path data unavailable when cross-compiling |
|
|
772 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
|
|
773 | |
|
|
774 | # sysconf needs to be /etc, not /usr/etc |
|
|
775 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
|
|
776 | |
|
|
777 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
778 | if [[ ${mycmakeargs} ]]; then |
|
|
779 | eqawarn "mycmakeargs should always be declared as an array, not a string" |
|
|
780 | fi |
|
|
781 | mycmakeargs=(${mycmakeargs}) |
|
|
782 | fi |
|
|
783 | |
|
|
784 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
|
|
785 | |
|
|
786 | cmake-utils_src_configure |
| 523 | } |
787 | } |
| 524 | |
788 | |
| 525 | # @FUNCTION: kde4-base_src_compile |
789 | # @FUNCTION: kde4-base_src_compile |
| 526 | # @DESCRIPTION: |
790 | # @DESCRIPTION: |
| 527 | # General function for compiling KDE4 applications. |
791 | # General function for compiling KDE4 applications. |
| 528 | kde4-base_src_compile() { |
792 | kde4-base_src_compile() { |
| 529 | debug-print-function ${FUNCNAME} "$@" |
793 | debug-print-function ${FUNCNAME} "$@" |
| 530 | case "${EAPI}" in |
|
|
| 531 | 2) |
|
|
| 532 | ;; |
|
|
| 533 | *) |
|
|
| 534 | kde4-base_src_configure |
|
|
| 535 | ;; |
|
|
| 536 | esac |
|
|
| 537 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 538 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 539 | fi |
|
|
| 540 | [ -e [Mm]akefile ] && kde4-base_src_make |
|
|
| 541 | } |
|
|
| 542 | |
794 | |
| 543 | # @FUNCTION: kde4-base_src_configure |
|
|
| 544 | # @DESCRIPTION: |
|
|
| 545 | # Function for configuring the build of KDE4 applications. |
|
|
| 546 | kde4-base_src_configure() { |
|
|
| 547 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 548 | |
|
|
| 549 | # Final flag handling |
|
|
| 550 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
| 551 | echo "Activating enable-final flag" |
|
|
| 552 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_FINAL=ON" |
|
|
| 553 | fi |
|
|
| 554 | |
|
|
| 555 | # Enable generation of HTML handbook |
|
|
| 556 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
|
|
| 557 | echo "Enabling building of HTML handbook" |
|
|
| 558 | mycmakeargs="${mycmakeargs} -DKDE4_ENABLE_HTMLHANDBOOK=ON" |
|
|
| 559 | fi |
|
|
| 560 | |
|
|
| 561 | # Build tests in src_test only, where we override this value |
|
|
| 562 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=OFF" |
|
|
| 563 | |
|
|
| 564 | # Set distribution name |
|
|
| 565 | [[ ${PN} == "kdelibs" ]] && mycmakeargs="${mycmakeargs} -DKDE_DISTRIBUTION_TEXT=Gentoo" |
|
|
| 566 | |
|
|
| 567 | # runpath linking |
|
|
| 568 | mycmakeargs="${mycmakeargs} -DKDE4_USE_ALWAYS_FULL_RPATH=ON" |
|
|
| 569 | |
|
|
| 570 | # Here we set the install prefix |
|
|
| 571 | mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
|
|
| 572 | |
|
|
| 573 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
| 574 | [[ "${PREFIX}" == "/usr" ]] && mycmakeargs="${mycmakeargs} -DSYSCONF_INSTALL_DIR=/etc" |
|
|
| 575 | |
|
|
| 576 | # Set environment |
|
|
| 577 | QTEST_COLORED=1 |
|
|
| 578 | QT_PLUGIN_PATH=${KDEDIR}/$(get_libdir)/kde4/plugins/ |
|
|
| 579 | |
|
|
| 580 | # hardcode path to *.cmake KDE files |
|
|
| 581 | PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+${PKG_CONFIG_PATH}:}${KDEDIR}/$(get_libdir)/pkgconfig" |
|
|
| 582 | |
|
|
| 583 | [ -e CMakeLists.txt ] && cmake-utils_src_configureout |
|
|
| 584 | } |
|
|
| 585 | |
|
|
| 586 | # @FUNCTION: kde4-base_src_make |
|
|
| 587 | # @DESCRIPTION: |
|
|
| 588 | # Function for building KDE4 applications. |
|
|
| 589 | # Options are passed to cmake-utils_src_make. |
|
|
| 590 | kde4-base_src_make() { |
|
|
| 591 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 592 | |
|
|
| 593 | cmake-utils_src_make "$@" |
795 | cmake-utils_src_compile "$@" |
| 594 | } |
796 | } |
| 595 | |
797 | |
| 596 | # @FUNCTION: kde4-base_src_test |
798 | # @FUNCTION: kde4-base_src_test |
| 597 | # @DESCRIPTION: |
799 | # @DESCRIPTION: |
| 598 | # Function for testing KDE4 applications. |
800 | # Function for testing KDE4 applications. |
| 599 | kde4-base_src_test() { |
801 | kde4-base_src_test() { |
| 600 | debug-print-function ${FUNCNAME} "$@" |
802 | debug-print-function ${FUNCNAME} "$@" |
| 601 | |
803 | |
| 602 | # Override this value, set in kde4-base_src_configure() |
804 | # Override this value, set in kde4-base_src_configure() |
| 603 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=ON" |
805 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 604 | cmake-utils_src_compile |
806 | cmake-utils_src_configure |
|
|
807 | kde4-base_src_compile |
| 605 | |
808 | |
|
|
809 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
810 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
811 | # emerge or on the tinderbox. |
|
|
812 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
813 | unset DBUS_SESSION_BUS_ADDRESS |
|
|
814 | |
|
|
815 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
816 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
817 | if [[ ${VIRTUALX_COMMAND} != emake ]]; then |
|
|
818 | # surprise- we are already INSIDE virtualmake!!! |
|
|
819 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
820 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
821 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
822 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
823 | cmake-utils_src_test |
|
|
824 | else |
|
|
825 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
|
|
826 | fi |
|
|
827 | else |
| 606 | cmake-utils_src_test |
828 | cmake-utils_src_test |
|
|
829 | fi |
| 607 | } |
830 | } |
| 608 | |
831 | |
| 609 | # @FUNCTION: kde4-base_src_install |
832 | # @FUNCTION: kde4-base_src_install |
| 610 | # @DESCRIPTION: |
833 | # @DESCRIPTION: |
| 611 | # Function for installing KDE4 applications. |
834 | # Function for installing KDE4 applications. |
| 612 | kde4-base_src_install() { |
835 | kde4-base_src_install() { |
| 613 | debug-print-function ${FUNCNAME} "$@" |
836 | debug-print-function ${FUNCNAME} "$@" |
| 614 | |
837 | |
| 615 | kde4-base_src_make_doc |
838 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 616 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
839 | install_library_dependencies |
| 617 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 618 | fi |
840 | fi |
| 619 | [ -e [Mm]akefile ] && cmake-utils_src_install |
|
|
| 620 | } |
|
|
| 621 | |
841 | |
| 622 | # @FUNCTION: kde4-base_src_make_doc |
|
|
| 623 | # @DESCRIPTION: |
|
|
| 624 | # Function for installing the documentation of KDE4 applications. |
842 | # Install common documentation of KDE4 applications |
| 625 | kde4-base_src_make_doc() { |
|
|
| 626 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 627 | |
|
|
| 628 | local doc |
843 | local doc |
| 629 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
844 | if ! has kde4-meta ${INHERITED}; then |
| 630 | [[ -s $doc ]] && dodoc ${doc} |
845 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 631 | done |
846 | [[ -f ${doc} && -s ${doc} ]] && dodoc "${doc}" |
| 632 | |
|
|
| 633 | if [[ -z ${KMNAME} ]]; then |
|
|
| 634 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
|
|
| 635 | if [[ -s $doc ]]; then |
|
|
| 636 | local doc_complete=${doc} |
|
|
| 637 | doc="${doc#*/}" |
|
|
| 638 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
| 639 | fi |
|
|
| 640 | done |
847 | done |
|
|
848 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
849 | [[ -f ${doc} && -s ${doc} ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
850 | done |
| 641 | fi |
851 | fi |
| 642 | |
852 | |
| 643 | if [[ -n ${KDEBASE} && -d "${D}"/usr/share/doc/${PF} ]]; then |
853 | cmake-utils_src_install |
| 644 | # work around bug #97196 |
854 | |
| 645 | dodir /usr/share/doc/kde && \ |
855 | # In EAPI 4+, we don't want ${PREFIX}/share/doc/HTML to be compressed, |
| 646 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
856 | # because then khelpcenter can't find the docs |
| 647 | die "Failed to move docs to kde/ failed." |
857 | [[ ${EAPI:-0} != 3 && -d ${ED}/${PREFIX}/share/doc/HTML ]] && |
|
|
858 | docompress -x ${PREFIX}/share/doc/HTML |
|
|
859 | } |
|
|
860 | |
|
|
861 | # @FUNCTION: kde4-base_pkg_preinst |
|
|
862 | # @DESCRIPTION: |
|
|
863 | # Function storing icon caches |
|
|
864 | kde4-base_pkg_preinst() { |
|
|
865 | debug-print-function ${FUNCNAME} "$@" |
|
|
866 | |
|
|
867 | gnome2_icon_savelist |
|
|
868 | if [[ ${BUILD_TYPE} == live && ${KDE_SCM} == svn ]]; then |
|
|
869 | subversion_pkg_preinst |
| 648 | fi |
870 | fi |
| 649 | } |
871 | } |
| 650 | |
872 | |
| 651 | # @FUNCTION: kde4-base_pkg_postinst |
873 | # @FUNCTION: kde4-base_pkg_postinst |
| 652 | # @DESCRIPTION: |
874 | # @DESCRIPTION: |
| 653 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
875 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 654 | kde4-base_pkg_postinst() { |
876 | kde4-base_pkg_postinst() { |
|
|
877 | debug-print-function ${FUNCNAME} "$@" |
|
|
878 | |
|
|
879 | gnome2_icon_cache_update |
|
|
880 | fdo-mime_desktop_database_update |
|
|
881 | fdo-mime_mime_database_update |
| 655 | buildsycoca |
882 | buildsycoca |
|
|
883 | |
|
|
884 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
885 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
886 | echo |
|
|
887 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
888 | einfo "Use it at your own risk." |
|
|
889 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
890 | echo |
|
|
891 | fi |
|
|
892 | # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta |
|
|
893 | if [[ ${KDEBASE} != kde-base ]] && \ |
|
|
894 | ! has_version 'kde-base/kdebase-runtime-meta' && \ |
|
|
895 | ! has_version 'kde-base/kdebase-startkde'; then |
|
|
896 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
897 | echo |
|
|
898 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
899 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
900 | ewarn "With this setting you are unsupported by KDE team." |
|
|
901 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
902 | fi |
|
|
903 | fi |
|
|
904 | fi |
| 656 | } |
905 | } |
| 657 | |
906 | |
| 658 | # @FUNCTION: kde4-base_pkg_postrm |
907 | # @FUNCTION: kde4-base_pkg_postrm |
| 659 | # @DESCRIPTION: |
908 | # @DESCRIPTION: |
| 660 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
909 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 661 | kde4-base_pkg_postrm() { |
910 | kde4-base_pkg_postrm() { |
|
|
911 | debug-print-function ${FUNCNAME} "$@" |
|
|
912 | |
|
|
913 | gnome2_icon_cache_update |
|
|
914 | fdo-mime_desktop_database_update |
|
|
915 | fdo-mime_mime_database_update |
| 662 | buildsycoca |
916 | buildsycoca |
| 663 | } |
917 | } |