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