| 1 | # Copyright 2007-2008 Gentoo Foundation |
1 | # Copyright 1999-2010 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.86 2011/04/06 08:53:48 dilfridge 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 | # @ECLASS-VARIABLE: VIRTUALX_REQUIRED |
|
|
17 | # @DESCRIPTION: |
|
|
18 | # For proper description see virtualx.eclass manpage. |
|
|
19 | # Here we redefine default value to be manual, if your package needs virtualx |
|
|
20 | # for tests you should proceed with setting VIRTUALX_REQUIRED=test. |
|
|
21 | : ${VIRTUALX_REQUIRED:=manual} |
| 18 | |
22 | |
| 19 | case "${EAPI}" in |
23 | inherit kde4-functions base virtualx eutils |
| 20 | 2) |
|
|
| 21 | EXPORT_FUNCTIONS pkg_setup src_unpack 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 | get_build_type |
| 29 | kde4-base_set_qt_dependencies() { |
26 | if [[ ${BUILD_TYPE} = live ]]; then |
| 30 | local qt qtcore qtgui qt3support qtdepend qtopengldepend |
27 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
28 | inherit git |
|
|
29 | else |
|
|
30 | inherit subversion |
|
|
31 | fi |
|
|
32 | fi |
| 31 | |
33 | |
| 32 | # use dependencies |
34 | # @ECLASS-VARIABLE: CMAKE_REQUIRED |
|
|
35 | # @DESCRIPTION: |
|
|
36 | # Specify if cmake buildsystem is being used. Possible values are 'always' and 'never'. |
|
|
37 | # Please note that if it's set to 'never' you need to explicitly override following phases: |
|
|
38 | # src_configure, src_compile, src_test and src_install. |
|
|
39 | # Defaults to 'always'. |
|
|
40 | : ${CMAKE_REQUIRED:=always} |
|
|
41 | if [[ ${CMAKE_REQUIRED} = always ]]; then |
|
|
42 | buildsystem_eclass="cmake-utils" |
|
|
43 | export_fns="src_configure src_compile src_test src_install" |
|
|
44 | fi |
|
|
45 | |
|
|
46 | # Verify KDE_MINIMAL (display QA notice in pkg_setup, still we need to fix it here) |
|
|
47 | if [[ -n ${KDE_MINIMAL} ]]; then |
|
|
48 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
49 | [[ ${KDE_MINIMAL} = ${slot} ]] && KDE_MINIMAL_VALID=1 && break |
|
|
50 | done |
|
|
51 | unset slot |
|
|
52 | [[ -z ${KDE_MINIMAL_VALID} ]] && unset KDE_MINIMAL |
|
|
53 | else |
|
|
54 | KDE_MINIMAL_VALID=1 |
|
|
55 | fi |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: KDE_MINIMAL |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # This variable is used when KDE_REQUIRED is set, to specify required KDE minimal |
|
|
60 | # version for apps to work. Currently defaults to 4.4 |
|
|
61 | # One may override this variable to raise version requirements. |
|
|
62 | # For possible values look at KDE_SLOTS and KDE_LIVE_SLOTS variables. |
|
|
63 | # Note that it is fixed to ${SLOT} for kde-base packages. |
|
|
64 | KDE_MINIMAL="${KDE_MINIMAL:-4.4}" |
|
|
65 | |
|
|
66 | # Set slot for packages in kde-base, koffice and kdevelop |
|
|
67 | case ${KDEBASE} in |
|
|
68 | kde-base) |
|
|
69 | # Determine SLOT from PVs |
| 33 | case "${EAPI}" in |
70 | case ${PV} in |
| 34 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
71 | *.9999*) SLOT="${PV/.9999*/}" ;; # stable live |
| 35 | |
72 | 4.6* | 4.5.[6-9][0-9]*) SLOT="4.6" ;; |
| 36 | qt="[" |
73 | 4.5* | 4.4.[6-9][0-9]*) SLOT="4.5" ;; |
| 37 | case "${OPENGL_REQUIRED}" in |
74 | 4.4* | 4.3.[6-9][0-9]*) SLOT="4.4" ;; |
| 38 | always) |
75 | 9999*) SLOT="live" ;; # regular live |
| 39 | qt="${qt}opengl," |
76 | *) die "Unsupported ${PV}" ;; |
| 40 | ;; |
|
|
| 41 | optional) |
|
|
| 42 | qt="${qt}opengl?," |
|
|
| 43 | ;; |
|
|
| 44 | esac |
77 | esac |
| 45 | qt="${qt}accessibility,dbus,gif,jpeg,png,qt3support,ssl,zlib]" |
78 | KDE_MINIMAL="${SLOT}" |
| 46 | qtcore="[qt3support,ssl]" |
|
|
| 47 | qtgui="[accessibility,dbus]" |
|
|
| 48 | qt3support="[accessibility]" |
|
|
| 49 | ;; |
79 | ;; |
|
|
80 | koffice) |
|
|
81 | SLOT="2" |
|
|
82 | ;; |
|
|
83 | kdevelop) |
|
|
84 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
85 | # @ECLASS-VARIABLE: KDEVELOP_VERSION |
|
|
86 | # @DESCRIPTION: |
|
|
87 | # Specifies KDevelop version. Default is 4.0.0 for tagged packages and 9999 for live packages. |
|
|
88 | # Applies to KDEBASE=kdevelop only. |
|
|
89 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-9999}" |
|
|
90 | # @ECLASS-VARIABLE: KDEVPLATFORM_VERSION |
|
|
91 | # @DESCRIPTION: |
|
|
92 | # Specifies KDevplatform version. Default is 1.0.0 for tagged packages and 9999 for live packages. |
|
|
93 | # Applies to KDEBASE=kdevelop only. |
|
|
94 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-9999}" |
|
|
95 | else |
|
|
96 | case ${PN} in |
|
|
97 | kdevelop|quanta) |
|
|
98 | KDEVELOP_VERSION=${PV} |
|
|
99 | KDEVPLATFORM_VERSION="$(($(get_major_version)-3)).$(get_after_major_version)" |
|
|
100 | ;; |
|
|
101 | kdevplatform) |
|
|
102 | KDEVELOP_VERSION="$(($(get_major_version)+3)).$(get_after_major_version)" |
|
|
103 | KDEVPLATFORM_VERSION=${PV} |
|
|
104 | ;; |
|
|
105 | *) |
|
|
106 | KDEVELOP_VERSION="${KDEVELOP_VERSION:-4.0.0}" |
|
|
107 | KDEVPLATFORM_VERSION="${KDEVPLATFORM_VERSION:-1.0.0}" |
|
|
108 | esac |
|
|
109 | fi |
|
|
110 | SLOT="4" |
|
|
111 | ;; |
| 50 | esac |
112 | esac |
| 51 | |
113 | |
| 52 | # split qt |
114 | slot_is_at_least 4.5 ${KDE_MINIMAL} && CMAKE_MIN_VERSION="2.8.1" |
| 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 | |
115 | |
| 62 | # allow monolithic qt for PV < 4.1 |
116 | inherit ${buildsystem_eclass} |
| 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 | |
117 | |
| 71 | # opengl dependencies |
118 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare ${export_fns} pkg_postinst pkg_postrm |
| 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 | |
119 | |
| 87 | COMMONDEPEND="${COMMONDEPEND} ${qtdepend} !x11-libs/qt-phonon" |
120 | unset buildsystem_eclass |
| 88 | } |
121 | unset export_fns |
| 89 | kde4-base_set_qt_dependencies |
|
|
| 90 | |
122 | |
| 91 | # Set the cmake dependencies |
123 | # @ECLASS-VARIABLE: DECLARATIVE_REQUIRED |
| 92 | case "${PV}" in |
124 | # @DESCRIPTION: |
| 93 | 9999*) |
125 | # Is qt-declarative required? Possible values are 'always', 'optional' and 'never'. |
| 94 | CMAKEDEPEND=">=dev-util/cmake-2.6" |
126 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 95 | ;; |
127 | DECLARATIVE_REQUIRED="${DECLARATIVE_REQUIRED:-never}" |
| 96 | *) |
|
|
| 97 | CMAKEDEPEND=">=dev-util/cmake-2.4.7-r1" |
|
|
| 98 | ;; |
|
|
| 99 | esac |
|
|
| 100 | |
128 | |
| 101 | # Set the common dependencies |
129 | # @ECLASS-VARIABLE: QTHELP_REQUIRED |
| 102 | DEPEND="${DEPEND} ${COMMONDEPEND} ${CMAKEDEPEND} |
130 | # @DESCRIPTION: |
| 103 | dev-util/pkgconfig |
131 | # Is qt-assistant required? Possible values are 'always', 'optional' and 'never'. |
| 104 | kde-base/automoc |
132 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 105 | x11-libs/libXt |
133 | QTHELP_REQUIRED="${QTHELP_REQUIRED:-never}" |
| 106 | x11-proto/xf86vidmodeproto" |
|
|
| 107 | RDEPEND="${RDEPEND} ${COMMONDEPEND}" |
|
|
| 108 | |
|
|
| 109 | # Add the kdeprefix use flag |
|
|
| 110 | case "${EAPI}" in |
|
|
| 111 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 112 | IUSE="${IUSE} kdeprefix" |
|
|
| 113 | ;; |
|
|
| 114 | esac |
|
|
| 115 | |
134 | |
| 116 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
135 | # @ECLASS-VARIABLE: OPENGL_REQUIRED |
| 117 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 118 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
137 | # Is qt-opengl required? Possible values are 'always', 'optional' and 'never'. |
| 119 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
138 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 120 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
139 | OPENGL_REQUIRED="${OPENGL_REQUIRED:-never}" |
| 121 | |
140 | |
|
|
141 | # @ECLASS-VARIABLE: MULTIMEDIA_REQUIRED |
|
|
142 | # @DESCRIPTION: |
|
|
143 | # Is qt-multimedia required? Possible values are 'always', 'optional' and 'never'. |
|
|
144 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
145 | MULTIMEDIA_REQUIRED="${MULTIMEDIA_REQUIRED:-never}" |
|
|
146 | |
|
|
147 | # @ECLASS-VARIABLE: WEBKIT_REQUIRED |
|
|
148 | # @DESCRIPTION: |
|
|
149 | # Is qt-webkit requred? Possible values are 'always', 'optional' and 'never'. |
|
|
150 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
151 | WEBKIT_REQUIRED="${WEBKIT_REQUIRED:-never}" |
|
|
152 | |
| 122 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
153 | # @ECLASS-VARIABLE: CPPUNIT_REQUIRED |
| 123 | # @DESCRIPTION: |
154 | # @DESCRIPTION: |
| 124 | # Is cppunit required for tests? Possible values are 'always', 'optional' and 'never'. |
155 | # 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'. |
156 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
| 126 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
157 | CPPUNIT_REQUIRED="${CPPUNIT_REQUIRED:-never}" |
| 127 | |
158 | |
| 128 | case "${CPPUNIT_REQUIRED}" in |
|
|
| 129 | always) |
|
|
| 130 | DEPEND="${DEPEND} dev-util/cppunit" |
|
|
| 131 | ;; |
|
|
| 132 | optional) |
|
|
| 133 | IUSE="${IUSE} test" |
|
|
| 134 | DEPEND="${DEPEND} |
|
|
| 135 | test? ( dev-util/cppunit )" |
|
|
| 136 | ;; |
|
|
| 137 | *) |
|
|
| 138 | CPPUNIT_REQUIRED="never" |
|
|
| 139 | ;; |
|
|
| 140 | esac |
|
|
| 141 | |
|
|
| 142 | # @ECLASS-VARIABLE: NEED_KDE |
159 | # @ECLASS-VARIABLE: KDE_REQUIRED |
| 143 | # @DESCRIPTION: |
160 | # @DESCRIPTION: |
| 144 | # This variable sets the version of KDE4 which will be used by the eclass. |
161 | # Is kde required? Possible values are 'always', 'optional' and 'never'. |
| 145 | # This variable must be set by the ebuild, for all categories except for "kde-base". |
162 | # This variable must be set before inheriting any eclasses. Defaults to 'always' |
| 146 | # For kde-base packages, if it is not set by the ebuild, |
163 | # If set to 'always' or 'optional', KDE_MINIMAL may be overriden as well. |
| 147 | # it's assumed that the required KDE4 version is the latest, non-live, available. |
164 | # Note that for kde-base packages this variable is fixed to 'always'. |
| 148 | # |
165 | KDE_REQUIRED="${KDE_REQUIRED:-always}" |
| 149 | # @CODE |
|
|
| 150 | # Acceptable values are: |
|
|
| 151 | # - latest - Use latest version in the portage tree |
|
|
| 152 | # Default for kde-base ebuilds. Banned for ebuilds not part of kde or koffice. |
|
|
| 153 | # - svn - Use svn 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, ... |
|
|
| 158 | # @CODE |
|
|
| 159 | # |
|
|
| 160 | # Note: There is no default NEED_KDE for ebuilds not in kde-base or part of |
|
|
| 161 | # koffice, so you must set it explicitly in the ebuild, in all other cases. |
|
|
| 162 | if [[ -z ${NEED_KDE} ]]; then |
|
|
| 163 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 164 | NEED_KDE="latest" |
|
|
| 165 | else |
|
|
| 166 | die "kde4-base.eclass inherited but NEED_KDE not defined - broken ebuild" |
|
|
| 167 | fi |
|
|
| 168 | fi |
|
|
| 169 | export NEED_KDE |
|
|
| 170 | |
166 | |
|
|
167 | # @ECLASS-VARIABLE: KDE_HANDBOOK |
|
|
168 | # @DESCRIPTION: |
|
|
169 | # Set to enable handbook in application. Possible values are 'always', 'optional' |
|
|
170 | # (handbook USE flag) and 'never'. |
|
|
171 | # This variable must be set before inheriting any eclasses. Defaults to 'never'. |
|
|
172 | # It adds default handbook dirs for kde-base packages to KMEXTRA and in any case it |
|
|
173 | # ensures buildtime and runtime dependencies. |
|
|
174 | KDE_HANDBOOK="${KDE_HANDBOOK:-never}" |
|
|
175 | |
|
|
176 | # Setup packages inheriting this eclass |
| 171 | case ${NEED_KDE} in |
177 | case ${KDEBASE} in |
| 172 | latest) |
178 | kde-base) |
| 173 | # Should only be used by 'kde-base'-ebuilds |
179 | HOMEPAGE="http://www.kde.org/" |
| 174 | if [[ "${KDEBASE}" == "kde-base" ]]; then |
180 | LICENSE="GPL-2" |
| 175 | case ${PV} in |
181 | if [[ $BUILD_TYPE = live ]]; then |
| 176 | 4.1*| 4.0.9* | 4.0.8*) |
182 | # Disable tests for live ebuilds |
| 177 | _kdedir="4.1" |
183 | RESTRICT+=" test" |
| 178 | _pv="-${PV}:4.1" ;; |
184 | # Live ebuilds in kde-base default to kdeprefix by default |
| 179 | 4.0*) |
185 | IUSE+=" +kdeprefix" |
| 180 | _kdedir="4.0" |
|
|
| 181 | _pv="-${PV}:kde-4" ;; |
|
|
| 182 | 3.9*) |
|
|
| 183 | _kdedir="3.9" |
|
|
| 184 | _pv="-${PV}:kde-4" ;; |
|
|
| 185 | *) |
|
|
| 186 | die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 187 | esac |
|
|
| 188 | _operator=">=" |
|
|
| 189 | else |
186 | else |
|
|
187 | # All other ebuild types default to -kdeprefix as before |
|
|
188 | IUSE+=" kdeprefix" |
|
|
189 | fi |
|
|
190 | # This code is to prevent portage from searching GENTOO_MIRRORS for |
|
|
191 | # packages that will never be mirrored. (As they only will ever be in |
|
|
192 | # the overlay). |
| 190 | case ${PV} in |
193 | case ${PV} in |
| 191 | 4.1 | 4.0.9* | 4.0.8*) _kdedir="4.1" ;; |
194 | *9999* | 4.?.[6-9]?) |
| 192 | 4.0*) _kdedir="4.0" ;; |
195 | RESTRICT+=" mirror" |
| 193 | 3.9*) _kdedir="3.9" ;; |
|
|
| 194 | *) die "NEED_KDE=latest not supported for PV=${PV}" ;; |
|
|
| 195 | esac |
|
|
| 196 | fi |
|
|
| 197 | ;; |
|
|
| 198 | |
|
|
| 199 | # NEED_KDE=":${SLOT}" |
|
|
| 200 | :kde-svn) |
|
|
| 201 | _kdedir="svn" |
|
|
| 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=">=" |
|
|
| 218 | _pv="-${NEED_KDE}" |
|
|
| 219 | export NEED_KDE="svn" |
|
|
| 220 | ;; |
|
|
| 221 | *:4.1) |
|
|
| 222 | _kdedir="4.1" |
|
|
| 223 | _operator=">=" |
|
|
| 224 | _pv="-${NEED_KDE}" |
|
|
| 225 | ;; |
|
|
| 226 | *:kde-4) |
|
|
| 227 | _kdedir="4.0" |
|
|
| 228 | _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 | ;; |
|
|
| 239 | 4.1 | 4.0.9* | 4.0.8*) |
|
|
| 240 | _kdedir="4.1" |
|
|
| 241 | _operator=">=" |
|
|
| 242 | _pv="-${NEED_KDE}:4.1" |
|
|
| 243 | ;; |
|
|
| 244 | 4.0* | 4) |
|
|
| 245 | _kdedir="4.0" |
|
|
| 246 | _operator=">=" |
|
|
| 247 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 248 | ;; |
|
|
| 249 | 3.9*) |
|
|
| 250 | _kdedir="3.9" |
|
|
| 251 | _operator=">=" |
|
|
| 252 | _pv="-${NEED_KDE}:kde-4" |
|
|
| 253 | ;; |
|
|
| 254 | |
|
|
| 255 | # The ebuild handles dependencies, KDEDIR, SLOT. |
|
|
| 256 | none) |
|
|
| 257 | : |
|
|
| 258 | ;; |
|
|
| 259 | |
|
|
| 260 | *) |
|
|
| 261 | die "NEED_KDE=${NEED_KDE} currently not supported." |
|
|
| 262 | ;; |
|
|
| 263 | esac |
|
|
| 264 | |
|
|
| 265 | if [[ ${NEED_KDE} != none ]]; then |
|
|
| 266 | |
|
|
| 267 | #Set the SLOT |
|
|
| 268 | if [[ -n ${KDEBASE} ]]; then |
|
|
| 269 | if [[ ${NEED_KDE} = svn ]]; then |
|
|
| 270 | SLOT="kde-svn" |
|
|
| 271 | else |
|
|
| 272 | case ${PV} in |
|
|
| 273 | 4.1* | 4.0.9* | 4.0.8*) SLOT="4.1" ;; |
|
|
| 274 | *) SLOT="kde-4" ;; |
|
|
| 275 | esac |
|
|
| 276 | fi |
|
|
| 277 | fi |
|
|
| 278 | |
|
|
| 279 | # Block install 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 |
|
|
| 283 | # block non kdeprefix ${PN} on other slots |
|
|
| 284 | if [[ ${SLOT} != ${KDE_SLOT} ]]; then |
|
|
| 285 | DEPEND="${DEPEND} |
|
|
| 286 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
| 287 | RDEPEND="${RDEPEND} |
|
|
| 288 | !kdeprefix? ( !kde-base/${PN}:${KDE_SLOT}[-kdeprefix] )" |
|
|
| 289 | fi |
|
|
| 290 | done |
|
|
| 291 | ;; |
|
|
| 292 | esac |
|
|
| 293 | |
|
|
| 294 | # We only need to add the dependencies if ${PN} is not "kdelibs" or "kdepimlibs" |
|
|
| 295 | if [[ ${PN} != "kdelibs" ]]; then |
|
|
| 296 | case "${EAPI}" in |
|
|
| 297 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 298 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
|
|
| 299 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}[kdeprefix=]" |
|
|
| 300 | ;; |
|
|
| 301 | *) |
|
|
| 302 | DEPEND="${DEPEND} ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 303 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdelibs${_pv}" |
|
|
| 304 | ;; |
196 | ;; |
| 305 | esac |
197 | esac |
| 306 | if [[ ${PN} != "kdepimlibs" ]]; then |
198 | # Block installation of other SLOTS unless kdeprefix |
| 307 | case "${EAPI}" in |
199 | RDEPEND+=" $(block_other_slots)" |
| 308 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
200 | ;; |
| 309 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
201 | koffice) |
| 310 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}[kdeprefix=]" |
202 | HOMEPAGE="http://www.koffice.org/" |
| 311 | ;; |
203 | LICENSE="GPL-2" |
| 312 | *) |
204 | ;; |
| 313 | DEPEND="${DEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
205 | kdevelop) |
| 314 | RDEPEND="${RDEPEND} ${_operator}kde-base/kdepimlibs${_pv}" |
206 | HOMEPAGE="http://www.kdevelop.org/" |
| 315 | esac |
207 | LICENSE="GPL-2" |
| 316 | fi |
208 | ;; |
| 317 | fi |
209 | esac |
| 318 | |
210 | |
| 319 | unset _operator _pv |
211 | # @ECLASS-VARIABLE: QT_MINIMAL |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Determine version of qt we enforce as minimal for the package. 4.4.0 4.5.1... |
|
|
214 | # 4.6.0 for 4.4, 4.6.3 for 4.5, and 4.7.0 for 4.6 and later |
|
|
215 | if slot_is_at_least 4.6 "${KDE_MINIMAL}"; then |
|
|
216 | QT_MINIMAL="${QT_MINIMAL:-4.7.0}" |
|
|
217 | elif slot_is_at_least 4.5 "${KDE_MINIMAL}"; then |
|
|
218 | QT_MINIMAL="${QT_MINIMAL:-4.6.3}" |
|
|
219 | else |
|
|
220 | QT_MINIMAL="${QT_MINIMAL:-4.6.0}" |
| 320 | fi |
221 | fi |
|
|
222 | |
|
|
223 | # Declarative dependencies |
|
|
224 | qtdeclarativedepend=" |
|
|
225 | >=x11-libs/qt-declarative-${QT_MINIMAL}:4 |
|
|
226 | " |
|
|
227 | case ${DECLARATIVE_REQUIRED} in |
|
|
228 | always) |
|
|
229 | COMMONDEPEND+=" ${qtdeclarativedepend}" |
|
|
230 | ;; |
|
|
231 | optional) |
|
|
232 | IUSE+=" declarative" |
|
|
233 | COMMONDEPEND+=" declarative? ( ${qtdeclarativedepend} )" |
|
|
234 | ;; |
|
|
235 | *) ;; |
|
|
236 | esac |
|
|
237 | unset qtdeclarativedepend |
|
|
238 | |
|
|
239 | # QtHelp dependencies |
|
|
240 | qthelpdepend=" |
|
|
241 | >=x11-libs/qt-assistant-${QT_MINIMAL}:4 |
|
|
242 | " |
|
|
243 | case ${QTHELP_REQUIRED} in |
|
|
244 | always) |
|
|
245 | COMMONDEPEND+=" ${qthelpdepend}" |
|
|
246 | ;; |
|
|
247 | optional) |
|
|
248 | IUSE+=" qthelp" |
|
|
249 | COMMONDEPEND+=" qthelp? ( ${qthelpdepend} )" |
|
|
250 | ;; |
|
|
251 | esac |
|
|
252 | unset qthelpdepend |
|
|
253 | |
|
|
254 | # OpenGL dependencies |
|
|
255 | qtopengldepend=" |
|
|
256 | >=x11-libs/qt-opengl-${QT_MINIMAL}:4 |
|
|
257 | " |
|
|
258 | case ${OPENGL_REQUIRED} in |
|
|
259 | always) |
|
|
260 | COMMONDEPEND+=" ${qtopengldepend}" |
|
|
261 | ;; |
|
|
262 | optional) |
|
|
263 | IUSE+=" opengl" |
|
|
264 | COMMONDEPEND+=" opengl? ( ${qtopengldepend} )" |
|
|
265 | ;; |
|
|
266 | *) ;; |
|
|
267 | esac |
|
|
268 | unset qtopengldepend |
|
|
269 | |
|
|
270 | # MultiMedia dependencies |
|
|
271 | qtmultimediadepend=" |
|
|
272 | >=x11-libs/qt-multimedia-${QT_MINIMAL}:4 |
|
|
273 | " |
|
|
274 | case ${MULTIMEDIA_REQUIRED} in |
|
|
275 | always) |
|
|
276 | COMMONDEPEND+=" ${qtmultimediadepend}" |
|
|
277 | ;; |
|
|
278 | optional) |
|
|
279 | IUSE+=" multimedia" |
|
|
280 | COMMONDEPEND+=" multimedia? ( ${qtmultimediadepend} )" |
|
|
281 | ;; |
|
|
282 | *) ;; |
|
|
283 | esac |
|
|
284 | unset qtmultimediadepend |
|
|
285 | |
|
|
286 | # WebKit dependencies |
|
|
287 | case ${KDE_REQUIRED} in |
|
|
288 | always) |
|
|
289 | qtwebkitusedeps="[kde]" |
|
|
290 | ;; |
|
|
291 | optional) |
|
|
292 | qtwebkitusedeps="[kde?]" |
|
|
293 | ;; |
|
|
294 | *) ;; |
|
|
295 | esac |
|
|
296 | qtwebkitdepend=" |
|
|
297 | >=x11-libs/qt-webkit-${QT_MINIMAL}:4${qtwebkitusedeps} |
|
|
298 | " |
|
|
299 | unset qtwebkitusedeps |
|
|
300 | case ${WEBKIT_REQUIRED} in |
|
|
301 | always) |
|
|
302 | COMMONDEPEND+=" ${qtwebkitdepend}" |
|
|
303 | ;; |
|
|
304 | optional) |
|
|
305 | IUSE+=" webkit" |
|
|
306 | COMMONDEPEND+=" webkit? ( ${qtwebkitdepend} )" |
|
|
307 | ;; |
|
|
308 | *) ;; |
|
|
309 | esac |
|
|
310 | unset qtwebkitdepend |
|
|
311 | |
|
|
312 | # CppUnit dependencies |
|
|
313 | cppuintdepend=" |
|
|
314 | dev-util/cppunit |
|
|
315 | " |
|
|
316 | case ${CPPUNIT_REQUIRED} in |
|
|
317 | always) |
|
|
318 | DEPEND+=" ${cppuintdepend}" |
|
|
319 | ;; |
|
|
320 | optional) |
|
|
321 | IUSE+=" test" |
|
|
322 | DEPEND+=" test? ( ${cppuintdepend} )" |
|
|
323 | ;; |
|
|
324 | *) ;; |
|
|
325 | esac |
|
|
326 | unset cppuintdepend |
|
|
327 | |
|
|
328 | # KDE dependencies |
|
|
329 | # Qt accessibility classes are needed in various places, bug 325461 |
|
|
330 | kdecommondepend=" |
|
|
331 | dev-lang/perl |
|
|
332 | >=x11-libs/qt-core-${QT_MINIMAL}:4[qt3support,ssl] |
|
|
333 | >=x11-libs/qt-gui-${QT_MINIMAL}:4[accessibility,dbus] |
|
|
334 | >=x11-libs/qt-qt3support-${QT_MINIMAL}:4[accessibility,kde] |
|
|
335 | >=x11-libs/qt-script-${QT_MINIMAL}:4 |
|
|
336 | >=x11-libs/qt-sql-${QT_MINIMAL}:4[qt3support] |
|
|
337 | >=x11-libs/qt-svg-${QT_MINIMAL}:4 |
|
|
338 | >=x11-libs/qt-test-${QT_MINIMAL}:4 |
|
|
339 | !aqua? ( |
|
|
340 | x11-libs/libXext |
|
|
341 | x11-libs/libXt |
|
|
342 | x11-libs/libXxf86vm |
|
|
343 | ) |
|
|
344 | " |
|
|
345 | |
|
|
346 | if [[ ${PN} != kdelibs ]]; then |
|
|
347 | kdecommondepend+=" $(add_kdebase_dep kdelibs)" |
|
|
348 | if [[ ${KDEBASE} = kdevelop ]]; then |
|
|
349 | if [[ ${PN} != kdevplatform ]]; then |
|
|
350 | # @ECLASS-VARIABLE: KDEVPLATFORM_REQUIRED |
|
|
351 | # @DESCRIPTION: |
|
|
352 | # Specifies whether kdevplatform is required. Possible values are 'always' (default) and 'never'. |
|
|
353 | # Applies to KDEBASE=kdevelop only. |
|
|
354 | KDEVPLATFORM_REQUIRED="${KDEVPLATFORM_REQUIRED:-always}" |
|
|
355 | case ${KDEVPLATFORM_REQUIRED} in |
|
|
356 | always) |
|
|
357 | kdecommondepend+=" |
|
|
358 | >=dev-util/kdevplatform-${KDEVPLATFORM_VERSION} |
|
|
359 | " |
|
|
360 | ;; |
|
|
361 | *) ;; |
|
|
362 | esac |
|
|
363 | fi |
|
|
364 | fi |
|
|
365 | fi |
|
|
366 | kdedepend=" |
|
|
367 | dev-util/automoc |
|
|
368 | dev-util/pkgconfig |
|
|
369 | !aqua? ( |
|
|
370 | >=x11-libs/libXtst-1.1.0 |
|
|
371 | x11-proto/xf86vidmodeproto |
|
|
372 | ) |
|
|
373 | " |
|
|
374 | kderdepend="" |
|
|
375 | |
|
|
376 | if [[ ${PN} != oxygen-icons ]]; then |
|
|
377 | kderdepend+=" $(add_kdebase_dep oxygen-icons)" |
|
|
378 | fi |
|
|
379 | |
|
|
380 | kdehandbookdepend=" |
|
|
381 | app-text/docbook-xml-dtd:4.2 |
|
|
382 | app-text/docbook-xsl-stylesheets |
|
|
383 | " |
|
|
384 | kdehandbookrdepend=" |
|
|
385 | $(add_kdebase_dep kdelibs 'handbook') |
|
|
386 | " |
|
|
387 | case ${KDE_HANDBOOK} in |
|
|
388 | always) |
|
|
389 | kdedepend+=" ${kdehandbookdepend}" |
|
|
390 | [[ ${PN} != kdelibs ]] && kderdepend+=" ${kdehandbookrdepend}" |
|
|
391 | ;; |
|
|
392 | optional) |
|
|
393 | IUSE+=" +handbook" |
|
|
394 | kdedepend+=" handbook? ( ${kdehandbookdepend} )" |
|
|
395 | [[ ${PN} != kdelibs ]] && kderdepend+=" handbook? ( ${kdehandbookrdepend} )" |
|
|
396 | ;; |
|
|
397 | *) ;; |
|
|
398 | esac |
|
|
399 | unset kdehandbookdepend kdehandbookrdepend |
|
|
400 | |
|
|
401 | case ${KDE_REQUIRED} in |
|
|
402 | always) |
|
|
403 | IUSE+=" aqua" |
|
|
404 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" ${kdecommondepend}" |
|
|
405 | [[ -n ${kdedepend} ]] && DEPEND+=" ${kdedepend}" |
|
|
406 | [[ -n ${kderdepend} ]] && RDEPEND+=" ${kderdepend}" |
|
|
407 | ;; |
|
|
408 | optional) |
|
|
409 | IUSE+=" aqua kde" |
|
|
410 | [[ -n ${kdecommondepend} ]] && COMMONDEPEND+=" kde? ( ${kdecommondepend} )" |
|
|
411 | [[ -n ${kdedepend} ]] && DEPEND+=" kde? ( ${kdedepend} )" |
|
|
412 | [[ -n ${kderdepend} ]] && RDEPEND+=" kde? ( ${kderdepend} )" |
|
|
413 | ;; |
|
|
414 | *) ;; |
|
|
415 | esac |
|
|
416 | |
|
|
417 | unset kdecommondepend kdedepend kderdepend |
|
|
418 | |
|
|
419 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: COMMONDEPEND is ${COMMONDEPEND}" |
|
|
420 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND (only) is ${DEPEND}" |
|
|
421 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND (only) is ${RDEPEND}" |
|
|
422 | |
|
|
423 | # Accumulate dependencies set by this eclass |
|
|
424 | DEPEND+=" ${COMMONDEPEND}" |
|
|
425 | RDEPEND+=" ${COMMONDEPEND}" |
|
|
426 | unset COMMONDEPEND |
|
|
427 | |
|
|
428 | # Add experimental kdeenablefinal, disabled by default |
|
|
429 | IUSE+=" kdeenablefinal" |
| 321 | |
430 | |
| 322 | # Fetch section - If the ebuild's category is not 'kde-base' and if it is not a |
431 | # 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 |
432 | # koffice ebuild, the URI should be set in the ebuild itself |
| 324 | if [[ -n ${KDEBASE} ]]; then |
433 | case ${BUILD_TYPE} in |
|
|
434 | live) |
|
|
435 | SRC_URI="" |
|
|
436 | if has subversion ${INHERITED}; then |
|
|
437 | # Determine branch URL based on live type |
|
|
438 | local branch_prefix |
|
|
439 | case ${PV} in |
|
|
440 | 9999*) |
|
|
441 | # trunk |
|
|
442 | branch_prefix="trunk/KDE" |
|
|
443 | ;; |
|
|
444 | *) |
|
|
445 | # branch |
|
|
446 | branch_prefix="branches/KDE/${SLOT}" |
|
|
447 | # @ECLASS-VARIABLE: ESVN_PROJECT_SUFFIX |
|
|
448 | # @DESCRIPTION |
|
|
449 | # Suffix appended to ESVN_PROJECT depending on fetched branch. |
|
|
450 | # Defaults is empty (for -9999 = trunk), and "-${PV}" otherwise. |
|
|
451 | ESVN_PROJECT_SUFFIX="-${PV}" |
|
|
452 | ;; |
|
|
453 | esac |
|
|
454 | # @ECLASS-VARIABLE: ESVN_MIRROR |
|
|
455 | # @DESCRIPTION: |
|
|
456 | # This variable allows easy overriding of default kde mirror service |
|
|
457 | # (anonsvn) with anything else you might want to use. |
|
|
458 | ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} |
|
|
459 | # Split ebuild, or extragear stuff |
| 325 | if [[ -n ${KMNAME} ]]; then |
460 | if [[ -n ${KMNAME} ]]; then |
|
|
461 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
|
|
462 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
463 | KMMODULE="${PN}" |
|
|
464 | fi |
|
|
465 | # Split kde-base/ ebuilds: (they reside in trunk/KDE) |
|
|
466 | case ${KMNAME} in |
|
|
467 | kdebase-*) |
|
|
468 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdebase/${KMNAME#kdebase-}" |
|
|
469 | ;; |
|
|
470 | kdelibs-*) |
|
|
471 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/kdelibs/${KMNAME#kdelibs-}" |
|
|
472 | ;; |
|
|
473 | kdereview*) |
|
|
474 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
475 | ;; |
|
|
476 | kdesupport) |
|
|
477 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
478 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
479 | ;; |
|
|
480 | kde*) |
|
|
481 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${KMNAME}" |
|
|
482 | ;; |
|
|
483 | extragear*|playground*) |
|
|
484 | # Unpack them in toplevel dir, so that they won't conflict with kde4-meta |
|
|
485 | # build packages from same svn location. |
|
|
486 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
487 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
488 | ;; |
|
|
489 | koffice) |
|
|
490 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
|
|
491 | ;; |
|
|
492 | *) |
|
|
493 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}/${KMMODULE}" |
|
|
494 | ;; |
|
|
495 | esac |
|
|
496 | else |
|
|
497 | # kdelibs, kdepimlibs |
|
|
498 | ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${PN}" |
|
|
499 | ESVN_PROJECT="${PN}${ESVN_PROJECT_SUFFIX}" |
|
|
500 | fi |
|
|
501 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
502 | # @DESCRIPTION: |
|
|
503 | # This variable is used for specifying the timeout between svn synces |
|
|
504 | # for kde-base and koffice modules. Does not affect misc apps. |
|
|
505 | # Default value is 1 hour. |
|
|
506 | [[ ${KDEBASE} = kde-base || ${KDEBASE} = koffice ]] && ESVN_UP_FREQ=${ESVN_UP_FREQ:-1} |
|
|
507 | elif has git ${INHERITED}; then |
|
|
508 | if [[ -z ${KMNOMODULE} ]] && [[ -z ${KMMODULE} ]]; then |
|
|
509 | KMMODULE="${PN}" |
|
|
510 | fi |
|
|
511 | case ${KDEBASE} in |
|
|
512 | kdevelop) |
|
|
513 | EGIT_REPO_URI="git://git.kde.org/${KMMODULE}" |
|
|
514 | ;; |
|
|
515 | esac |
|
|
516 | fi |
|
|
517 | ;; |
|
|
518 | *) |
|
|
519 | if [[ -n ${KDEBASE} ]]; then |
|
|
520 | if [[ -n ${KMNAME} ]]; then |
|
|
521 | case ${KMNAME} in |
|
|
522 | kdebase-apps) |
|
|
523 | _kmname="kdebase" ;; |
|
|
524 | *) |
| 326 | _kmname=${KMNAME} |
525 | _kmname="${KMNAME}" ;; |
|
|
526 | esac |
|
|
527 | else |
|
|
528 | _kmname=${PN} |
|
|
529 | fi |
|
|
530 | _kmname_pv="${_kmname}-${PV}" |
|
|
531 | case ${KDEBASE} in |
|
|
532 | kde-base) |
|
|
533 | case ${PV} in |
|
|
534 | 4.5.93) |
|
|
535 | # Only kdepim and kdepim-runtime 4.6beta here |
|
|
536 | SRC_URI="mirror://kde/unstable/kdepim/${PV}/${_kmname}-4.6beta3.tar.bz2" |
|
|
537 | ;; |
|
|
538 | 4.[456].8[05] | 4.[456].9[023568]) |
|
|
539 | # Unstable KDE SC releases |
|
|
540 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
541 | ;; |
|
|
542 | 4.4.6 | 4.4.7 | 4.4.8 | 4.4.9 | 4.4.10) |
|
|
543 | # Only kdepim here |
|
|
544 | SRC_URI="mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
545 | ;; |
|
|
546 | *) |
|
|
547 | # Stable KDE SC releases |
|
|
548 | SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2" |
|
|
549 | ;; |
|
|
550 | esac |
|
|
551 | ;; |
|
|
552 | koffice) |
|
|
553 | case ${PV} in |
|
|
554 | 2.1.[6-9]*) SRC_URI="mirror://kde/unstable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
555 | *) SRC_URI="mirror://kde/stable/${_kmname_pv}/${_kmname_pv}.tar.bz2" ;; |
|
|
556 | esac |
|
|
557 | ;; |
|
|
558 | kdevelop) |
|
|
559 | SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2" |
|
|
560 | ;; |
|
|
561 | esac |
|
|
562 | unset _kmname _kmname_pv |
|
|
563 | fi |
|
|
564 | ;; |
|
|
565 | esac |
|
|
566 | |
|
|
567 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
568 | |
|
|
569 | # @ECLASS-VARIABLE: PREFIX |
|
|
570 | # @DESCRIPTION: |
|
|
571 | # Set the installation PREFIX for non kde-base applications. It defaults to /usr. |
|
|
572 | # kde-base packages go into KDE4 installation directory (KDEDIR) by default. |
|
|
573 | # No matter the PREFIX, package will be built against KDE installed in KDEDIR. |
|
|
574 | |
|
|
575 | # @FUNCTION: kde4-base_pkg_setup |
|
|
576 | # @DESCRIPTION: |
|
|
577 | # Do the basic kdeprefix KDEDIR settings and determine with which kde should |
|
|
578 | # optional applications link |
|
|
579 | kde4-base_pkg_setup() { |
|
|
580 | debug-print-function ${FUNCNAME} "$@" |
|
|
581 | |
|
|
582 | # Prefix compat: |
|
|
583 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
584 | EPREFIX= |
|
|
585 | EROOT=${ROOT} |
|
|
586 | fi |
|
|
587 | |
|
|
588 | # Append missing trailing slash character |
|
|
589 | [[ ${EROOT} = */ ]] || EROOT+="/" |
|
|
590 | |
|
|
591 | # QA ebuilds |
|
|
592 | [[ -z ${KDE_MINIMAL_VALID} ]] && ewarn "QA Notice: ignoring invalid KDE_MINIMAL (defaulting to ${KDE_MINIMAL})." |
|
|
593 | |
|
|
594 | # Don't set KDEHOME during compilation, it will cause access violations |
|
|
595 | unset KDEHOME |
|
|
596 | |
|
|
597 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
598 | if use kdeprefix; then |
|
|
599 | KDEDIR=/usr/kde/${SLOT} |
|
|
600 | else |
|
|
601 | KDEDIR=/usr |
|
|
602 | fi |
|
|
603 | : ${PREFIX:=${KDEDIR}} |
| 327 | else |
604 | else |
| 328 | _kmname=${PN} |
605 | # Determine KDEDIR by loooking for the closest match with KDE_MINIMAL |
| 329 | fi |
606 | KDEDIR= |
| 330 | _kmname_pv="${_kmname}-${PV}" |
607 | local kde_minimal_met |
| 331 | if [[ ${NEED_KDE} != "svn" ]]; then |
608 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
| 332 | case ${KDEBASE} in |
609 | [[ -z ${kde_minimal_met} ]] && [[ ${slot} = ${KDE_MINIMAL} ]] && kde_minimal_met=1 |
| 333 | kde-base) |
610 | if [[ -n ${kde_minimal_met} ]] && has_version "kde-base/kdelibs:${slot}"; then |
| 334 | case ${PV} in |
611 | if has_version "kde-base/kdelibs:${slot}[kdeprefix]"; then |
| 335 | 4.0.9* | 4.0.8*) |
|
|
| 336 | SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.bz2" ;; |
|
|
| 337 | *) SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.bz2";; |
|
|
| 338 | esac |
|
|
| 339 | ;; |
|
|
| 340 | koffice) |
|
|
| 341 | SRC_URI="mirror://kde/unstable/${_kmname_pv}/src/${_kmname_pv}.tar.bz2" |
|
|
| 342 | ;; |
|
|
| 343 | esac |
|
|
| 344 | fi |
|
|
| 345 | unset _kmname _kmname_pv |
|
|
| 346 | fi |
|
|
| 347 | |
|
|
| 348 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" |
|
|
| 349 | |
|
|
| 350 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 351 | # @DESCRIPTION: |
|
|
| 352 | # 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 |
|
|
| 354 | # can be superseded by defining PREFIX before inheriting kde4-base. |
|
|
| 355 | # This value is set on pkg_setup |
|
|
| 356 | PREFIX="" |
|
|
| 357 | |
|
|
| 358 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SLOT ${SLOT} - NEED_KDE ${NEED_KDE}" |
|
|
| 359 | |
|
|
| 360 | # @FUNCTION: kde4-base_pkg_setup |
|
|
| 361 | # @DESCRIPTION: |
|
|
| 362 | # 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 |
|
|
| 364 | # errors and die if any required flags listed in $QT4_BUILT_WITH_USE_CHECK or |
|
|
| 365 | # $KDE4_BUILT_WITH_USE_CHECK are missing. |
|
|
| 366 | kde4-base_pkg_setup() { |
|
|
| 367 | debug-print-function $FUNCNAME "$@" |
|
|
| 368 | |
|
|
| 369 | # Don't set KDEHOME during compile, it will cause access violations |
|
|
| 370 | unset KDEHOME |
|
|
| 371 | |
|
|
| 372 | if [[ ${NEED_KDE} != none ]]; then |
|
|
| 373 | |
|
|
| 374 | # Set PREFIX |
|
|
| 375 | case "${EAPI}" in |
|
|
| 376 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 377 | if use kdeprefix; then |
|
|
| 378 | KDEDIR="/usr/kde/${_kdedir}" |
612 | KDEDIR=/usr/kde/${slot} |
| 379 | KDEDIRS="/usr:/usr/local:${KDEDIR}" |
|
|
| 380 | else |
613 | else |
| 381 | KDEDIR="/usr" |
614 | KDEDIR=/usr |
| 382 | KDEDIRS="/usr:/usr/local" |
|
|
| 383 | fi |
615 | fi |
| 384 | ;; |
616 | break; |
| 385 | *) |
|
|
| 386 | KDEDIR="/usr" |
|
|
| 387 | KDEDIRS="/usr:/usr/local" |
|
|
| 388 | ;; |
|
|
| 389 | esac |
|
|
| 390 | fi |
|
|
| 391 | |
|
|
| 392 | # Set the prefix based on KDEDIR |
|
|
| 393 | # Make it a consequence of kdeprefix |
|
|
| 394 | PREFIX=${KDEDIR} |
|
|
| 395 | |
|
|
| 396 | unset _kdedir |
|
|
| 397 | |
|
|
| 398 | case "${EAPI}" in |
|
|
| 399 | 2 | 2_pre3 | 2_pre2 | 2_pre1) |
|
|
| 400 | [[ -n ${QT4_BUILT_WITH_USE_CHECK} || -n ${KDE4_BUILT_WITH_USE_CHECK[@]} ]] && \ |
|
|
| 401 | die "built_with_use illegal in this EAPI!" |
|
|
| 402 | ;; |
|
|
| 403 | *) |
|
|
| 404 | # Make KDE4_BUILT_WITH_USE_CHECK an array if it isn't already |
|
|
| 405 | local line kde4_built_with_use_check=() |
|
|
| 406 | if [[ -n ${KDE4_BUILT_WITH_USE_CHECK[@]} && $(declare -p KDE4_BUILT_WITH_USE_CHECK) != 'declare -a '* ]]; then |
|
|
| 407 | while read line; do |
|
|
| 408 | [[ -z ${line} ]] && continue |
|
|
| 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 |
|
|
| 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 |
617 | fi |
| 477 | done |
618 | done |
|
|
619 | unset slot |
|
|
620 | |
|
|
621 | # Bail out if kdelibs required but not found |
|
|
622 | if [[ ${KDE_REQUIRED} = always ]] || { [[ ${KDE_REQUIRED} = optional ]] && use kde; }; then |
|
|
623 | [[ -z ${KDEDIR} ]] && die "Failed to determine KDEDIR!" |
|
|
624 | else |
|
|
625 | [[ -z ${KDEDIR} ]] && KDEDIR=/usr |
| 478 | fi |
626 | fi |
| 479 | [[ -n ${PATCHES[@]} ]] && base_src_unpack autopatch |
627 | |
|
|
628 | : ${PREFIX:=/usr} |
|
|
629 | fi |
|
|
630 | EKDEDIR=${EPREFIX}${KDEDIR} |
|
|
631 | |
|
|
632 | # Point pkg-config path to KDE *.pc files |
|
|
633 | export PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" |
|
|
634 | # Point to correct QT plugins path |
|
|
635 | QT_PLUGIN_PATH="${EKDEDIR}/$(get_libdir)/kde4/plugins/" |
|
|
636 | |
|
|
637 | # Fix XDG collision with sandbox |
|
|
638 | export XDG_CONFIG_HOME="${T}" |
| 480 | } |
639 | } |
| 481 | |
640 | |
| 482 | # @FUNCTION: kde4-base_src_unpack |
641 | # @FUNCTION: kde4-base_src_unpack |
| 483 | # @DESCRIPTION: |
642 | # @DESCRIPTION: |
| 484 | # This function unpacks the source tarballs for KDE4 applications. |
643 | # This function unpacks the source tarballs for KDE4 applications. |
| 485 | # |
644 | kde4-base_src_unpack() { |
| 486 | # If no argument is passed to this function, then standard src_unpack is |
645 | debug-print-function ${FUNCNAME} "$@" |
| 487 | # executed. Otherwise options are passed to base_src_unpack. |
646 | |
| 488 | # |
647 | if [[ ${BUILD_TYPE} = live ]]; then |
| 489 | # In addition it calls kde4-base_apply_patches when no arguments are passed to |
648 | if has subversion ${INHERITED}; then |
| 490 | # this function. |
649 | migrate_store_dir |
| 491 | # |
650 | subversion_src_unpack |
|
|
651 | elif has git ${INHERITED}; then |
|
|
652 | git_src_unpack |
|
|
653 | fi |
|
|
654 | elif [[ ${EAPI} == 2 ]]; then |
|
|
655 | local file |
|
|
656 | for file in ${A}; do |
|
|
657 | # This setup is because EAPI <= 2 cannot unpack *.tar.xz files |
|
|
658 | # directly, so we do it ourselves (using the exact same code as portage) |
|
|
659 | case ${file} in |
|
|
660 | *.tar.xz) |
|
|
661 | echo ">>> Unpacking ${file} to ${PWD}" |
|
|
662 | xz -dc "${DISTDIR}"/${file} | tar xof - |
|
|
663 | assert "failed unpacking ${file}" |
|
|
664 | ;; |
|
|
665 | *) |
|
|
666 | unpack ${file} |
|
|
667 | ;; |
|
|
668 | esac |
|
|
669 | done |
|
|
670 | else |
|
|
671 | # For EAPI >= 3, we can just use unpack() directly |
|
|
672 | unpack ${A} |
|
|
673 | fi |
|
|
674 | } |
|
|
675 | |
|
|
676 | # @FUNCTION: kde4-base_src_prepare |
|
|
677 | # @DESCRIPTION: |
|
|
678 | # General pre-configure and pre-compile function for KDE4 applications. |
| 492 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
679 | # It also handles translations if KDE_LINGUAS is defined. See KDE_LINGUAS and |
|
|
680 | # enable_selected_linguas() and enable_selected_doc_linguas() |
| 493 | # enable_selected_linguas() in kde4-functions.eclass(5) for further details. |
681 | # in kde4-functions.eclass(5) for further details. |
| 494 | kde4-base_src_unpack() { |
682 | kde4-base_src_prepare() { |
| 495 | debug-print-function $FUNCNAME "$@" |
683 | 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 | |
684 | |
| 519 | # Only enable selected languages, used for KDE extragear apps. |
685 | # Only enable selected languages, used for KDE extragear apps. |
| 520 | if [[ -n ${KDE_LINGUAS} ]]; then |
686 | if [[ -n ${KDE_LINGUAS} ]]; then |
| 521 | enable_selected_linguas |
687 | enable_selected_linguas |
| 522 | fi |
688 | fi |
|
|
689 | |
|
|
690 | # Enable/disable handbooks for kde4-base packages |
|
|
691 | # kde-l10n inherits kde4-base but is metpackage, so no check for doc |
|
|
692 | # kdelibs inherits kde4-base but handle installing the handbook itself |
|
|
693 | if ! has kde4-meta ${INHERITED}; then |
|
|
694 | has handbook ${IUSE//+} && [[ ${PN} != kde-l10n ]] && [[ ${PN} != kdepim-l10n ]] && [[ ${PN} != kdelibs ]] && enable_selected_doc_linguas |
|
|
695 | fi |
|
|
696 | |
|
|
697 | # SCM bootstrap |
|
|
698 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
699 | if has subversion ${INHERITED}; then |
|
|
700 | subversion_src_prepare |
|
|
701 | elif has git ${INHERITED}; then |
|
|
702 | git_src_prepare |
|
|
703 | fi |
|
|
704 | fi |
|
|
705 | |
|
|
706 | # Apply patches |
|
|
707 | base_src_prepare |
|
|
708 | |
|
|
709 | # Save library dependencies |
|
|
710 | if [[ -n ${KMSAVELIBS} ]] ; then |
|
|
711 | save_library_dependencies |
|
|
712 | fi |
|
|
713 | |
|
|
714 | # Inject library dependencies |
|
|
715 | if [[ -n ${KMLOADLIBS} ]] ; then |
|
|
716 | load_library_dependencies |
|
|
717 | fi |
|
|
718 | |
|
|
719 | # Replace KDE4Workspace library targets |
|
|
720 | find "${S}" -name CMakeLists.txt \ |
|
|
721 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_TASKMANAGER_(LIBRARY|LIBS)\}/taskmanager/g' {} + \ |
|
|
722 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWORKSPACE_(LIBRARY|LIBS)\}/kworkspace/g' {} + \ |
|
|
723 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROLIFACES_(LIBRARY|LIBS)\}/solidcontrolifaces/g' {} + \ |
|
|
724 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_SOLIDCONTROL_(LIBRARY|LIBS)\}/solidcontrol/g' {} + \ |
|
|
725 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PROCESSUI_(LIBRARY|LIBS)\}/processui/g' {} + \ |
|
|
726 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_LSOFUI_(LIBRARY|LIBS)\}/lsofui/g' {} + \ |
|
|
727 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_PLASMACLOCK_(LIBRARY|LIBS)\}/plasmaclock/g' {} + \ |
|
|
728 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERYCLIENT_(LIBRARY|LIBS)\}/nepomukqueryclient/g' {} + \ |
|
|
729 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_NEPOMUKQUERY_(LIBRARY|LIBS)\}/nepomukquery/g' {} + \ |
|
|
730 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSCREENSAVER_(LIBRARY|LIBS)\}/kscreensaver/g' {} + \ |
|
|
731 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_WEATHERION_(LIBRARY|LIBS)\}/weather_ion/g' {} + \ |
|
|
732 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KWINEFFECTS_(LIBRARY|LIBS)\}/kwineffects/g' {} + \ |
|
|
733 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KDECORATIONS_(LIBRARY|LIBS)\}/kdecorations/g' {} + \ |
|
|
734 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KSGRD_(LIBRARY|LIBS)\}/ksgrd/g' {} + \ |
|
|
735 | -exec sed -i -r -e 's/\$\{KDE4WORKSPACE_KEPHAL_(LIBRARY|LIBS)\}/kephal/g' {} + \ |
|
|
736 | || die 'failed to replace KDE4Workspace library targets' |
|
|
737 | |
|
|
738 | # Hack for manuals relying on outdated DTD, only outside kde-base/koffice/... |
|
|
739 | if [[ -z ${KDEBASE} ]]; then |
|
|
740 | find "${S}" -name "*.docbook" \ |
|
|
741 | -exec sed -i -r \ |
|
|
742 | -e 's:-//KDE//DTD DocBook XML V4\.1(\..)?-Based Variant V1\.[01]//EN:-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN:g' {} + \ |
|
|
743 | || die 'failed to fix DocBook variant version' |
|
|
744 | fi |
|
|
745 | } |
|
|
746 | |
|
|
747 | # @FUNCTION: kde4-base_src_configure |
|
|
748 | # @DESCRIPTION: |
|
|
749 | # Function for configuring the build of KDE4 applications. |
|
|
750 | kde4-base_src_configure() { |
|
|
751 | debug-print-function ${FUNCNAME} "$@" |
|
|
752 | |
|
|
753 | # Build tests in src_test only, where we override this value |
|
|
754 | local cmakeargs=(-DKDE4_BUILD_TESTS=OFF) |
|
|
755 | |
|
|
756 | if has kdeenablefinal ${IUSE//+} && use kdeenablefinal; then |
|
|
757 | cmakeargs+=(-DKDE4_ENABLE_FINAL=ON) |
|
|
758 | fi |
|
|
759 | |
|
|
760 | if has debug ${IUSE//+} && use debug; then |
|
|
761 | # Set "real" debug mode |
|
|
762 | CMAKE_BUILD_TYPE="Debugfull" |
|
|
763 | else |
|
|
764 | # Handle common release builds |
|
|
765 | append-cppflags -DQT_NO_DEBUG |
|
|
766 | fi |
|
|
767 | |
|
|
768 | # Set distribution name |
|
|
769 | [[ ${PN} = kdelibs ]] && cmakeargs+=(-DKDE_DISTRIBUTION_TEXT=Gentoo) |
|
|
770 | |
|
|
771 | # Here we set the install prefix |
|
|
772 | tc-is-cross-compiler || cmakeargs+=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}") |
|
|
773 | |
|
|
774 | # Use colors |
|
|
775 | QTEST_COLORED=1 |
|
|
776 | |
|
|
777 | # Shadow existing /usr installations |
|
|
778 | unset KDEDIRS |
|
|
779 | |
|
|
780 | # Handle kdeprefix-ed KDE |
|
|
781 | if [[ ${KDEDIR} != /usr ]]; then |
|
|
782 | # Override some environment variables - only when kdeprefix is different, |
|
|
783 | # to not break ccache/distcc |
|
|
784 | PATH="${EKDEDIR}/bin:${PATH}" |
|
|
785 | |
|
|
786 | # Append library search path |
|
|
787 | append-ldflags -L"${EKDEDIR}/$(get_libdir)" |
|
|
788 | |
|
|
789 | # Append full RPATH |
|
|
790 | cmakeargs+=(-DCMAKE_SKIP_RPATH=OFF) |
|
|
791 | |
|
|
792 | # Set cmake prefixes to allow buildsystem to locate valid KDE installation |
|
|
793 | # when more are present |
|
|
794 | cmakeargs+=(-DCMAKE_SYSTEM_PREFIX_PATH="${EKDEDIR}") |
|
|
795 | fi |
|
|
796 | |
|
|
797 | #qmake -query QT_INSTALL_LIBS unavailable when cross-compiling |
|
|
798 | tc-is-cross-compiler && cmakeargs+=(-DQT_LIBRARY_DIR=${ROOT}/usr/lib/qt4) |
|
|
799 | #kde-config -path data unavailable when cross-compiling |
|
|
800 | tc-is-cross-compiler && cmakeargs+=(-DKDE4_DATA_DIR=${ROOT}/usr/share/apps/) |
|
|
801 | |
|
|
802 | # Handle kdeprefix in application itself |
|
|
803 | if ! has kdeprefix ${IUSE//+} || ! use kdeprefix; then |
|
|
804 | # If prefix is /usr, sysconf needs to be /etc, not /usr/etc |
|
|
805 | cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc) |
|
|
806 | fi |
|
|
807 | |
|
|
808 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
809 | mycmakeargs=(${mycmakeargs}) |
|
|
810 | fi |
|
|
811 | |
|
|
812 | mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}") |
|
|
813 | |
|
|
814 | cmake-utils_src_configure |
| 523 | } |
815 | } |
| 524 | |
816 | |
| 525 | # @FUNCTION: kde4-base_src_compile |
817 | # @FUNCTION: kde4-base_src_compile |
| 526 | # @DESCRIPTION: |
818 | # @DESCRIPTION: |
| 527 | # General function for compiling KDE4 applications. |
819 | # General function for compiling KDE4 applications. |
| 528 | kde4-base_src_compile() { |
820 | kde4-base_src_compile() { |
| 529 | debug-print-function ${FUNCNAME} "$@" |
821 | 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 | |
822 | |
| 543 | # @FUNCTION: kde4-base_src_configure |
|
|
| 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 | } |
|
|
| 585 | |
|
|
| 586 | # @FUNCTION: kde4-base_src_make |
|
|
| 587 | # @DESCRIPTION: |
|
|
| 588 | # Function for building KDE4 applications. |
|
|
| 589 | # Options are passed to cmake-utils_src_make. |
|
|
| 590 | kde4-base_src_make() { |
|
|
| 591 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 592 | |
|
|
| 593 | cmake-utils_src_make "$@" |
823 | cmake-utils_src_compile "$@" |
| 594 | } |
824 | } |
| 595 | |
825 | |
| 596 | # @FUNCTION: kde4-base_src_test |
826 | # @FUNCTION: kde4-base_src_test |
| 597 | # @DESCRIPTION: |
827 | # @DESCRIPTION: |
| 598 | # Function for testing KDE4 applications. |
828 | # Function for testing KDE4 applications. |
| 599 | kde4-base_src_test() { |
829 | kde4-base_src_test() { |
| 600 | debug-print-function ${FUNCNAME} "$@" |
830 | debug-print-function ${FUNCNAME} "$@" |
| 601 | |
831 | |
| 602 | # Override this value, set in kde4-base_src_configure() |
832 | # Override this value, set in kde4-base_src_configure() |
| 603 | mycmakeargs="${mycmakeargs} -DKDE4_BUILD_TESTS=ON" |
833 | mycmakeargs+=(-DKDE4_BUILD_TESTS=ON) |
| 604 | cmake-utils_src_compile |
834 | cmake-utils_src_configure |
|
|
835 | kde4-base_src_compile |
| 605 | |
836 | |
|
|
837 | # When run as normal user during ebuild development with the ebuild command, the |
|
|
838 | # kde tests tend to access the session DBUS. This however is not possible in a real |
|
|
839 | # emerge or on the tinderbox. |
|
|
840 | # > make sure it does not happen, so bad tests can be recognized and disabled |
|
|
841 | unset DBUS_SESSION_BUS_ADDRESS |
|
|
842 | |
|
|
843 | if [[ ${VIRTUALX_REQUIRED} == always || ${VIRTUALX_REQUIRED} == test ]]; then |
|
|
844 | # check for sanity if anyone already redefined VIRTUALX_COMMAND from the default |
|
|
845 | if [[ ${VIRTUALX_COMMAND} != "emake" ]]; then |
|
|
846 | # surprise- we are already INSIDE virtualmake!!! |
|
|
847 | debug-print "QA Notice: This version of kde4-base.eclass includes the virtualx functionality." |
|
|
848 | debug-print " You may NOT set VIRTUALX_COMMAND or call virtualmake from the ebuild." |
|
|
849 | debug-print " Setting VIRTUALX_REQUIRED is completely sufficient. See the" |
|
|
850 | debug-print " kde4-base.eclass docs for details... Applying workaround." |
|
|
851 | cmake-utils_src_test |
|
|
852 | else |
|
|
853 | VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake |
|
|
854 | fi |
|
|
855 | else |
| 606 | cmake-utils_src_test |
856 | cmake-utils_src_test |
|
|
857 | fi |
| 607 | } |
858 | } |
| 608 | |
859 | |
| 609 | # @FUNCTION: kde4-base_src_install |
860 | # @FUNCTION: kde4-base_src_install |
| 610 | # @DESCRIPTION: |
861 | # @DESCRIPTION: |
| 611 | # Function for installing KDE4 applications. |
862 | # Function for installing KDE4 applications. |
| 612 | kde4-base_src_install() { |
863 | kde4-base_src_install() { |
| 613 | debug-print-function ${FUNCNAME} "$@" |
864 | debug-print-function ${FUNCNAME} "$@" |
| 614 | |
865 | |
| 615 | kde4-base_src_make_doc |
866 | # Prefix support, for usage in ebuilds |
| 616 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
867 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
| 617 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
868 | ED=${D} |
| 618 | fi |
869 | fi |
| 619 | [ -e [Mm]akefile ] && cmake-utils_src_install |
|
|
| 620 | } |
|
|
| 621 | |
870 | |
| 622 | # @FUNCTION: kde4-base_src_make_doc |
871 | if [[ -n ${KMSAVELIBS} ]] ; then |
| 623 | # @DESCRIPTION: |
872 | install_library_dependencies |
|
|
873 | fi |
|
|
874 | |
| 624 | # Function for installing the documentation of KDE4 applications. |
875 | # Install common documentation of KDE4 applications |
| 625 | kde4-base_src_make_doc() { |
|
|
| 626 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 627 | |
|
|
| 628 | local doc |
876 | local doc |
| 629 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
877 | if ! has kde4-meta ${INHERITED}; then |
| 630 | [[ -s $doc ]] && dodoc ${doc} |
878 | for doc in "${S}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 631 | done |
879 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
| 632 | |
|
|
| 633 | if [[ -z ${KMNAME} ]]; then |
|
|
| 634 | for doc in {apps,runtime,workspace,.}/*/{AUTHORS,README*}; do |
|
|
| 635 | if [[ -s $doc ]]; then |
|
|
| 636 | local doc_complete=${doc} |
|
|
| 637 | doc="${doc#*/}" |
|
|
| 638 | newdoc "$doc_complete" "${doc%/*}.${doc##*/}" |
|
|
| 639 | fi |
|
|
| 640 | done |
880 | done |
|
|
881 | for doc in "${S}"/*/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
882 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && newdoc "${doc}" "$(basename $(dirname ${doc})).$(basename ${doc})" |
|
|
883 | done |
| 641 | fi |
884 | fi |
| 642 | |
885 | |
| 643 | if [[ -n ${KDEBASE} && -d "${D}"/usr/share/doc/${PF} ]]; then |
886 | cmake-utils_src_install |
| 644 | # work around bug #97196 |
|
|
| 645 | dodir /usr/share/doc/kde && \ |
|
|
| 646 | mv "${D}"/usr/share/doc/${PF} "${D}"/usr/share/doc/kde/ || \ |
|
|
| 647 | die "Failed to move docs to kde/ failed." |
|
|
| 648 | fi |
|
|
| 649 | } |
887 | } |
| 650 | |
888 | |
| 651 | # @FUNCTION: kde4-base_pkg_postinst |
889 | # @FUNCTION: kde4-base_pkg_postinst |
| 652 | # @DESCRIPTION: |
890 | # @DESCRIPTION: |
| 653 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
891 | # Function to rebuild the KDE System Configuration Cache after an application has been installed. |
| 654 | kde4-base_pkg_postinst() { |
892 | kde4-base_pkg_postinst() { |
|
|
893 | debug-print-function ${FUNCNAME} "$@" |
|
|
894 | |
|
|
895 | buildsycoca |
|
|
896 | |
|
|
897 | if [[ ${BUILD_TYPE} = live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
898 | echo |
|
|
899 | einfo "WARNING! This is an experimental live ebuild of ${CATEGORY}/${PN}" |
|
|
900 | einfo "Use it at your own risk." |
|
|
901 | einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" |
|
|
902 | echo |
|
|
903 | elif [[ ${BUILD_TYPE} != live ]] && [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then |
|
|
904 | # warning about kdeprefix for non-live users |
|
|
905 | echo |
|
|
906 | ewarn "WARNING! You have the kdeprefix useflag enabled." |
|
|
907 | ewarn "This setting is strongly discouraged and might lead to potential trouble" |
|
|
908 | ewarn "with KDE update strategies." |
|
|
909 | ewarn "You are using this setup at your own risk and the kde team does not" |
|
|
910 | ewarn "take responsibilities for dead kittens." |
|
|
911 | echo |
|
|
912 | fi |
|
|
913 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! has_version 'kde-base/kdebase-runtime-meta' && ! has_version 'kde-base/kdebase-startkde'; then |
|
|
914 | # warn about not supported approach |
|
|
915 | if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then |
|
|
916 | echo |
|
|
917 | ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" |
|
|
918 | ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." |
|
|
919 | ewarn "With this setting you are unsupported by KDE team." |
|
|
920 | ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." |
|
|
921 | fi |
|
|
922 | fi |
|
|
923 | } |
|
|
924 | |
|
|
925 | # @FUNCTION: kde4-base_pkg_postrm |
|
|
926 | # @DESCRIPTION: |
|
|
927 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
|
|
928 | kde4-base_pkg_postrm() { |
|
|
929 | debug-print-function ${FUNCNAME} "$@" |
|
|
930 | |
| 655 | buildsycoca |
931 | buildsycoca |
| 656 | } |
932 | } |
| 657 | |
|
|
| 658 | # @FUNCTION: kde4-base_pkg_postrm |
|
|
| 659 | # @DESCRIPTION: |
|
|
| 660 | # Function to rebuild the KDE System Configuration Cache after an application has been removed. |
|
|
| 661 | kde4-base_pkg_postrm() { |
|
|
| 662 | buildsycoca |
|
|
| 663 | } |
|
|