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