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