1 |
# Copyright 1999-2011 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.51 2011/04/06 14:22:14 scarabeus Exp $ |
4 |
# |
5 |
# @ECLASS: kde4-meta.eclass |
6 |
# @MAINTAINER: |
7 |
# kde@gentoo.org |
8 |
# @BLURB: Eclass for writing "split" KDE packages. |
9 |
# @DESCRIPTION: |
10 |
# This eclass provides all necessary functions for writing split KDE ebuilds. |
11 |
# |
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. |
14 |
|
15 |
[[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
16 |
|
17 |
inherit kde4-base versionator |
18 |
|
19 |
KDEMETA_EXPF="pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_preinst pkg_postinst pkg_postrm" |
20 |
EXPORT_FUNCTIONS ${KDEMETA_EXPF} |
21 |
|
22 |
# Add dependencies that all packages in a certain module share. |
23 |
case ${KMNAME} in |
24 |
kdebase|kdebase-apps|kde-baseapps|kdebase-workspace|kde-workspace|kdebase-runtime|kde-runtime|kdegraphics) |
25 |
COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
26 |
;; |
27 |
kdepim|kdepim-runtime) |
28 |
case ${PN} in |
29 |
akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
30 |
IUSE+=" +kontact" |
31 |
RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
32 |
;; |
33 |
esac |
34 |
;; |
35 |
kdegames) |
36 |
if [[ ${PN} != libkdegames ]]; then |
37 |
COMMONDEPEND+=" $(add_kdebase_dep libkdegames)" |
38 |
fi |
39 |
;; |
40 |
koffice) |
41 |
[[ ${PN} != koffice-data ]] && IUSE+=" debug" |
42 |
RDEPEND+=" |
43 |
!app-office/${PN}:0 |
44 |
!app-office/koffice:0 |
45 |
!app-office/koffice-meta:0 |
46 |
" |
47 |
if has openexr ${IUSE//+}; then |
48 |
COMMONDEPEND+=" media-gfx/imagemagick[openexr?]" |
49 |
else |
50 |
COMMONDEPEND+=" media-gfx/imagemagick" |
51 |
fi |
52 |
|
53 |
COMMONDEPEND+=" |
54 |
dev-cpp/eigen:2 |
55 |
media-libs/fontconfig |
56 |
media-libs/freetype:2 |
57 |
" |
58 |
if [[ ${PN} != koffice-libs && ${PN} != koffice-data ]]; then |
59 |
COMMONDEPEND+=" >=app-office/koffice-libs-${PV}:${SLOT}" |
60 |
fi |
61 |
;; |
62 |
esac |
63 |
|
64 |
DEPEND+=" ${COMMONDEPEND}" |
65 |
RDEPEND+=" ${COMMONDEPEND}" |
66 |
unset COMMONDEPEND |
67 |
|
68 |
debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after metapackage-specific dependencies" |
69 |
debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
70 |
|
71 |
# Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
72 |
case ${BUILD_TYPE} in |
73 |
live) |
74 |
if [[ ${KDE_SCM} == svn ]]; then |
75 |
case ${KMNAME} in |
76 |
extragear*|playground*) |
77 |
ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
78 |
ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
79 |
;; |
80 |
esac |
81 |
fi |
82 |
;; |
83 |
esac |
84 |
|
85 |
# @ECLASS-VARIABLE: KMNAME |
86 |
# @DESCRIPTION: |
87 |
# Name of the parent-module (e.g. kdebase, kdepim, ...). You _must_ set it |
88 |
# _before_ inheriting this eclass, (unlike the other parameters), since it's |
89 |
# used to set $SRC_URI. |
90 |
|
91 |
# @ECLASS-VARIABLE: KMMODULE |
92 |
# @DESCRIPTION: |
93 |
# Specify exactly one subdirectory of $KMNAME here. Defaults to $PN. |
94 |
# The subdirectory listed here is treated exactly like items in $KMEXTRA. |
95 |
# |
96 |
# Example: The ebuild name of "kdebase/l10n" is kde-base/kdebase-l10n, because |
97 |
# just 'l10n' would be too confusing. Hence it sets KMMODULE="l10n". |
98 |
|
99 |
# @ECLASS-VARIABLE: KMNOMODULE |
100 |
# @DESCRIPTION: |
101 |
# If set to "true", $KMMODULE doesn't have to be defined. |
102 |
# |
103 |
# Example usage: If you're installing subdirectories of a package, like plugins, |
104 |
# you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
105 |
# set KMNOMODULE="true". |
106 |
if [[ -z ${KMMODULE} ]] && [[ ${KMNOMODULE} != true ]]; then |
107 |
KMMODULE=${PN} |
108 |
fi |
109 |
|
110 |
# @ECLASS-VARIABLE: KMEXTRA |
111 |
# @DESCRIPTION: |
112 |
# All subdirectories listed here will be extracted, compiled & installed. |
113 |
# $KMMODULE is always added to $KMEXTRA. |
114 |
# If KDE_HANDBOOK is 'always' or 'optional' and handbook USE-flag is set, and if this |
115 |
# directory exists, then "doc/$KMMODULE" is added to $KMEXTRA. If there's additional |
116 |
# documentation in different subdirectories, it should be added to KMEXTRA manually.. |
117 |
|
118 |
# @ECLASS-VARIABLE: KMCOMPILEONLY |
119 |
# @DESCRIPTION: |
120 |
# All subdirectories listed here will be extracted & compiled, but not installed. |
121 |
|
122 |
# TODO: better formulation may be needed |
123 |
# @ECLASS-VARIABLE: KMEXTRACTONLY |
124 |
# @DESCRIPTION: |
125 |
# All subdirectories listed here will be extracted, but neither compiled nor installed. |
126 |
# This can be used to avoid compilation in a subdirectory of a directory in $KMMODULE or $KMEXTRA |
127 |
|
128 |
# @ECLASS-VARIABLE: KMTARPARAMS |
129 |
# @DESCRIPTION: |
130 |
# Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
131 |
# '-xpf -j' are passed to tar by default. |
132 |
|
133 |
# @FUNCTION: kde4-meta_pkg_setup |
134 |
# @DESCRIPTION: |
135 |
# Currently calls its equivalent in kde4-base.eclass(5) and checks the gcc version. |
136 |
# Use this one in split ebuilds. |
137 |
kde4-meta_pkg_setup() { |
138 |
debug-print-function ${FUNCNAME} "$@" |
139 |
|
140 |
kde4-base_pkg_setup |
141 |
} |
142 |
|
143 |
# @FUNCTION: kde4-meta_src_unpack |
144 |
# @DESCRIPTION: |
145 |
# This function unpacks the source for split ebuilds. |
146 |
# Further more is processed in kde4-meta_src_extract |
147 |
kde4-meta_src_unpack() { |
148 |
debug-print-function ${FUNCNAME} "$@" |
149 |
|
150 |
if [[ ${BUILD_TYPE} = live ]]; then |
151 |
case "${KDE_SCM}" in |
152 |
svn) |
153 |
migrate_store_dir |
154 |
S="${WORKDIR}/${P}" |
155 |
mkdir -p "${S}" |
156 |
ESVN_RESTRICT="export" subversion_src_unpack |
157 |
subversion_wc_info |
158 |
subversion_bootstrap |
159 |
;; |
160 |
git) |
161 |
git-2_src_unpack |
162 |
;; |
163 |
esac |
164 |
fi |
165 |
kde4-meta_src_extract |
166 |
} |
167 |
|
168 |
# @FUNCTION: kde4-meta_src_extract |
169 |
# @DESCRIPTION: |
170 |
# A function to extract the source for a split KDE ebuild. |
171 |
# Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
172 |
# KMTARPARAMS. |
173 |
kde4-meta_src_extract() { |
174 |
debug-print-function ${FUNCNAME} "$@" |
175 |
|
176 |
if [[ ${BUILD_TYPE} = live ]]; then |
177 |
# Export working copy to ${S} |
178 |
einfo "Exporting parts of working copy to ${S}" |
179 |
kde4-meta_create_extractlists |
180 |
|
181 |
case ${KDE_SCM} in |
182 |
svn) |
183 |
local rsync_options subdir kmnamedir targetdir wc_path escm |
184 |
|
185 |
rsync_options="--group --links --owner --perms --quiet --exclude=.svn/ --exclude=.git/" |
186 |
wc_path="${ESVN_WC_PATH}" |
187 |
escm="{ESVN}" |
188 |
|
189 |
# Copy ${KMNAME} non-recursively (toplevel files) |
190 |
rsync ${rsync_options} "${wc_path}"/${kmnamedir}* "${S}" \ |
191 |
|| die "${escm}: can't export toplevel files to '${S}'." |
192 |
# Copy cmake directory |
193 |
if [[ -d "${wc_path}/${kmnamedir}cmake" ]]; then |
194 |
rsync --recursive ${rsync_options} "${wc_path}/${kmnamedir}cmake" "${S}" \ |
195 |
|| die "${escm}: can't export cmake files to '${S}'." |
196 |
fi |
197 |
# Copy all subdirectories |
198 |
for subdir in $(__list_needed_subdirectories); do |
199 |
targetdir="" |
200 |
if [[ $subdir = doc/* && ! -e "$wc_path/$kmnamedir$subdir" ]]; then |
201 |
continue |
202 |
fi |
203 |
|
204 |
[[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
205 |
rsync --recursive ${rsync_options} "${wc_path}/${kmnamedir}${subdir%/}" "${S}/${targetdir}" \ |
206 |
|| die "${escm}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
207 |
done |
208 |
;; |
209 |
esac |
210 |
else |
211 |
local abort tarball tarfile f extractlist moduleprefix postfix |
212 |
|
213 |
KMTARPARAMS+=" --bzip2" |
214 |
postfix="bz2" |
215 |
|
216 |
case ${KMNAME} in |
217 |
kdebase-apps) |
218 |
# kdebase/apps -> kdebase-apps |
219 |
tarball="kdebase-${PV}.tar.${postfix}" |
220 |
if ! slot_is_at_least 4.6 ${SLOT} || [[ ${PV} == "4.6.0" ]]; then |
221 |
moduleprefix=apps/ |
222 |
KMTARPARAMS+=" --transform=s|apps/||" |
223 |
fi |
224 |
;; |
225 |
*) |
226 |
# Create tarball name from module name (this is the default) |
227 |
tarball="${KMNAME}-${PV}.tar.${postfix}" |
228 |
;; |
229 |
esac |
230 |
|
231 |
# Full path to source tarball |
232 |
tarfile="${DISTDIR}/${tarball}" |
233 |
|
234 |
# Detect real toplevel dir from tarball name - it will be used upon extraction |
235 |
# and in __list_needed_subdirectories |
236 |
topdir="${tarball%.tar.*}/" |
237 |
|
238 |
ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
239 |
|
240 |
kde4-meta_create_extractlists |
241 |
|
242 |
for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake |
243 |
do |
244 |
extractlist+=" ${topdir}${moduleprefix}${f}" |
245 |
done |
246 |
extractlist+=" $(__list_needed_subdirectories)" |
247 |
|
248 |
pushd "${WORKDIR}" > /dev/null |
249 |
|
250 |
# @ECLASS-VARIABLE: KDE4_STRICTER |
251 |
# @DESCRIPTION: |
252 |
# Print out all issues found executing tar / kmextract files |
253 |
# Set on if you want to find issues in kde-base ebuild unpack sequences |
254 |
[[ -n ${KDE4_STRICTER} ]] && echo 'tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist}' |
255 |
if [[ ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
256 |
# to make the devs happy - bug 338397 |
257 |
tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" |
258 |
else |
259 |
tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
260 |
fi |
261 |
|
262 |
# Default $S is based on $P; rename the extracted directory to match $S if necessary |
263 |
if [[ ${KMNAME} != ${PN} ]]; then |
264 |
mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
265 |
fi |
266 |
|
267 |
popd > /dev/null |
268 |
|
269 |
eend $? |
270 |
|
271 |
# We need to clear it here to make verification below work |
272 |
unset moduleprefix |
273 |
|
274 |
if [[ -n ${KDE4_STRICTER} ]]; then |
275 |
for f in $(__list_needed_subdirectories fatal); do |
276 |
if [[ ! -e ${S}/${f#*/} ]]; then |
277 |
eerror "'${f#*/}' is missing" |
278 |
abort=true |
279 |
fi |
280 |
done |
281 |
[[ -n ${abort} ]] && die "There were missing files." |
282 |
fi |
283 |
|
284 |
# We don't need it anymore |
285 |
unset topdir |
286 |
fi |
287 |
} |
288 |
|
289 |
# @FUNCTION: kde4-meta_create_extractlists |
290 |
# @DESCRIPTION: |
291 |
# Create lists of files and subdirectories to extract. |
292 |
# Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
293 |
# KMEXTRACTONLY and KMTARPARAMS. |
294 |
kde4-meta_create_extractlists() { |
295 |
debug-print-function ${FUNCNAME} "$@" |
296 |
|
297 |
# Add default handbook locations |
298 |
# FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
299 |
if ! slot_is_at_least 4.5 ${SLOT} && has handbook ${IUSE//+} && use handbook && [[ -z ${KMNOMODULE} ]]; then |
300 |
# We use the basename of $KMMODULE because $KMMODULE can contain |
301 |
# the path to the module subdirectory. |
302 |
KMEXTRA_NONFATAL+=" |
303 |
doc/${KMMODULE##*/}" |
304 |
fi |
305 |
|
306 |
# Add default handbook locations |
307 |
if [[ -z ${KMNOMODULE} ]] && ( [[ ${KDE_HANDBOOK} == always ]] || ( [[ ${KDE_HANDBOOK} == optional ]] && use handbook ) ); then |
308 |
KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
309 |
fi |
310 |
|
311 |
# Add some CMake-files to KMEXTRACTONLY. |
312 |
# Note that this actually doesn't include KMEXTRA handling. |
313 |
# In those cases you should care to add the relevant files to KMEXTRACTONLY |
314 |
case ${KMNAME} in |
315 |
kdebase) |
316 |
if ! slot_is_at_least 4.6 ${SLOT} || [[ ${PV} == "4.6.0" ]]; then |
317 |
KMEXTRACTONLY+=" |
318 |
apps/config-apps.h.cmake |
319 |
apps/ConfigureChecks.cmake" |
320 |
else |
321 |
KMEXTRACTONLY+=" |
322 |
config-apps.h.cmake |
323 |
ConfigureChecks.cmake" |
324 |
fi |
325 |
;; |
326 |
kdebase-apps | kde-baseapps) |
327 |
KMEXTRACTONLY+=" |
328 |
config-apps.h.cmake |
329 |
ConfigureChecks.cmake" |
330 |
;; |
331 |
kdebase-runtime | kde-runtime) |
332 |
KMEXTRACTONLY+=" |
333 |
config-runtime.h.cmake" |
334 |
;; |
335 |
kdebase-workspace | kde-workspace) |
336 |
KMEXTRACTONLY+=" |
337 |
config-unix.h.cmake |
338 |
ConfigureChecks.cmake |
339 |
config-workspace.h.cmake |
340 |
config-X11.h.cmake |
341 |
startkde.cmake |
342 |
KDE4WorkspaceConfig.cmake.in" |
343 |
;; |
344 |
kdegames) |
345 |
if [[ ${PN} != libkdegames ]]; then |
346 |
KMEXTRACTONLY+=" |
347 |
libkdegames/" |
348 |
KMLOADLIBS="${KMLOADLIBS} libkdegames" |
349 |
fi |
350 |
;; |
351 |
kdepim) |
352 |
if [[ ${PN} != libkdepim ]]; then |
353 |
KMEXTRACTONLY+=" |
354 |
libkdepim/" |
355 |
fi |
356 |
KMEXTRACTONLY+=" |
357 |
config-enterprise.h.cmake |
358 |
kleopatra/ConfigureChecks.cmake" |
359 |
if slot_is_at_least 4.5 ${SLOT}; then |
360 |
KMEXTRACTONLY+=" |
361 |
CTestCustom.cmake |
362 |
kdepim-version.h.cmake" |
363 |
else |
364 |
KMEXTRACTONLY+=" |
365 |
kdepim-version.h" |
366 |
fi |
367 |
if has kontact ${IUSE//+} && use kontact; then |
368 |
KMEXTRA+=" |
369 |
kontact/plugins/${PLUGINNAME:-${PN}}/" |
370 |
fi |
371 |
;; |
372 |
kdeutils) |
373 |
KMEXTRACTONLY+=" |
374 |
kdeutils-version.h" |
375 |
;; |
376 |
koffice) |
377 |
KMEXTRACTONLY+=" |
378 |
filters/config-filters.h.cmake |
379 |
" |
380 |
case ${PV} in |
381 |
2.[12].*) |
382 |
KMEXTRACTONLY+=" |
383 |
config-endian.h.cmake |
384 |
config-openexr.h.cmake |
385 |
config-opengl.h.cmake |
386 |
config-prefix.h.cmake" |
387 |
;; |
388 |
esac |
389 |
;; |
390 |
esac |
391 |
# Don't install cmake modules for split ebuilds, to avoid collisions. |
392 |
# note: kdegraphics >= 4.6.2 does not even have code to do that, so we |
393 |
# should not try in that case |
394 |
if [[ ${KMNAME} != kdegraphics ]] || { [[ ${SLOT} != 4.6 || ${PV} < 4.6.2 ]] && ! slot_is_at_least 4.7 ${SLOT}; }; then |
395 |
case ${KMNAME} in |
396 |
kdebase-runtime|kde-runtime|kdebase-workspace|kde-workspace|kdeedu|kdegames|kdegraphics) |
397 |
case ${PN} in |
398 |
libkdegames|libkdeedu|libkworkspace) |
399 |
KMEXTRA+=" |
400 |
cmake/modules/" |
401 |
;; |
402 |
*) |
403 |
KMCOMPILEONLY+=" |
404 |
cmake/modules/" |
405 |
;; |
406 |
esac |
407 |
;; |
408 |
esac |
409 |
fi |
410 |
|
411 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
412 |
} |
413 |
|
414 |
__list_needed_subdirectories() { |
415 |
local i j kmextra kmextra_expanded kmmodule_expanded kmcompileonly_expanded extractlist |
416 |
|
417 |
# We expand KMEXTRA by adding CMakeLists.txt files |
418 |
kmextra="${KMEXTRA}" |
419 |
[[ ${1} != fatal ]] && kmextra+=" ${KMEXTRA_NONFATAL}" |
420 |
for i in ${kmextra}; do |
421 |
kmextra_expanded+=" ${i}" |
422 |
j=$(dirname ${i}) |
423 |
while [[ ${j} != "." ]]; do |
424 |
kmextra_expanded+=" ${j}/CMakeLists.txt"; |
425 |
j=$(dirname ${j}) |
426 |
done |
427 |
done |
428 |
|
429 |
# Expand KMMODULE |
430 |
if [[ -n ${KMMODULE} ]]; then |
431 |
kmmodule_expanded="${KMMODULE}" |
432 |
j=$(dirname ${KMMODULE}) |
433 |
while [[ ${j} != "." ]]; do |
434 |
kmmodule_expanded+=" ${j}/CMakeLists.txt"; |
435 |
j=$(dirname ${j}) |
436 |
done |
437 |
fi |
438 |
|
439 |
# Expand KMCOMPILEONLY |
440 |
for i in ${KMCOMPILEONLY}; do |
441 |
kmcompileonly_expanded+=" ${i}" |
442 |
j=$(dirname ${i}) |
443 |
while [[ ${j} != "." ]]; do |
444 |
kmcompileonly_expanded+=" ${j}/CMakeLists.txt"; |
445 |
j=$(dirname ${j}) |
446 |
done |
447 |
done |
448 |
|
449 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmextra_expanded: ${kmextra_expanded}" |
450 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmmodule_expanded: ${kmmodule_expanded}" |
451 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmcompileonly_expanded: ${kmcompileonly_expanded}" |
452 |
|
453 |
# Create final list of stuff to extract |
454 |
# We append topdir only when specified (usually for tarballs) |
455 |
for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
456 |
${KMEXTRACTONLY} |
457 |
do |
458 |
extractlist+=" ${topdir}${moduleprefix}${i}" |
459 |
done |
460 |
|
461 |
echo ${extractlist} |
462 |
} |
463 |
|
464 |
# @FUNCTION: kde4-meta_src_prepare |
465 |
# @DESCRIPTION: |
466 |
# Meta-package build system configuration handling - commenting out targets, etc.. |
467 |
kde4-meta_src_prepare() { |
468 |
debug-print-function ${FUNCNAME} "$@" |
469 |
|
470 |
kde4-meta_change_cmakelists |
471 |
kde4-base_src_prepare |
472 |
} |
473 |
|
474 |
# @FUNCTION: _change_cmakelists_parent_dirs |
475 |
# @DESCRIPTION: |
476 |
# Adjust CMakeLists.txt to shadow subdirectories |
477 |
# that are not required for the build. |
478 |
_change_cmakelists_parent_dirs() { |
479 |
debug-print-function ${FUNCNAME} "$@" |
480 |
|
481 |
local _olddir _dir |
482 |
_dir="${S}"/${1} |
483 |
until [[ ${_dir} == ${S} ]]; do |
484 |
_olddir=$(basename "${_dir}") |
485 |
_dir=$(dirname "${_dir}") |
486 |
debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
487 |
if [[ -f ${_dir}/CMakeLists.txt ]]; then |
488 |
sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
489 |
-e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
490 |
-i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
491 |
fi |
492 |
done |
493 |
} |
494 |
|
495 |
# @FUNCTION: kde4-meta_change_cmakelists |
496 |
# @DESCRIPTION: |
497 |
# Adjust CMakeLists.txt to comply to our splitting. |
498 |
kde4-meta_change_cmakelists() { |
499 |
debug-print-function ${FUNCNAME} "$@" |
500 |
|
501 |
pushd "${S}" > /dev/null |
502 |
|
503 |
comment_all_add_subdirectory ./ |
504 |
|
505 |
# Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
506 |
if [[ -f CMakeLists.txt ]]; then |
507 |
sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
508 |
-e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
509 |
-i CMakeLists.txt || die "${LINENO}: cmake sed died" |
510 |
fi |
511 |
|
512 |
if [[ -z ${KMNOMODULE} ]]; then |
513 |
# Restore "add_subdirectory" in $KMMODULE subdirectories |
514 |
find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | \ |
515 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
516 |
die "${LINENO}: died in KMMODULE section" |
517 |
_change_cmakelists_parent_dirs ${KMMODULE} |
518 |
fi |
519 |
|
520 |
local i |
521 |
|
522 |
# KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
523 |
for i in ${KMEXTRACTONLY}; do |
524 |
if [[ -d ${i} && -f ${i}/../CMakeLists.txt ]]; then |
525 |
sed -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
526 |
-i ${i}/../CMakeLists.txt || \ |
527 |
die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
528 |
fi |
529 |
done |
530 |
|
531 |
# KMCOMPILEONLY |
532 |
for i in ${KMCOMPILEONLY}; do |
533 |
debug-print "${LINENO}: KMCOMPILEONLY, processing ${i}" |
534 |
# Uncomment "add_subdirectory" instructions inside $KMCOMPILEONLY, then comment "install" instructions. |
535 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
536 |
xargs -0 sed -i \ |
537 |
-e 's/^#DONOTCOMPILE //g' \ |
538 |
-e '/install(.*)/{s/^/#DONOTINSTALL /;}' \ |
539 |
-e '/^install(/,/)/{s/^/#DONOTINSTALL /;}' \ |
540 |
-e '/kde4_install_icons(.*)/{s/^/#DONOTINSTALL /;}' || \ |
541 |
die "${LINENO}: sed died in the KMCOMPILEONLY section while processing ${i}" |
542 |
_change_cmakelists_parent_dirs ${i} |
543 |
done |
544 |
|
545 |
# KMEXTRA section |
546 |
for i in ${KMEXTRA}; do |
547 |
debug-print "${LINENO}: KMEXTRA section, processing ${i}" |
548 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
549 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
550 |
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
551 |
_change_cmakelists_parent_dirs ${i} |
552 |
done |
553 |
# KMEXTRA_NONFATAL section |
554 |
for i in ${KMEXTRA_NONFATAL}; do |
555 |
if [[ -d "${S}"/${i} ]]; then |
556 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
557 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
558 |
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
559 |
_change_cmakelists_parent_dirs ${i} |
560 |
fi |
561 |
done |
562 |
|
563 |
case ${KMNAME} in |
564 |
kdebase-workspace | kde-workspace) |
565 |
# COLLISION PROTECT section |
566 |
# Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
567 |
# not as a part of every package. |
568 |
if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
569 |
# The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
570 |
sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
571 |
-i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
572 |
fi |
573 |
# Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
574 |
if [[ ${PN} != libkworkspace ]]; then |
575 |
sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
576 |
-i CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
577 |
fi |
578 |
;; |
579 |
kdebase-runtime | kde-runtime) |
580 |
# COLLISION PROTECT section |
581 |
# Only install the kde4 script as part of kde-base/kdebase-data |
582 |
if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
583 |
sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
584 |
-i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
585 |
fi |
586 |
;; |
587 |
kdenetwork) |
588 |
# Disable hardcoded kdepimlibs check |
589 |
sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
590 |
-i CMakeLists.txt || die "failed to disable hardcoded checks" |
591 |
;; |
592 |
kdepim) |
593 |
# Disable hardcoded checks |
594 |
sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
595 |
-e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
596 |
-e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
597 |
-e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
598 |
-e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
599 |
-i CMakeLists.txt || die "failed to disable hardcoded checks" |
600 |
# Disable broken or redundant build logic |
601 |
if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
602 |
sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
603 |
-e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
604 |
-i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
605 |
fi |
606 |
if ! slot_is_at_least 4.5 ${SLOT}; then |
607 |
case ${PN} in |
608 |
kalarm|kmailcvt|kontact|korganizer|korn) |
609 |
sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
610 |
-e '/add_custom_target(kmail_xml /,/)/p' \ |
611 |
-i kmail/CMakeLists.txt || die "uncommenting xml failed" |
612 |
_change_cmakelists_parent_dirs kmail |
613 |
;; |
614 |
esac |
615 |
fi |
616 |
;; |
617 |
kdewebdev) |
618 |
# Disable hardcoded checks |
619 |
sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
620 |
-e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
621 |
-e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
622 |
-e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
623 |
-i CMakeLists.txt || die "failed to disable hardcoded checks" |
624 |
;; |
625 |
koffice) |
626 |
# Prevent collisions |
627 |
if [[ ${PN} != koffice-data ]]; then |
628 |
sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
629 |
-i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
630 |
sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
631 |
-i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
632 |
fi |
633 |
esac |
634 |
|
635 |
popd > /dev/null |
636 |
} |
637 |
|
638 |
# @FUNCTION: kde4-meta_src_configure |
639 |
# @DESCRIPTION: |
640 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
641 |
# ebuilds. |
642 |
kde4-meta_src_configure() { |
643 |
debug-print-function ${FUNCNAME} "$@" |
644 |
|
645 |
# backwards-compatibility: make mycmakeargs an array, if it isn't already |
646 |
if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
647 |
mycmakeargs=(${mycmakeargs}) |
648 |
fi |
649 |
|
650 |
# Set some cmake default values here (usually workarounds for automagic deps) |
651 |
case ${KMNAME} in |
652 |
kdewebdev) |
653 |
mycmakeargs=( |
654 |
-DWITH_KdepimLibs=OFF |
655 |
-DWITH_LibXml2=OFF |
656 |
-DWITH_LibXslt=OFF |
657 |
-DWITH_Boost=OFF |
658 |
-DWITH_LibTidy=OFF |
659 |
"${mycmakeargs[@]}" |
660 |
) |
661 |
;; |
662 |
esac |
663 |
|
664 |
kde4-base_src_configure |
665 |
} |
666 |
|
667 |
# @FUNCTION: kde4-meta_src_compile |
668 |
# @DESCRIPTION: |
669 |
# General function for compiling split KDE4 applications. |
670 |
# Overrides kde4-base_src_compile. |
671 |
kde4-meta_src_compile() { |
672 |
debug-print-function ${FUNCNAME} "$@" |
673 |
|
674 |
kde4-base_src_compile "$@" |
675 |
} |
676 |
|
677 |
# @FUNCTION: kde4-meta_src_test |
678 |
# @DESCRIPTION: |
679 |
# Currently just calls its equivalent in kde4-base.eclass(5) if |
680 |
# I_KNOW_WHAT_I_AM_DOING is set. Use this in split ebuilds. |
681 |
kde4-meta_src_test() { |
682 |
debug-print-function $FUNCNAME "$@" |
683 |
|
684 |
if [[ $I_KNOW_WHAT_I_AM_DOING ]]; then |
685 |
kde4-base_src_test |
686 |
else |
687 |
einfo "Tests disabled" |
688 |
fi |
689 |
} |
690 |
|
691 |
# @FUNCTION: kde4-meta_src_install |
692 |
# @DESCRIPTION: |
693 |
# Function for installing KDE4 split applications. |
694 |
kde4-meta_src_install() { |
695 |
debug-print-function $FUNCNAME "$@" |
696 |
|
697 |
# Search ${S}/${KMMODULE} and install common documentation files found |
698 |
local doc |
699 |
for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
700 |
[[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
701 |
done |
702 |
|
703 |
kde4-base_src_install |
704 |
} |
705 |
|
706 |
# @FUNCTION: kde4-meta_pkg_preinst |
707 |
# @DESCRIPTION: |
708 |
# Invoke its equivalent in kde4-base.eclass. |
709 |
kde4-meta_pkg_preinst() { |
710 |
debug-print-function ${FUNCNAME} "$@" |
711 |
|
712 |
kde4-base_pkg_preinst |
713 |
} |
714 |
|
715 |
# @FUNCTION: kde4-meta_pkg_postinst |
716 |
# @DESCRIPTION: |
717 |
# Invoke kbuildsycoca4. |
718 |
kde4-meta_pkg_postinst() { |
719 |
debug-print-function ${FUNCNAME} "$@" |
720 |
|
721 |
kde4-base_pkg_postinst |
722 |
} |
723 |
|
724 |
# @FUNCTION: kde4-meta_pkg_postrm |
725 |
# @DESCRIPTION: |
726 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
727 |
# ebuilds. |
728 |
kde4-meta_pkg_postrm() { |
729 |
debug-print-function ${FUNCNAME} "$@" |
730 |
|
731 |
kde4-base_pkg_postrm |
732 |
} |