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