| 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.46 2009/10/06 18:02:12 alexxy 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 | # @ECLASS-VARIABLE: WANT_CMAKE |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # Specify if cmake-utils eclass is required. Defaults to true. Please note that |
|
|
19 | # if the variable is set otherwise src_configure/compile/install calls in ebuild |
|
|
20 | # must be overrided (can't use the eclass ones). |
|
|
21 | WANT_CMAKE="${WANT_CMAKE:-true}" |
|
|
22 | if [[ ${WANT_CMAKE} = true ]]; then |
|
|
23 | exports="src_configure src_compile src_test src_install" |
|
|
24 | cmake_eclass="cmake-utils" |
|
|
25 | else |
|
|
26 | exports="" |
|
|
27 | cmake_eclass="" |
|
|
28 | fi |
| 17 | |
29 | |
|
|
30 | inherit base ${cmake_eclass} eutils kde4-functions |
|
|
31 | |
|
|
32 | get_build_type |
|
|
33 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
34 | inherit subversion |
|
|
35 | fi |
|
|
36 | |
|
|
37 | |
| 18 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
38 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${exports} pkg_postinst pkg_postrm |
| 19 | |
39 | |
| 20 | COMMONDEPEND=">=x11-libs/qt-4.3.3:4" |
40 | case ${KDEBASE} in |
| 21 | DEPEND="${DEPEND} ${COMMONDEPEND} |
41 | kde-base) |
| 22 | >=dev-util/cmake-2.4.7-r1 |
42 | HOMEPAGE="http://www.kde.org/" |
|
|
43 | LICENSE="GPL-2" |
|
|
44 | ;; |
|
|
45 | koffice) |
|
|
46 | HOMEPAGE="http://www.koffice.org/" |
|
|
47 | LICENSE="GPL-2" |
|
|
48 | ;; |
|
|
49 | esac |
|
|
50 | |
|
|
51 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
|
|
52 | # @DESCRIPTION: |
|
|
53 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
|
|
54 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
55 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
60 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
61 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
62 | |
|
|
63 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
|
|
64 | # @DESCRIPTION: |
|
|
65 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
|
|
66 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
67 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
|
|
68 | |
|
|
69 | # @ECLASS-VARIABLE: KDE_REQUIRED |
|
|
70 | # @DESCRIPTION: |
|
|
71 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
|
|
72 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
|
|
73 | # If set to always or optional, KDE_MINIMAL may be overriden as well. |
|
|
74 | # Note that for kde-base packages this variable is fixed to 'always'. |
|
|
75 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
|
|
76 | |
|
|
77 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
|
|
78 | if [[ -n ${KDE_MINIMAL} ]]; then |
|
|
79 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
80 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
|
|
81 | done |
|
|
82 | unset slot |
|
|
83 | [[ -z ${KDE_MINIMAL_VALID} ]] && unset KDE_MINIMAL |
|
|
84 | else |
|
|
85 | KDE_MINIMAL_VALID=1 |
|
|
86 | fi |
|
|
87 | |
|
|
88 | # @ECLASS-VARIABLE: KDE_MINIMAL |
|
|
89 | # @DESCRIPTION: |
|
|
90 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
|
|
91 | # version for apps to work. Currently defaults to 4.3 |
|
|
92 | # One may override this variable to raise version requirements. |
|
|
93 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
|
|
94 | # Note that it is fixed to ${SLOT} for kde-base packages. |
|
|
95 | KDE_MINIMAL="${KDE_MINIMAL:-4.3}" |
|
|
96 | |
|
|
97 | # Fallback behaviour (for now) |
|
|
98 | # TODO Remove when tree is clean |
|
|
99 | if [[ -n ${NEED_KDE} ]]; then |
|
|
100 | case ${NEED_KDE} in |
|
|
101 | none) |
|
|
102 | KDE_REQUIRED="never" |
|
|
103 | ;; |
|
|
104 | *) |
|
|
105 | KDE_REQUIRED="always" |
|
|
106 | KDE_MINIMAL="${NEED_KDE}" |
|
|
107 | ;; |
|
|
108 | esac |
|
|
109 | fi |
|
|
110 | |
|
|
111 | # @ECLASS-VARIABLE: QT_DEPEND |
|
|
112 | # @DESCRIPTION: |
|
|
113 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1.. |
|
|
114 | # Currently defaults to 4.5.1 |
|
|
115 | QT_DEPEND="${QT_DEPEND:-4.5.1}" |
|
|
116 | |
|
|
117 | # OpenGL dependencies |
|
|
118 | qtopengldepend=" |
|
|
119 | >=x11-libs/qt-opengl-${QT_DEPEND}:4 |
|
|
120 | " |
|
|
121 | case ${OPENGL_REQUIRED} in |
|
|
122 | always) |
|
|
123 | COMMONDEPEND+=" ${qtopengldepend}" |
|
|
124 | ;; |
|
|
125 | optional) |
|
|
126 | IUSE+=" opengl" |
|
|
127 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
|
|
128 | ;; |
|
|
129 | *) ;; |
|
|
130 | esac |
|
|
131 | unset qtopengldepend |
|
|
132 | |
|
|
133 | # WebKit dependencies |
|
|
134 | case ${KDE_REQUIRED} in |
|
|
135 | always) |
|
|
136 | qtwebkitusedeps="[kde]" |
|
|
137 | ;; |
|
|
138 | optional) |
|
|
139 | qtwebkitusedeps="[kde?]" |
|
|
140 | ;; |
|
|
141 | *) ;; |
|
|
142 | esac |
|
|
143 | qtwebkitdepend=" |
|
|
144 | >=x11-libs/qt-webkit-${QT_DEPEND}:4${qtwebkitusedeps} |
|
|
145 | " |
|
|
146 | unset qtwebkitusedeps |
|
|
147 | case ${WEBKIT_REQUIRED} in |
|
|
148 | always) |
|
|
149 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
150 | ;; |
|
|
151 | optional) |
|
|
152 | IUSE+=" webkit" |
|
|
153 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
154 | ;; |
|
|
155 | *) ;; |
|
|
156 | esac |
|
|
157 | unset qtwebkitdepend |
|
|
158 | |
|
|
159 | # CppUnit dependencies |
|
|
160 | cppuintdepend=" |
|
|
161 | dev-util/cppunit |
|
|
162 | " |
|
|
163 | case ${CPPUNIT_REQUIRED} in |
|
|
164 | always) |
|
|
165 | DEPEND+=" ${cppuintdepend}" |
|
|
166 | ;; |
|
|
167 | optional) |
|
|
168 | IUSE+=" test" |
|
|
169 | DEPEND+=" test? ( ${cppuintdepend} )" |
|
|
170 | ;; |
|
|
171 | *) ;; |
|
|
172 | esac |
|
|
173 | unset cppuintdepend |
|
|
174 | |
|
|
175 | # Setup packages inheriting this eclass |
|
|
176 | case ${KDEBASE} in |
|
|
177 | kde-base) |
|
|
178 | if [[ $BUILD_TYPE = live ]]; then |
|
|
179 | # Disable tests for live ebuilds |
|
|
180 | RESTRICT+=" test" |
|
|
181 | # Live ebuilds in kde-base default to kdeprefix by default |
|
|
182 | IUSE+=" +kdeprefix" |
|
|
183 | else |
|
|
184 | # All other ebuild types default to -kdeprefix as before |
|
|
185 | IUSE+=" kdeprefix" |
|
|
186 | fi |
|
|
187 | # Determine SLOT from PVs |
|
|
188 | case ${PV} in |
|
|
189 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
|
|
190 | 4.4* | 4.3.[6-9]*) SLOT="4.4" ;; |
|
|
191 | 4.3*) SLOT="4.3" ;; |
|
|
192 | 4.2*) SLOT="4.2" ;; |
|
|
193 | 9999*) SLOT="live" ;; # regular live |
|
|
194 | *) die "Unsupported ${PV}" ;; |
|
|
195 | esac |
|
|
196 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
|
|
197 | # packages that will never be mirrored. (As they only will ever be in |
|
|
198 | # the overlay). |
|
|
199 | case ${PV} in |
|
|
200 | *9999* | 4.?.[6-9]?) |
|
|
201 | RESTRICT+=" mirror" |
|
|
202 | ;; |
|
|
203 | esac |
|
|
204 | KDE_MINIMAL="${SLOT}" |
|
|
205 | _kdedir="${SLOT}" |
|
|
206 | _pv="-${PV}:${SLOT}" |
|
|
207 | _pvn="-${PV}" |
|
|
208 | |
|
|
209 | # Block installation of other SLOTS unless kdeprefix |
|
|
210 | RDEPEND+=" $(block_other_slots)" |
|
|
211 | ;; |
|
|
212 | koffice) |
|
|
213 | SLOT="2" |
|
|
214 | _pv="-${KDE_MINIMAL}" |
|
|
215 | _pvn="${_pv}" |
|
|
216 | ;; |
|
|
217 | *) |
|
|
218 | _pv="-${KDE_MINIMAL}" |
|
|
219 | _pvn="${_pv}" |
|
|
220 | ;; |
|
|
221 | |
|
|
222 | esac |
|
|
223 | |
|
|
224 | # KDE dependencies |
|
|
225 | kdecommondepend=" |
|
|
226 | dev-lang/perl |
|
|
227 | >=x11-libs/qt-core-${QT_DEPEND}:4[qt3support,ssl] |
|
|
228 | >=x11-libs/qt-gui-${QT_DEPEND}:4[accessibility,dbus] |
|
|
229 | >=x11-libs/qt-qt3support-${QT_DEPEND}:4[accessibility,kde] |
|
|
230 | >=x11-libs/qt-script-${QT_DEPEND}:4 |
|
|
231 | >=x11-libs/qt-sql-${QT_DEPEND}:4[qt3support] |
|
|
232 | >=x11-libs/qt-svg-${QT_DEPEND}:4 |
|
|
233 | >=x11-libs/qt-test-${QT_DEPEND}:4 |
|
|
234 | !aqua? ( |
|
|
235 | x11-libs/libXext |
|
|
236 | x11-libs/libXt |
|
|
237 | x11-libs/libXxf86vm |
|
|
238 | ) |
|
|
239 | " |
|
|
240 | if [[ ${PN} != kdelibs ]]; then |
|
|
241 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
242 | # libknotificationitem only when SLOT is 4.3 |
|
|
243 | [[ ${PN} != libknotificationitem ]] && [[ ${SLOT} = 4.3 ]] && local libknotificationitem_required=1 |
|
|
244 | kdecommondepend+=" |
|
|
245 | kdeprefix? ( >=kde-base/kdelibs${_pv}[kdeprefix] ) |
|
|
246 | !kdeprefix? ( >=kde-base/kdelibs${_pvn}[-kdeprefix] ) |
|
|
247 | " |
|
|
248 | [[ -n ${libknotificationitem_required} ]] && \ |
|
|
249 | kdecommondepend+=" |
|
|
250 | kdeprefix? ( >=kde-base/libknotificationitem${_pv}[kdeprefix] ) |
|
|
251 | !kdeprefix? ( >=kde-base/libknotificationitem${_pvn}[-kdeprefix] ) |
|
|
252 | " |
|
|
253 | else |
|
|
254 | kdecommondepend+=" |
|
|
255 | >=kde-base/kdelibs${_pv} |
|
|
256 | " |
|
|
257 | fi |
|
|
258 | fi |
|
|
259 | unset _pv _pvn |
|
|
260 | kdedepend=" |
| 23 | dev-util/pkgconfig |
261 | dev-util/pkgconfig |
| 24 | x11-libs/libXt |
262 | " |
| 25 | x11-proto/xf86vidmodeproto" |
263 | case ${KDE_REQUIRED} in |
|
|
264 | always) |
|
|
265 | IUSE+=" aqua" |
|
|
266 | COMMONDEPEND+=" ${kdecommondepend}" |
|
|
267 | DEPEND+=" ${kdedepend}" |
|
|
268 | ;; |
|
|
269 | optional) |
|
|
270 | IUSE+=" aqua kde" |
|
|
271 | COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
|
|
272 | DEPEND+=" kde? ( ${kdedepend} )" |
|
|
273 | ;; |
|
|
274 | *) ;; |
|
|
275 | esac |
|
|
276 | unset kdecommondepend kdedepend |
|
|
277 | |
|
|
278 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
|
|
279 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
|
|
280 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
|
|
281 | |
|
|
282 | # Accumulate dependencies set by this eclass |
|
|
283 | DEPEND+=" ${COMMONDEPEND}" |
| 26 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
284 | RDEPEND+=" ${COMMONDEPEND}" |
| 27 | |
285 | unset COMMONDEPEND |
| 28 | if has test ${IUSE//+}; then |
|
|
| 29 | DEPEND="${DEPEND} |
|
|
| 30 | test? ( dev-util/cppunit )" |
|
|
| 31 | fi |
|
|
| 32 | |
|
|
| 33 | # @ECLASS-VARIABLE: NEED_KDE |
|
|
| 34 | # @DESCRIPTION: |
|
|
| 35 | # 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, |
|
|
| 38 | # it's assumed that the required KDE4 version is the latest, non-live, available. |
|
|
| 39 | # |
|
|
| 40 | # @CODE |
|
|
| 41 | # Acceptable values are: |
|
|
| 42 | # - latest - Use latest version in the portage tree |
|
|
| 43 | # Default for kde-base ebuilds. Banned for ebuilds not part of kde or koffice. |
|
|
| 44 | # - svn - Use svn 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, ... |
|
|
| 49 | # @CODE |
|
|
| 50 | # |
|
|
| 51 | # Note: There is no default NEED_KDE for ebuilds not in kde-base or part of |
|
|
| 52 | # koffice, so you must set it explicitly in the ebuild, in all other cases. |
|
|
| 53 | if [[ -z ${NEED_KDE} ]]; then |
|
|
| 54 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 55 | NEED_KDE="latest" |
|
|
| 56 | else |
|
|
| 57 | die "kde4-base.eclass inherited but NEED_KDE not defined - broken ebuild" |
|
|
| 58 | fi |
|
|
| 59 | fi |
|
|
| 60 | export NEED_KDE |
|
|
| 61 | |
|
|
| 62 | case ${NEED_KDE} in |
|
|
| 63 | latest) |
|
|
| 64 | # Should only be used by 'kde-base'-ebuilds |
|
|
| 65 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
|
|
| 66 | case ${PV} in |
|
|
| 67 | 3.9*) _kdedir="3.9" ;; |
|
|
| 68 | 4*) _kdedir="4.0" ;; |
|
|
| 69 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 70 | esac |
|
|
| 71 | _operator=">=" |
|
|
| 72 | _pv="-${PV}:kde-4" |
|
|
| 73 | else |
|
|
| 74 | _kdedir="4.0" |
|
|
| 75 | _pv=":kde-4" |
|
|
| 76 | fi |
|
|
| 77 | ;; |
|
|
| 78 | svn|9999*|:kde-svn) |
|
|
| 79 | _kdedir="svn" |
|
|
| 80 | _pv=":kde-svn" |
|
|
| 81 | export NEED_KDE="svn" |
|
|
| 82 | ;; |
|
|
| 83 | *:kde-svn) |
|
|
| 84 | _kdedir="svn" |
|
|
| 85 | _operator=">=" |
|
|
| 86 | _pv="-${NEED_KDE}" |
|
|
| 87 | export NEED_KDE="svn" |
|
|
| 88 | ;; |
|
|
| 89 | # The ebuild handles dependencies, KDEDIR, SLOT. |
|
|
| 90 | none) |
|
|
| 91 | : |
|
|
| 92 | ;; |
|
|
| 93 | # NEED_KDE=":${SLOT}" |
|
|
| 94 | :kde-4) |
|
|
| 95 | _kdedir="4.0" |
|
|
| 96 | _pv="${NEED_KDE}" |
|
|
| 97 | ;; |
|
|
| 98 | # NEED_KDE="${PV}:${SLOT}" |
|
|
| 99 | *:kde-4) |
|
|
| 100 | _kdedir="4.0" |
|
|
| 101 | _operator=">=" |
|
|
| 102 | _pv="-${NEED_KDE}" |
|
|
| 103 | ;; |
|
|
| 104 | 3.9*) |
|
|
| 105 | _kdedir="3.9" |
|
|
| 106 | _operator=">=" |
|
|
| 107 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 108 | ;; |
|
|
| 109 | 4*) |
|
|
| 110 | _kdedir="4.0" |
|
|
| 111 | _operator=">=" |
|
|
| 112 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 113 | ;; |
|
|
| 114 | *) die "NEED_KDE=${NEED_KDE} currently not supported." |
|
|
| 115 | ;; |
|
|
| 116 | esac |
|
|
| 117 | |
|
|
| 118 | if [[ ${NEED_KDE} != none ]]; then |
|
|
| 119 | KDEDIR="/usr/kde/${_kdedir}" |
|
|
| 120 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 121 | |
|
|
| 122 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 123 | if [[ ${NEED_KDE} = svn ]]; then |
|
|
| 124 | SLOT="kde-svn" |
|
|
| 125 | else |
|
|
| 126 | SLOT="kde-4" |
|
|
| 127 | fi |
|
|
| 128 | fi |
|
|
| 129 | |
|
|
| 130 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
|
|
| 131 | if [[ ${PN} != "kdelibs" ]]; then |
|
|
| 132 | DEPEND="${DEPEND} |
|
|
| 133 | ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 134 | RDEPEND="${RDEPEND} |
|
|
| 135 | ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 136 | if [[ ${PN} != "kdepimlibs" ]]; then |
|
|
| 137 | DEPEND="${DEPEND} |
|
|
| 138 | ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 139 | RDEPEND="${RDEPEND} |
|
|
| 140 | ${_operator}kde-base/kdepimlibs${_pv}" |
|
|
| 141 | fi |
|
|
| 142 | fi |
|
|
| 143 | |
|
|
| 144 | unset _operator _pv _kdedir |
|
|
| 145 | fi |
|
|
| 146 | |
286 | |
| 147 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
287 | # 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 |
288 | # koffice ebuild, the URI should be set in the ebuild itself |
| 149 | if [[ -n ${KDEBASE} ]]; then |
289 | case ${BUILD_TYPE} in |
|
|
290 | live) |
|
|
291 | # Determine branch URL based on live type |
|
|
292 | local branch_prefix |
|
|
293 | case ${PV} in |
|
|
294 | 9999*) |
|
|
295 | # trunk |
|
|
296 | branch_prefix="trunk/KDE" |
|
|
297 | ;; |
|
|
298 | *) |
|
|
299 | # branch |
|
|
300 | branch_prefix="branches/KDE/${SLOT}" |
|
|
301 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
302 | # @DESCRIPTION |
|
|
303 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
304 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
305 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
306 | ;; |
|
|
307 | esac |
|
|
308 | SRC_URI="" |
|
|
309 | # @ECLASS-VARIABLE: ESVN_MIRROR |
|
|
310 | # @DESCRIPTION: |
|
|
311 | # This variable allows easy overriding of default kde mirror service |
|
|
312 | # (anonsvn) with anything else you might want to use. |
|
|
313 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
|
|
314 | # Split ebuild, or extragear stuff |
| 150 | if [[ -n ${KMNAME} ]]; then |
315 | if [[ -n ${KMNAME} ]]; then |
|
|
316 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
317 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
318 | KMMODULE="${PN}" |
|
|
319 | fi |
|
|
320 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
321 | case ${KMNAME} in |
|
|
322 | kdebase-*) |
|
|
323 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
324 | ;; |
|
|
325 | kdelibs-*) |
|
|
326 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
327 | ;; |
|
|
328 | kdereview) |
|
|
329 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
330 | ;; |
|
|
331 | kdesupport) |
|
|
332 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
333 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
334 | ;; |
|
|
335 | kde*) |
|
|
336 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
337 | ;; |
|
|
338 | extragear*|playground*) |
|
|
339 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
340 | # build packages from same svn location. |
|
|
341 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
342 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
343 | ;; |
|
|
344 | koffice) |
|
|
345 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
346 | ;; |
|
|
347 | *) |
|
|
348 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
349 | ;; |
|
|
350 | esac |
|
|
351 | else |
|
|
352 | # kdelibs, kdepimlibs |
|
|
353 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
354 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
355 | fi |
|
|
356 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
357 | # @DESCRIPTION: |
|
|
358 | # This variable is used for specifying the timeout between svn synces |
|
|
359 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
360 | # Default value is 1 hour. |
|
|
361 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
362 | ;; |
|
|
363 | *) |
|
|
364 | if [[ -n ${KDEBASE} ]]; then |
|
|
365 | if [[ -n ${KMNAME} ]]; then |
|
|
366 | case ${KMNAME} in |
|
|
367 | kdebase-apps) |
|
|
368 | _kmname="kdebase" ;; |
|
|
369 | *) |
| 151 | _kmname=${KMNAME} |
370 | _kmname="${KMNAME}" ;; |
|
|
371 | esac |
|
|
372 | else |
|
|
373 | _kmname=${PN} |
|
|
374 | fi |
|
|
375 | _kmname_pv="${_kmname}-${PV}" |
|
|
376 | if [[ $NEED_KDE != live ]]; then |
|
|
377 | case ${KDEBASE} in |
|
|
378 | kde-base) |
|
|
379 | case ${PV} in |
|
|
380 | 4.3.85 | 4.3.9[0568]) |
|
|
381 | # block for normally packed unstable releases |
|
|
382 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
383 | 4.3.[6-9]*) |
|
|
384 | SRC_URI="http://dev.gentooexperimental.org/~alexxy/kde/${PV}/${_kmname_pv}.tar.lzma" ;; |
|
|
385 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
386 | esac |
|
|
387 | ;; |
|
|
388 | koffice) |
|
|
389 | case ${PV} in |
|
|
390 | 2.0.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
391 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
392 | esac |
|
|
393 | esac |
|
|
394 | fi |
|
|
395 | unset _kmname _kmname_pv |
|
|
396 | fi |
|
|
397 | ;; |
|
|
398 | esac |
|
|
399 | |
|
|
400 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
401 | |
|
|
402 | # @ECLASS-VARIABLE: PREFIX |
|
|
403 | # @DESCRIPTION: |
|
|
404 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
|
|
405 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
|
|
406 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
|
|
407 | |
|
|
408 | # @FUNCTION: kde4-base_pkg_setup |
|
|
409 | # @DESCRIPTION: |
|
|
410 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
|
|
411 | # optional applications link |
|
|
412 | kde4-base_pkg_setup() { |
|
|
413 | debug-print-function ${FUNCNAME} "$@" |
|
|
414 | |
|
|
415 | # QA ebuilds |
|
|
416 | case ${NEED_KDE} in |
|
|
417 | none) ewarn "QA Notice: using deprecated NEED_KDE variable, use KDE_REQUIRED=\"never\" or KDE_REQUIRED=\"optional\" instead. You may want to override KDE_MINIMAL as well (default is KDE_MINIMAL=\"${KDE_MINIMAL}\")." ;; |
|
|
418 | *) [[ -n ${NEED_KDE} ]] && ewarn "QA Notice: using deprecated NEED_KDE variable, use KDE_MINIMAL instead (default is KDE_MINIMAL=\"${KDE_MINIMAL}\")." ;; |
|
|
419 | esac |
|
|
420 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
|
|
421 | |
|
|
422 | # Don't set KDEHOME during compilation, it will cause access violations |
|
|
423 | unset KDEHOME |
|
|
424 | |
|
|
425 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
426 | if use kdeprefix; then |
|
|
427 | KDEDIR="${EROOT}usr/kde/${_kdedir}" |
|
|
428 | else |
|
|
429 | KDEDIR="${EROOT}usr" |
|
|
430 | fi |
|
|
431 | PREFIX="${PREFIX:-${KDEDIR}}" |
| 152 | else |
432 | else |
| 153 | _kmname=${PN} |
433 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
|
|
434 | KDEDIR= |
|
|
435 | local kde_minimal_met |
|
|
436 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
437 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
|
|
438 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
|
|
439 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
|
|
440 | KDEDIR="${EROOT}usr/kde/${slot}" |
|
|
441 | else |
|
|
442 | KDEDIR="${EROOT}usr" |
|
|
443 | fi |
|
|
444 | break; |
| 154 | fi |
445 | fi |
| 155 | _kmname_pv="${_kmname}-${PV}" |
|
|
| 156 | if [[ ${NEED_KDE} != "svn" ]]; then |
|
|
| 157 | case ${KDEBASE} in |
|
|
| 158 | kde-base) |
|
|
| 159 | case ${PV} in |
|
|
| 160 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
|
|
| 161 | esac |
|
|
| 162 | ;; |
|
|
| 163 | koffice) |
|
|
| 164 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
|
|
| 165 | ;; |
|
|
| 166 | esac |
|
|
| 167 | fi |
|
|
| 168 | unset _kmname _kmname_pv |
|
|
| 169 | fi |
|
|
| 170 | |
|
|
| 171 | 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 |
446 | done |
| 181 | unset _x |
447 | unset slot |
| 182 | fi |
|
|
| 183 | |
448 | |
| 184 | debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND ${DEPEND} - after blockers" |
449 | # Bail out if kdelibs required but not found |
| 185 | |
450 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
| 186 | # @ECLASS-VARIABLE: PREFIX |
451 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
| 187 | # @DESCRIPTION: |
|
|
| 188 | # 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 |
|
|
| 190 | # can be superseded by defining PREFIX before inheriting kde4-base. |
|
|
| 191 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 192 | PREFIX=${KDEDIR} |
|
|
| 193 | else |
452 | else |
| 194 | # if PREFIX is not defined we set it to the default value of /usr |
453 | [[ -z ${KDEDIR} ]] && KDEDIR="${EROOT}usr" |
|
|
454 | fi |
|
|
455 | |
| 195 | PREFIX="${PREFIX:-/usr}" |
456 | PREFIX="${PREFIX:-${EROOT}usr}" |
| 196 | fi |
457 | fi |
|
|
458 | # Point pkg-config path to KDE *.pc files |
|
|
459 | export PKG_CONFIG_PATH="${KDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
|
|
460 | # Point to correct QT plugins path |
|
|
461 | QT_PLUGIN_PATH="${KDEDIR}/$(get_libdir)/kde4/plugins/" |
| 197 | |
462 | |
| 198 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - KDEDIR ${KDEDIR} - KDEDIRS ${KDEDIRS}- PREFIX ${PREFIX} - NEED_KDE ${NEED_KDE}" |
463 | # Not needed anymore |
|
|
464 | unset _kdedir |
|
|
465 | } |
| 199 | |
466 | |
| 200 | # @FUNCTION: kde4-base_pkg_setup |
467 | # @FUNCTION: kde4-base_src_unpack |
| 201 | # @DESCRIPTION: |
468 | # @DESCRIPTION: |
| 202 | # Adds flags needed by all of KDE 4 to $QT4_BUILT_WITH_USE_CHECK. Uses |
469 | # This function unpacks the source tarballs for KDE4 applications. |
| 203 | # kde4-functions_check_use from kde4-functions.eclass to print appropriate |
470 | kde4-base_src_unpack() { |
| 204 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
|
|
| 205 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
|
|
| 206 | kde4-base_pkg_setup() { |
|
|
| 207 | debug-print-function $FUNCNAME "$@" |
471 | debug-print-function ${FUNCNAME} "$@" |
| 208 | |
472 | |
| 209 | # KDE4 applications require qt4 compiled with USE="accessibility dbus gif jpeg png qt3support ssl zlib". |
473 | if [[ ${BUILD_TYPE} = live ]]; then |
| 210 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} accessibility dbus gif jpeg png qt3support ssl zlib" |
474 | migrate_store_dir |
|
|
475 | subversion_src_unpack |
|
|
476 | else |
|
|
477 | base_src_unpack |
|
|
478 | fi |
|
|
479 | } |
| 211 | |
480 | |
|
|
481 | # @FUNCTION: kde4-base_src_prepare |
|
|
482 | # @DESCRIPTION: |
|
|
483 | # General pre-configure and pre-compile function for KDE4 applications. |
|
|
484 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
485 | # enable_selected_linguas() and enable_selected_doc_linguas() |
|
|
486 | # in kde4-functions.eclass(5) for further details. |
|
|
487 | kde4-base_src_prepare() { |
|
|
488 | debug-print-function ${FUNCNAME} "$@" |
|
|
489 | |
|
|
490 | # Only enable selected languages, used for KDE extragear apps. |
|
|
491 | if [[ -n ${KDE_LINGUAS} ]]; then |
|
|
492 | enable_selected_linguas |
|
|
493 | fi |
|
|
494 | |
|
|
495 | # Enable/disable handbooks for kde4-base packages |
|
|
496 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
|
|
497 | # kdelibs inherits kde4-base but handle installing the handbook itself |
|
|
498 | if ! has kde4-meta ${INHERITED}; then |
|
|
499 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
|
|
500 | fi |
|
|
501 | |
|
|
502 | [[ ${BUILD_TYPE} = live ]] && subversion_src_prepare |
|
|
503 | base_src_prepare |
|
|
504 | |
|
|
505 | # Save library dependencies |
|
|
506 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
507 | save_library_dependencies |
|
|
508 | fi |
|
|
509 | |
|
|
510 | # Inject library dependencies |
|
|
511 | if [[ -n ${KMLOADLIBS} ]] ; then |
|
|
512 | load_library_dependencies |
|
|
513 | fi |
|
|
514 | } |
|
|
515 | |
|
|
516 | # @FUNCTION: kde4-base_src_configure |
|
|
517 | # @DESCRIPTION: |
|
|
518 | # Function for configuring the build of KDE4 applications. |
|
|
519 | kde4-base_src_configure() { |
|
|
520 | debug-print-function ${FUNCNAME} "$@" |
|
|
521 | |
|
|
522 | # Handle common release builds |
|
|
523 | if ! has debug ${IUSE//+} || ! use debug; then |
|
|
524 | append-cppflags -DQT_NO_DEBUG |
|
|
525 | fi |
|
|
526 | |
|
|
527 | # Build tests in src_test only, where we override this value |
|
|
528 | local cmakeargs="-DKDE4_BUILD_TESTS=OFF" |
|
|
529 | |
|
|
530 | # set "real" debug mode |
| 212 | if has debug ${IUSE//+} && use debug; then |
531 | if has debug ${IUSE//+} && use debug; then |
| 213 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} debug" |
532 | CMAKE_BUILD_TYPE="Debugfull" |
| 214 | fi |
|
|
| 215 | |
|
|
| 216 | if has opengl ${IUSE//+} && use opengl; then |
|
|
| 217 | QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl" |
|
|
| 218 | fi |
|
|
| 219 | |
|
|
| 220 | kde4-functions_check_use |
|
|
| 221 | } |
|
|
| 222 | |
|
|
| 223 | # @FUNCTION: kde4-base_src_unpack |
|
|
| 224 | # @DESCRIPTION: |
|
|
| 225 | # 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() { |
|
|
| 247 | debug-print-function $FUNCNAME "$@" |
|
|
| 248 | |
|
|
| 249 | [[ -z "${KDE_S}" ]] && KDE_S="${S}" |
|
|
| 250 | |
|
|
| 251 | local _patchdir _packages _p |
|
|
| 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 |
533 | fi |
| 272 | [[ -n ${PATCHES} ]] && base_src_unpack autopatch |
|
|
| 273 | else |
|
|
| 274 | # Call base_src_unpack, which unpacks and patches |
|
|
| 275 | # step by step transparently as defined in the ebuild. |
|
|
| 276 | base_src_unpack $* |
|
|
| 277 | fi |
|
|
| 278 | |
534 | |
| 279 | # Updated cmake dir |
535 | # Set distribution name |
| 280 | if [[ -d "${WORKDIR}/cmake" ]] && [[ -d "${KDE_S}/cmake" ]]; then |
536 | [[ ${PN} = kdelibs ]] && cmakeargs+=" -DKDE_DISTRIBUTION_TEXT=Gentoo" |
| 281 | ebegin "Updating cmake/ directory..." |
537 | |
| 282 | rm -rf "${KDE_S}/cmake" || die "Unable to remove old cmake/ directory" |
538 | # Here we set the install prefix |
| 283 | ln -s "${WORKDIR}/cmake" "${KDE_S}/cmake" || die "Unable to symlink the new cmake/ directory" |
539 | cmakeargs+=" -DCMAKE_INSTALL_PREFIX=${PREFIX}" |
| 284 | eend 0 |
540 | |
|
|
541 | # Use colors |
|
|
542 | QTEST_COLORED=1 |
|
|
543 | |
|
|
544 | # Shadow existing /usr installations |
|
|
545 | unset KDEDIRS |
|
|
546 | |
|
|
547 | # Handle kdeprefix-ed KDE |
|
|
548 | if [[ ${KDEDIR} != "${EROOT}usr" ]]; then |
|
|
549 | # Override some environment variables - only when kdeprefix is different, |
|
|
550 | # to not break ccache/distcc |
|
|
551 | PATH="${KDEDIR}/bin:${PATH}" |
|
|
552 | LDPATH="${KDEDIR}/$(get_libdir):${LDPATH}" |
|
|
553 | |
|
|
554 | # Append full RPATH |
|
|
555 | cmakeargs+=" -DCMAKE_SKIP_RPATH=OFF" |
|
|
556 | |
|
|
557 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
|
|
558 | # when more are present |
|
|
559 | cmakeargs+=" -DCMAKE_SYSTEM_PREFIX_PATH=${KDEDIR}" |
| 285 | fi |
560 | fi |
|
|
561 | |
|
|
562 | # Handle kdeprefix in application itself |
|
|
563 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
|
|
564 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
565 | cmakeargs+=" -DSYSCONF_INSTALL_DIR=${EROOT}etc" |
|
|
566 | fi |
|
|
567 | |
|
|
568 | mycmakeargs="${cmakeargs} ${mycmakeargs}" |
|
|
569 | |
|
|
570 | cmake-utils_src_configure |
| 286 | } |
571 | } |
| 287 | |
572 | |
| 288 | # @FUNCTION: kde4-base_src_compile |
573 | # @FUNCTION: kde4-base_src_compile |
| 289 | # @DESCRIPTION: |
574 | # @DESCRIPTION: |
| 290 | # General function for compiling KDE4 applications. |
575 | # General function for compiling KDE4 applications. |
| 291 | kde4-base_src_compile() { |
576 | kde4-base_src_compile() { |
| 292 | debug-print-function ${FUNCNAME} "$@" |
577 | debug-print-function ${FUNCNAME} "$@" |
| 293 | |
578 | |
| 294 | kde4-base_src_configure |
|
|
| 295 | 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 | } |
|
|
| 334 | |
|
|
| 335 | # @FUNCTION: kde4-base_src_make |
|
|
| 336 | # @DESCRIPTION: |
|
|
| 337 | # Function for building KDE4 applications. |
|
|
| 338 | # Options are passed to cmake-utils_src_make. |
|
|
| 339 | kde4-base_src_make() { |
|
|
| 340 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 341 | |
|
|
| 342 | cmake-utils_src_make "$@" |
579 | cmake-utils_src_compile "$@" |
| 343 | } |
580 | } |
| 344 | |
581 | |
| 345 | # @FUNCTION: kde4-base_src_test |
582 | # @FUNCTION: kde4-base_src_test |
| 346 | # @DESCRIPTION: |
583 | # @DESCRIPTION: |
| 347 | # Function for testing KDE4 applications. |
584 | # Function for testing KDE4 applications. |
| 348 | kde4-base_src_test() { |
585 | kde4-base_src_test() { |
| 349 | debug-print-function ${FUNCNAME} "$@" |
586 | debug-print-function ${FUNCNAME} "$@" |
| 350 | |
587 | |
| 351 | # Override this value, set in kde4-base_src_configure() |
588 | # Override this value, set in kde4-base_src_configure() |
| 352 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=ON" |
589 | mycmakeargs+=" -DKDE4_BUILD_TESTS=ON" |
| 353 | cmake-utils_src_compile |
590 | cmake-utils_src_configure |
|
|
591 | kde4-base_src_compile |
| 354 | |
592 | |
| 355 | cmake-utils_src_test |
593 | cmake-utils_src_test |
| 356 | } |
594 | } |
| 357 | |
595 | |
| 358 | # @FUNCTION: kde4-base_src_install |
596 | # @FUNCTION: kde4-base_src_install |
| 359 | # @DESCRIPTION: |
597 | # @DESCRIPTION: |
| 360 | # Function for installing KDE4 applications. |
598 | # Function for installing KDE4 applications. |
| 361 | kde4-base_src_install() { |
599 | kde4-base_src_install() { |
| 362 | debug-print-function ${FUNCNAME} "$@" |
600 | debug-print-function ${FUNCNAME} "$@" |
| 363 | |
601 | |
|
|
602 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
603 | install_library_dependencies |
|
|
604 | fi |
|
|
605 | |
| 364 | kde4-base_src_make_doc |
606 | kde4-base_src_make_doc |
| 365 | cmake-utils_src_install |
607 | cmake-utils_src_install |
| 366 | } |
608 | } |
| 367 | |
609 | |
| 368 | # @FUNCTION: kde4-base_src_make_doc |
610 | # @FUNCTION: kde4-base_src_make_doc |
| … | |
… | |
| 371 | kde4-base_src_make_doc() { |
613 | kde4-base_src_make_doc() { |
| 372 | debug-print-function ${FUNCNAME} "$@" |
614 | debug-print-function ${FUNCNAME} "$@" |
| 373 | |
615 | |
| 374 | local doc |
616 | local doc |
| 375 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
617 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
| 376 | [[ -s $doc ]] && dodoc ${doc} |
618 | [[ -s ${doc} ]] && dodoc ${doc} |
| 377 | done |
619 | done |
| 378 | |
620 | |
| 379 | if [[ -z ${KMNAME} ]]; then |
621 | if [[ -z ${KMNAME} ]]; then |
| 380 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
622 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
| 381 | if [[ -s $doc ]]; then |
623 | if [[ -s ${doc} ]]; then |
| 382 | local doc_complete=${doc} |
624 | local doc_complete=${doc} |
| 383 | doc="${doc#*/}" |
625 | doc="${doc#*/}" |
| 384 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
626 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
| 385 | fi |
627 | fi |
| 386 | done |
628 | done |
| 387 | fi |
629 | fi |
| 388 | |
630 | |
| 389 | if [[ -n ${KDEBASE} && -d "${D}"/usr/share/doc/${PF} ]]; then |
631 | if [[ -n ${KDEBASE} ]] && [[ -d "${D}${EROOT}usr/share/doc/${PF}" ]]; then |
| 390 | # work around bug #97196 |
632 | # work around bug #97196 |
| 391 | dodir /usr/share/doc/kde && \ |
633 | dodir /usr/share/doc/KDE4 && \ |
| 392 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
634 | cp -r "${D}${EROOT}usr/share/doc/${PF}" "${D}${EROOT}usr/share/doc/KDE4/" || \ |
| 393 | die "Failed to move docs to kde/ failed." |
635 | die "Failed to move docs to KDE4/." |
|
|
636 | rm -rf "${D}${EROOT}usr/share/doc/${PF}" |
| 394 | fi |
637 | fi |
| 395 | } |
638 | } |
| 396 | |
639 | |
| 397 | # @FUNCTION: kde4-base_pkg_postinst |
640 | # @FUNCTION: kde4-base_pkg_postinst |
| 398 | # @DESCRIPTION: |
641 | # @DESCRIPTION: |
| 399 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
642 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 400 | kde4-base_pkg_postinst() { |
643 | kde4-base_pkg_postinst() { |
|
|
644 | debug-print-function ${FUNCNAME} "$@" |
|
|
645 | |
| 401 | buildsycoca |
646 | buildsycoca |
|
|
647 | |
|
|
648 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
649 | echo |
|
|
650 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
651 | einfo "Use it at your own risk." |
|
|
652 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
653 | echo |
|
|
654 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
655 | # warning about kdeprefix for non-live users |
|
|
656 | echo |
|
|
657 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
658 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
659 | ewarn "with KDE update strategies." |
|
|
660 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
661 | ewarn "take responsibilities for dead kittens." |
|
|
662 | echo |
|
|
663 | fi |
| 402 | } |
664 | } |
| 403 | |
665 | |
| 404 | # @FUNCTION: kde4-base_pkg_postrm |
666 | # @FUNCTION: kde4-base_pkg_postrm |
| 405 | # @DESCRIPTION: |
667 | # @DESCRIPTION: |
| 406 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
668 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
| 407 | kde4-base_pkg_postrm() { |
669 | kde4-base_pkg_postrm() { |
|
|
670 | debug-print-function ${FUNCNAME} "$@" |
|
|
671 | |
| 408 | buildsycoca |
672 | buildsycoca |
| 409 | } |
673 | } |