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