| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 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-meta.eclass,v 1.46 2010/12/29 17:06:51 tampakrap Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.57 2011/10/06 14:13:29 alexxy Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: kde4-meta.eclass |
5 | # @ECLASS: kde4-meta.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: Eclass for writing "split" KDE packages. |
8 | # @BLURB: Eclass for writing "split" KDE packages. |
| … | |
… | |
| 10 | # This eclass provides all necessary functions for writing split KDE ebuilds. |
10 | # This eclass provides all necessary functions for writing split KDE ebuilds. |
| 11 | # |
11 | # |
| 12 | # You must define KMNAME to use this eclass, and do so before inheriting it. All other variables are optional. |
12 | # You must define KMNAME to use this eclass, and do so before inheriting it. All other variables are optional. |
| 13 | # Do not include the same item in more than one of KMMODULE, KMMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY. |
13 | # Do not include the same item in more than one of KMMODULE, KMMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY. |
| 14 | |
14 | |
|
|
15 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
|
|
16 | |
| 15 | inherit kde4-base versionator |
17 | inherit kde4-base versionator |
| 16 | |
18 | |
| 17 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
19 | KDEMETA_EXPF="pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_preinst pkg_postinst pkg_postrm" |
| 18 | |
20 | EXPORT_FUNCTIONS ${KDEMETA_EXPF} |
| 19 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
|
|
| 20 | |
21 | |
| 21 | # Add dependencies that all packages in a certain module share. |
22 | # Add dependencies that all packages in a certain module share. |
| 22 | case ${KMNAME} in |
23 | case ${KMNAME} in |
| 23 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
24 | kdebase|kdebase-apps|kde-baseapps|kdebase-workspace|kde-workspace|kdebase-runtime|kde-runtime|kdegraphics) |
| 24 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
25 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 25 | ;; |
26 | ;; |
| 26 | kdepim|kdepim-runtime) |
27 | kdepim|kdepim-runtime) |
| 27 | case ${PN} in |
28 | case ${PN} in |
| 28 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
29 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| … | |
… | |
| 68 | debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
69 | debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
| 69 | |
70 | |
| 70 | # Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
71 | # Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
| 71 | case ${BUILD_TYPE} in |
72 | case ${BUILD_TYPE} in |
| 72 | live) |
73 | live) |
|
|
74 | if [[ ${KDE_SCM} == svn ]]; then |
| 73 | case ${KMNAME} in |
75 | case ${KMNAME} in |
| 74 | extragear*|playground*) |
76 | extragear*|playground*) |
| 75 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
77 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
| 76 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
78 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
| 77 | ;; |
79 | ;; |
| 78 | esac |
80 | esac |
|
|
81 | fi |
| 79 | ;; |
82 | ;; |
| 80 | esac |
83 | esac |
| 81 | |
84 | |
| 82 | # @ECLASS-VARIABLE: KMNAME |
85 | # @ECLASS-VARIABLE: KMNAME |
| 83 | # @DESCRIPTION: |
86 | # @DESCRIPTION: |
| … | |
… | |
| 127 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
130 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
| 128 | # '-xpf -j' are passed to tar by default. |
131 | # '-xpf -j' are passed to tar by default. |
| 129 | |
132 | |
| 130 | # @FUNCTION: kde4-meta_pkg_setup |
133 | # @FUNCTION: kde4-meta_pkg_setup |
| 131 | # @DESCRIPTION: |
134 | # @DESCRIPTION: |
| 132 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in |
135 | # Currently calls its equivalent in kde4-base.eclass(5) and checks the gcc version. |
| 133 | # split ebuilds. |
136 | # Use this one in split ebuilds. |
| 134 | kde4-meta_pkg_setup() { |
137 | kde4-meta_pkg_setup() { |
| 135 | debug-print-function ${FUNCNAME} "$@" |
138 | debug-print-function ${FUNCNAME} "$@" |
| 136 | |
139 | |
| 137 | kde4-base_pkg_setup |
140 | kde4-base_pkg_setup |
| 138 | } |
141 | } |
| 139 | |
142 | |
| 140 | # @FUNCTION: kde4-meta_src_unpack |
143 | # @FUNCTION: kde4-meta_src_unpack |
| 141 | # @DESCRIPTION: |
144 | # @DESCRIPTION: |
| 142 | # This function unpacks the source for split ebuilds. See also |
145 | # This function unpacks the source for split ebuilds. |
| 143 | # kde4-meta-src_extract. |
146 | # Further more is processed in kde4-meta_src_extract |
| 144 | kde4-meta_src_unpack() { |
147 | kde4-meta_src_unpack() { |
| 145 | debug-print-function ${FUNCNAME} "$@" |
148 | debug-print-function ${FUNCNAME} "$@" |
| 146 | |
149 | |
| 147 | if [[ ${BUILD_TYPE} = live ]]; then |
150 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
151 | case "${KDE_SCM}" in |
|
|
152 | svn) |
| 148 | migrate_store_dir |
153 | migrate_store_dir |
| 149 | S="${WORKDIR}/${P}" |
154 | S="${WORKDIR}/${P}" |
| 150 | mkdir -p "${S}" |
155 | mkdir -p "${S}" |
| 151 | ESVN_RESTRICT="export" subversion_src_unpack |
156 | ESVN_RESTRICT="export" subversion_src_unpack |
| 152 | subversion_wc_info |
157 | subversion_wc_info |
| 153 | subversion_bootstrap |
158 | subversion_bootstrap |
|
|
159 | ;; |
|
|
160 | git) |
|
|
161 | git-2_src_unpack |
|
|
162 | ;; |
|
|
163 | esac |
|
|
164 | fi |
| 154 | kde4-meta_src_extract |
165 | kde4-meta_src_extract |
| 155 | else |
|
|
| 156 | kde4-meta_src_extract |
|
|
| 157 | fi |
|
|
| 158 | } |
166 | } |
| 159 | |
|
|
| 160 | # FIXME: the difference between kde4-meta_src_extract and kde4-meta_src_unpack? |
|
|
| 161 | |
167 | |
| 162 | # @FUNCTION: kde4-meta_src_extract |
168 | # @FUNCTION: kde4-meta_src_extract |
| 163 | # @DESCRIPTION: |
169 | # @DESCRIPTION: |
| 164 | # A function to unpack the source for a split KDE ebuild. |
170 | # A function to extract the source for a split KDE ebuild. |
| 165 | # Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
171 | # Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
| 166 | # KMTARPARAMS. |
172 | # KMTARPARAMS. |
| 167 | kde4-meta_src_extract() { |
173 | kde4-meta_src_extract() { |
| 168 | debug-print-function ${FUNCNAME} "$@" |
174 | debug-print-function ${FUNCNAME} "$@" |
| 169 | |
175 | |
| 170 | if [[ ${BUILD_TYPE} = live ]]; then |
176 | if [[ ${BUILD_TYPE} = live ]]; then |
| 171 | local rsync_options subdir kmnamedir targetdir |
|
|
| 172 | # Export working copy to ${S} |
177 | # Export working copy to ${S} |
| 173 | einfo "Exporting parts of working copy to ${S}" |
178 | einfo "Exporting parts of working copy to ${S}" |
| 174 | kde4-meta_create_extractlists |
179 | kde4-meta_create_extractlists |
| 175 | |
180 | |
|
|
181 | case ${KDE_SCM} in |
|
|
182 | svn) |
|
|
183 | local rsync_options subdir targetdir wc_path escm |
|
|
184 | |
| 176 | rsync_options="--group --links --owner --perms --quiet --exclude=.svn/" |
185 | rsync_options="--group --links --owner --perms --quiet --exclude=.svn/ --exclude=.git/" |
|
|
186 | wc_path="${ESVN_WC_PATH}" |
|
|
187 | escm="{ESVN}" |
| 177 | |
188 | |
| 178 | # Copy ${KMNAME} non-recursively (toplevel files) |
189 | # Copy ${KMNAME} non-recursively (toplevel files) |
| 179 | rsync ${rsync_options} "${ESVN_WC_PATH}"/${kmnamedir}* "${S}" \ |
190 | rsync ${rsync_options} "${wc_path}"/* "${S}" \ |
| 180 | || die "${ESVN}: can't export toplevel files to '${S}'." |
191 | || die "${escm}: can't export toplevel files to '${S}'." |
| 181 | # Copy cmake directory |
192 | # Copy cmake directory |
| 182 | if [[ -d "${ESVN_WC_PATH}/${kmnamedir}cmake" ]]; then |
193 | if [[ -d "${wc_path}/cmake" ]]; then |
| 183 | rsync --recursive ${rsync_options} "${ESVN_WC_PATH}/${kmnamedir}cmake" "${S}" \ |
194 | rsync --recursive ${rsync_options} "${wc_path}/cmake" "${S}" \ |
| 184 | || die "${ESVN}: can't export cmake files to '${S}'." |
195 | || die "${escm}: can't export cmake files to '${S}'." |
| 185 | fi |
196 | fi |
| 186 | # Copy all subdirectories |
197 | # Copy all subdirectories |
| 187 | for subdir in $(__list_needed_subdirectories); do |
198 | for subdir in $(__list_needed_subdirectories); do |
| 188 | targetdir="" |
199 | targetdir="" |
| 189 | if [[ $subdir = doc/* && ! -e "$ESVN_WC_PATH/$kmnamedir$subdir" ]]; then |
200 | if [[ $subdir = doc/* && ! -e "$wc_path/$subdir" ]]; then |
| 190 | continue |
201 | continue |
| 191 | fi |
202 | fi |
| 192 | |
203 | |
| 193 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
204 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
| 194 | rsync --recursive ${rsync_options} "${ESVN_WC_PATH}/${kmnamedir}${subdir%/}" "${S}/${targetdir}" \ |
205 | rsync --recursive ${rsync_options} "${wc_path}/${subdir%/}" "${S}/${targetdir}" \ |
| 195 | || die "${ESVN}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
206 | || die "${escm}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
| 196 | done |
207 | done |
| 197 | |
|
|
| 198 | if [[ ${KMNAME} = kdebase-runtime && ${PN} != kdebase-data ]]; then |
|
|
| 199 | sed -i -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
|
|
| 200 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
|
|
| 201 | fi |
|
|
| 202 | else |
|
|
| 203 | local abort tarball tarfile f extractlist moduleprefix postfix |
|
|
| 204 | case ${PV} in |
|
|
| 205 | 4.[45].8[05] | 4.[45].9[023568]) |
|
|
| 206 | # Block for normally packed upstream unstable snapshots |
|
|
| 207 | KMTARPARAMS+=" --bzip2" # bz2 |
|
|
| 208 | postfix="bz2" |
|
|
| 209 | ;; |
|
|
| 210 | *) |
|
|
| 211 | KMTARPARAMS+=" --bzip2" # bz2 |
|
|
| 212 | postfix="bz2" |
|
|
| 213 | ;; |
208 | ;; |
| 214 | esac |
209 | esac |
|
|
210 | else |
|
|
211 | local abort tarball tarfile f extractlist postfix |
|
|
212 | |
|
|
213 | KMTARPARAMS+=" --bzip2" |
|
|
214 | postfix="bz2" |
|
|
215 | |
| 215 | case ${KMNAME} in |
216 | case ${KMNAME} in |
| 216 | kdebase-apps) |
217 | kdebase-apps) |
| 217 | # kdebase/apps -> kdebase-apps |
218 | # kdebase/apps -> kdebase-apps |
| 218 | tarball="kdebase-${PV}.tar.${postfix}" |
219 | tarball="kdebase-${PV}.tar.${postfix}" |
| 219 | # Go one level deeper for kdebase-apps in tarballs |
|
|
| 220 | moduleprefix=apps/ |
|
|
| 221 | KMTARPARAMS+=" --transform=s|apps/||" |
|
|
| 222 | ;; |
|
|
| 223 | kdepim) |
|
|
| 224 | if [[ ${PV} == 4.5.93 ]] ; then |
|
|
| 225 | tarball="kdepim-4.6beta3.tar.${postfix}" |
|
|
| 226 | fi |
|
|
| 227 | ;; |
220 | ;; |
| 228 | *) |
221 | *) |
| 229 | # Create tarball name from module name (this is the default) |
222 | # Create tarball name from module name (this is the default) |
| 230 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
223 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
| 231 | ;; |
224 | ;; |
| … | |
… | |
| 240 | |
233 | |
| 241 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
234 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
| 242 | |
235 | |
| 243 | kde4-meta_create_extractlists |
236 | kde4-meta_create_extractlists |
| 244 | |
237 | |
| 245 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake \ |
238 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake |
| 246 | AUTHORS COPYING INSTALL README NEWS ChangeLog |
|
|
| 247 | do |
239 | do |
| 248 | extractlist+=" ${topdir}${moduleprefix}${f}" |
240 | extractlist+=" ${topdir}${f}" |
| 249 | done |
241 | done |
| 250 | extractlist+=" $(__list_needed_subdirectories)" |
242 | extractlist+=" $(__list_needed_subdirectories)" |
| 251 | |
243 | |
| 252 | pushd "${WORKDIR}" > /dev/null |
244 | pushd "${WORKDIR}" > /dev/null |
|
|
245 | |
|
|
246 | # @ECLASS-VARIABLE: KDE4_STRICTER |
|
|
247 | # @DESCRIPTION: |
|
|
248 | # Print out all issues found executing tar / kmextract files |
|
|
249 | # Set on if you want to find issues in kde-base ebuild unpack sequences |
| 253 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} |
250 | [[ -n ${KDE4_STRICTER} ]] && echo 'tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist}' |
|
|
251 | if [[ ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
252 | # to make the devs happy - bug 338397 |
| 254 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" |
253 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" |
|
|
254 | else |
|
|
255 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
|
|
256 | fi |
| 255 | |
257 | |
| 256 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
258 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
|
|
259 | if [[ ${KMNAME} != ${PN} ]]; then |
| 257 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
260 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
|
|
261 | fi |
| 258 | |
262 | |
| 259 | popd > /dev/null |
263 | popd > /dev/null |
| 260 | |
264 | |
| 261 | eend $? |
265 | eend $? |
| 262 | |
|
|
| 263 | # We need to clear it here to make verification below work |
|
|
| 264 | unset moduleprefix |
|
|
| 265 | |
266 | |
| 266 | if [[ -n ${KDE4_STRICTER} ]]; then |
267 | if [[ -n ${KDE4_STRICTER} ]]; then |
| 267 | for f in $(__list_needed_subdirectories fatal); do |
268 | for f in $(__list_needed_subdirectories fatal); do |
| 268 | if [[ ! -e "${S}/${f#*/}" ]]; then |
269 | if [[ ! -e ${S}/${f#*/} ]]; then |
| 269 | eerror "'${f#*/}' is missing" |
270 | eerror "'${f#*/}' is missing" |
| 270 | abort=true |
271 | abort=true |
| 271 | fi |
272 | fi |
| 272 | done |
273 | done |
| 273 | [[ -n ${abort} ]] && die "There were missing files." |
274 | [[ -n ${abort} ]] && die "There were missing files." |
| … | |
… | |
| 286 | kde4-meta_create_extractlists() { |
287 | kde4-meta_create_extractlists() { |
| 287 | debug-print-function ${FUNCNAME} "$@" |
288 | debug-print-function ${FUNCNAME} "$@" |
| 288 | |
289 | |
| 289 | # Add default handbook locations |
290 | # Add default handbook locations |
| 290 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
291 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
| 291 | if ! slot_is_at_least 4.5 ${SLOT} && has handbook ${IUSE//+} && use handbook && [[ -z ${KMNOMODULE} ]]; then |
292 | if [[ $(get_kde_version) < 4.5 ]] && has handbook ${IUSE//+} && use handbook && [[ -z ${KMNOMODULE} ]]; then |
| 292 | # We use the basename of $KMMODULE because $KMMODULE can contain |
293 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 293 | # the path to the module subdirectory. |
294 | # the path to the module subdirectory. |
| 294 | KMEXTRA_NONFATAL+=" |
295 | KMEXTRA_NONFATAL+=" |
| 295 | doc/${KMMODULE##*/}" |
296 | doc/${KMMODULE##*/}" |
| 296 | fi |
297 | fi |
| 297 | |
298 | |
| 298 | # Add default handbook locations |
299 | # Add default handbook locations |
| 299 | if [[ -z ${KMNOMODULE} ]] && { [[ ${KDE_HANDBOOK} = always ]] || { [[ ${KDE_HANDBOOK} = optional ]] && use handbook; }; }; then |
300 | if [[ -z ${KMNOMODULE} ]] && ( [[ ${KDE_HANDBOOK} == always ]] || ( [[ ${KDE_HANDBOOK} == optional ]] && use handbook ) ); then |
| 300 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
301 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
| 301 | fi |
302 | fi |
| 302 | |
303 | |
| 303 | # Add some CMake-files to KMEXTRACTONLY. |
304 | # Add some CMake-files to KMEXTRACTONLY. |
| 304 | # Note that this actually doesn't include KMEXTRA handling. |
305 | # Note that this actually doesn't include KMEXTRA handling. |
| 305 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
306 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| 306 | case ${KMNAME} in |
307 | case ${KMNAME} in |
| 307 | kdebase) |
308 | kdebase | kdebase-apps | kde-baseapps) |
| 308 | KMEXTRACTONLY+=" |
|
|
| 309 | apps/config-apps.h.cmake |
|
|
| 310 | apps/ConfigureChecks.cmake" |
|
|
| 311 | ;; |
|
|
| 312 | kdebase-apps) |
|
|
| 313 | KMEXTRACTONLY+=" |
309 | KMEXTRACTONLY+=" |
| 314 | config-apps.h.cmake |
310 | config-apps.h.cmake |
| 315 | ConfigureChecks.cmake" |
311 | ConfigureChecks.cmake" |
| 316 | ;; |
312 | ;; |
| 317 | kdebase-runtime) |
313 | kdebase-runtime | kde-runtime) |
| 318 | KMEXTRACTONLY+=" |
314 | KMEXTRACTONLY+=" |
| 319 | config-runtime.h.cmake" |
315 | config-runtime.h.cmake" |
| 320 | ;; |
316 | ;; |
| 321 | kdebase-workspace) |
317 | kdebase-workspace | kde-workspace) |
| 322 | KMEXTRACTONLY+=" |
318 | KMEXTRACTONLY+=" |
| 323 | config-unix.h.cmake |
319 | config-unix.h.cmake |
| 324 | ConfigureChecks.cmake |
320 | ConfigureChecks.cmake |
| 325 | config-workspace.h.cmake |
321 | config-workspace.h.cmake |
| 326 | config-X11.h.cmake |
322 | config-X11.h.cmake |
| … | |
… | |
| 340 | libkdepim/" |
336 | libkdepim/" |
| 341 | fi |
337 | fi |
| 342 | KMEXTRACTONLY+=" |
338 | KMEXTRACTONLY+=" |
| 343 | config-enterprise.h.cmake |
339 | config-enterprise.h.cmake |
| 344 | kleopatra/ConfigureChecks.cmake" |
340 | kleopatra/ConfigureChecks.cmake" |
| 345 | if slot_is_at_least 4.5 ${SLOT}; then |
341 | if ! [[ $(get_kde_version) < 4.5 ]]; then |
| 346 | KMEXTRACTONLY+=" |
342 | KMEXTRACTONLY+=" |
| 347 | CTestCustom.cmake |
343 | CTestCustom.cmake |
| 348 | kdepim-version.h.cmake" |
344 | kdepim-version.h.cmake" |
| 349 | else |
345 | else |
| 350 | KMEXTRACTONLY+=" |
346 | KMEXTRACTONLY+=" |
| … | |
… | |
| 362 | koffice) |
358 | koffice) |
| 363 | KMEXTRACTONLY+=" |
359 | KMEXTRACTONLY+=" |
| 364 | filters/config-filters.h.cmake |
360 | filters/config-filters.h.cmake |
| 365 | " |
361 | " |
| 366 | case ${PV} in |
362 | case ${PV} in |
| 367 | 2.0.*) |
|
|
| 368 | KMEXTRACTONLY+=" |
|
|
| 369 | config-openctl.h.cmake |
|
|
| 370 | config-endian.h.cmake |
|
|
| 371 | config-openexr.h.cmake |
|
|
| 372 | config-opengl.h.cmake |
|
|
| 373 | config-prefix.h.cmake" |
|
|
| 374 | ;; |
|
|
| 375 | 2.[12].*) |
363 | 2.[12].*) |
| 376 | KMEXTRACTONLY+=" |
364 | KMEXTRACTONLY+=" |
| 377 | config-endian.h.cmake |
365 | config-endian.h.cmake |
| 378 | config-openexr.h.cmake |
366 | config-openexr.h.cmake |
| 379 | config-opengl.h.cmake |
367 | config-opengl.h.cmake |
| … | |
… | |
| 381 | ;; |
369 | ;; |
| 382 | esac |
370 | esac |
| 383 | ;; |
371 | ;; |
| 384 | esac |
372 | esac |
| 385 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
373 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
|
|
374 | # note: kdegraphics >= 4.6.2 does not even have code to do that, so we |
|
|
375 | # should not try in that case |
|
|
376 | # note2: kdeedu 4.6.4 does not have a cmake/modules/ subdir anymore :( |
|
|
377 | # it may be possible to formulate this shorter, but it should also |
|
|
378 | # still be understandable... |
|
|
379 | if [[ ${KMNAME} != kdegraphics || ( ( $(get_kde_version) != 4.6 || ${PV} < 4.6.2 ) && $(get_kde_version) < 4.7 ) ]] \ |
|
|
380 | && ! [[ ${KMNAME} == kdeedu && ( ${PV} == 4.6.4 || ${PV} == 4.6.5 ) ]]; then |
| 386 | case ${KMNAME} in |
381 | case ${KMNAME} in |
| 387 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
382 | kdebase-runtime|kde-runtime|kdebase-workspace|kde-workspace|kdeedu|kdegames|kdegraphics) |
| 388 | case ${PN} in |
383 | case ${PN} in |
| 389 | libkdegames|libkdeedu|libkworkspace) |
384 | libkdegames|libkdeedu|libkworkspace) |
| 390 | KMEXTRA+=" |
385 | KMEXTRA+=" |
| 391 | cmake/modules/" |
386 | cmake/modules/" |
| 392 | ;; |
387 | ;; |
| 393 | *) |
388 | *) |
| 394 | KMCOMPILEONLY+=" |
389 | KMCOMPILEONLY+=" |
| 395 | cmake/modules/" |
390 | cmake/modules/" |
| 396 | ;; |
391 | ;; |
| 397 | esac |
392 | esac |
| 398 | ;; |
393 | ;; |
| 399 | esac |
394 | esac |
|
|
395 | fi |
| 400 | |
396 | |
| 401 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
397 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
| 402 | } |
398 | } |
| 403 | |
399 | |
| 404 | __list_needed_subdirectories() { |
400 | __list_needed_subdirectories() { |
| … | |
… | |
| 443 | # Create final list of stuff to extract |
439 | # Create final list of stuff to extract |
| 444 | # We append topdir only when specified (usually for tarballs) |
440 | # We append topdir only when specified (usually for tarballs) |
| 445 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
441 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
| 446 | ${KMEXTRACTONLY} |
442 | ${KMEXTRACTONLY} |
| 447 | do |
443 | do |
| 448 | extractlist+=" ${topdir}${moduleprefix}${i}" |
444 | extractlist+=" ${topdir}${i}" |
| 449 | done |
445 | done |
| 450 | |
446 | |
| 451 | echo ${extractlist} |
447 | echo ${extractlist} |
| 452 | } |
448 | } |
| 453 | |
449 | |
| … | |
… | |
| 459 | |
455 | |
| 460 | kde4-meta_change_cmakelists |
456 | kde4-meta_change_cmakelists |
| 461 | kde4-base_src_prepare |
457 | kde4-base_src_prepare |
| 462 | } |
458 | } |
| 463 | |
459 | |
| 464 | # FIXME: no comment here? |
460 | # @FUNCTION: _change_cmakelists_parent_dirs |
|
|
461 | # @DESCRIPTION: |
|
|
462 | # Adjust CMakeLists.txt to shadow subdirectories |
|
|
463 | # that are not required for the build. |
| 465 | _change_cmakelists_parent_dirs() { |
464 | _change_cmakelists_parent_dirs() { |
| 466 | debug-print-function ${FUNCNAME} "$@" |
465 | debug-print-function ${FUNCNAME} "$@" |
| 467 | |
466 | |
| 468 | local _olddir _dir |
467 | local _olddir _dir |
| 469 | _dir="${S}"/${1} |
468 | _dir="${S}"/${1} |
| 470 | until [[ ${_dir} == "${S}" ]]; do |
469 | until [[ ${_dir} == ${S} ]]; do |
| 471 | _olddir=$(basename "${_dir}") |
470 | _olddir=$(basename "${_dir}") |
| 472 | _dir=$(dirname "${_dir}") |
471 | _dir=$(dirname "${_dir}") |
| 473 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
472 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
| 474 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
473 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
| 475 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
474 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
| … | |
… | |
| 546 | _change_cmakelists_parent_dirs ${i} |
545 | _change_cmakelists_parent_dirs ${i} |
| 547 | fi |
546 | fi |
| 548 | done |
547 | done |
| 549 | |
548 | |
| 550 | case ${KMNAME} in |
549 | case ${KMNAME} in |
| 551 | kdebase-workspace) |
550 | kdebase-workspace | kde-workspace) |
| 552 | # COLLISION PROTECT section |
551 | # COLLISION PROTECT section |
| 553 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
552 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
| 554 | # not as a part of every package. |
553 | # not as a part of every package. |
| 555 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
554 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
| 556 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
555 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| … | |
… | |
| 558 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
557 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
| 559 | fi |
558 | fi |
| 560 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
559 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
| 561 | if [[ ${PN} != libkworkspace ]]; then |
560 | if [[ ${PN} != libkworkspace ]]; then |
| 562 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
561 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
| 563 | -i CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
562 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace strip config install and fix EXPORT section" |
| 564 | fi |
563 | fi |
|
|
564 | if [[ ${PN} != plasma-workspace ]]; then |
|
|
565 | sed -e '/KActivities/s/REQUIRED//' \ |
|
|
566 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace dep reduction section" |
|
|
567 | fi |
| 565 | ;; |
568 | ;; |
| 566 | kdebase-runtime) |
569 | kdebase-runtime | kde-runtime) |
| 567 | # COLLISION PROTECT section |
570 | # COLLISION PROTECT section |
| 568 | # Only install the kde4 script as part of kde-base/kdebase-data |
571 | # Only install the kde4 script as part of kde-base/kdebase-data |
| 569 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
572 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
| 570 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
573 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
| 571 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
574 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| … | |
… | |
| 588 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
591 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
| 589 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
592 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
| 590 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
593 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
| 591 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
594 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
| 592 | fi |
595 | fi |
| 593 | if ! slot_is_at_least 4.5 ${SLOT}; then |
596 | if [[ $(get_kde_version) < 4.5 ]]; then |
| 594 | case ${PN} in |
597 | case ${PN} in |
| 595 | kalarm|kmailcvt|kontact|korganizer|korn) |
598 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 596 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
599 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 597 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
600 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
| 598 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
601 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| … | |
… | |
| 615 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
618 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 616 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
619 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 617 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
620 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
| 618 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
621 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 619 | fi |
622 | fi |
| 620 | # koffice 2.0 |
|
|
| 621 | case ${PV} in |
|
|
| 622 | 2.0.[1-9]) |
|
|
| 623 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
|
|
| 624 | "${S}"/CMakeLists.txt || \ |
|
|
| 625 | die "${LINENO}: sed died in collision prevention section" |
|
|
| 626 | ;; |
|
|
| 627 | *) ;; |
|
|
| 628 | esac |
|
|
| 629 | # koffice 2.1.[8-9][0-9] and 9999 |
|
|
| 630 | case ${PV} in |
|
|
| 631 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
| 632 | sed -e '/^option(BUILD/s/ON/OFF/' \ |
|
|
| 633 | -e '/^if(NOT BUILD_kchart/,/^endif(NOT BUILD_kchart/d' \ |
|
|
| 634 | -e '/^if(BUILD_koreport/,/^endif(BUILD_koreport/d' \ |
|
|
| 635 | -e 's/set(SHOULD_BUILD_F_OFFICE TRUE)/set(SHOULD_BUILD_F_OFFICE FALSE)/' \ |
|
|
| 636 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
| 637 | if [[ ${PN} != koffice-data ]] && [[ ${PV} == 9999 ]]; then |
|
|
| 638 | sed -e '/config-opengl.h/d' \ |
|
|
| 639 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
| 640 | |
|
|
| 641 | fi |
|
|
| 642 | ;; |
|
|
| 643 | *) ;; |
|
|
| 644 | esac |
|
|
| 645 | esac |
623 | esac |
| 646 | |
624 | |
| 647 | popd > /dev/null |
625 | popd > /dev/null |
| 648 | } |
626 | } |
| 649 | |
627 | |
| … | |
… | |
| 669 | -DWITH_Boost=OFF |
647 | -DWITH_Boost=OFF |
| 670 | -DWITH_LibTidy=OFF |
648 | -DWITH_LibTidy=OFF |
| 671 | "${mycmakeargs[@]}" |
649 | "${mycmakeargs[@]}" |
| 672 | ) |
650 | ) |
| 673 | ;; |
651 | ;; |
| 674 | koffice) |
|
|
| 675 | case ${PV} in |
|
|
| 676 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
| 677 | if [[ ${PN} != "kchart" ]]; then |
|
|
| 678 | mycmakeargs=( |
|
|
| 679 | -DBUILD_koreport=OFF |
|
|
| 680 | "${mycmakeargs[@]}" |
|
|
| 681 | ) |
|
|
| 682 | fi |
|
|
| 683 | ;; |
|
|
| 684 | esac |
|
|
| 685 | ;; |
|
|
| 686 | esac |
652 | esac |
| 687 | |
653 | |
| 688 | kde4-base_src_configure |
654 | kde4-base_src_configure |
| 689 | } |
655 | } |
| 690 | |
656 | |
| … | |
… | |
| 725 | done |
691 | done |
| 726 | |
692 | |
| 727 | kde4-base_src_install |
693 | kde4-base_src_install |
| 728 | } |
694 | } |
| 729 | |
695 | |
|
|
696 | # @FUNCTION: kde4-meta_pkg_preinst |
|
|
697 | # @DESCRIPTION: |
|
|
698 | # Invoke its equivalent in kde4-base.eclass. |
|
|
699 | kde4-meta_pkg_preinst() { |
|
|
700 | debug-print-function ${FUNCNAME} "$@" |
|
|
701 | |
|
|
702 | kde4-base_pkg_preinst |
|
|
703 | } |
|
|
704 | |
| 730 | # @FUNCTION: kde4-meta_pkg_postinst |
705 | # @FUNCTION: kde4-meta_pkg_postinst |
| 731 | # @DESCRIPTION: |
706 | # @DESCRIPTION: |
| 732 | # Invoke kbuildsycoca4. |
707 | # Invoke kbuildsycoca4. |
| 733 | kde4-meta_pkg_postinst() { |
708 | kde4-meta_pkg_postinst() { |
| 734 | debug-print-function ${FUNCNAME} "$@" |
709 | debug-print-function ${FUNCNAME} "$@" |