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