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