1 |
ingmar |
1.1 |
# Copyright 1999-2008 Gentoo Foundation |
2 |
|
|
# Distributed under the terms of the GNU General Public License v2 |
3 |
keytoaster |
1.3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.2 2008/02/15 19:48:40 zlin Exp $ |
4 |
ingmar |
1.1 |
# |
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 |
|
|
# NOTE: This eclass uses the SLOT dependencies from EAPI="1" or compatible, |
16 |
|
|
# hence you must define EAPI="1" in the ebuild, before inheriting any eclasses. |
17 |
|
|
|
18 |
|
|
inherit multilib kde4-functions kde4-base |
19 |
|
|
|
20 |
|
|
EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm |
21 |
|
|
|
22 |
|
|
if [[ -z ${KMNAME} ]]; then |
23 |
|
|
die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
24 |
|
|
fi |
25 |
|
|
|
26 |
|
|
case ${KDEBASE} in |
27 |
|
|
kde-base) HOMEPAGE="http://www.kde.org/" |
28 |
|
|
LICENSE="GPL-2" ;; |
29 |
|
|
koffice) HOMEPAGE="http://www.koffice.org/" |
30 |
|
|
LICENSE="GPL-2" ;; |
31 |
|
|
*) die "KDEBASE=${KDEBASE} is unsupported." ;; |
32 |
|
|
esac |
33 |
|
|
|
34 |
|
|
debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - before blockers" |
35 |
|
|
debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - before blockers" |
36 |
|
|
|
37 |
|
|
# Add a blocker on the package we're derived from |
38 |
|
|
DEPEND="${DEPEND} !$(get-parent-package ${CATEGORY}/${PN}):${SLOT}" |
39 |
|
|
RDEPEND="${RDEPEND} !$(get-parent-package ${CATEGORY}/${PN}):${SLOT}" |
40 |
|
|
|
41 |
|
|
debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after blockers" |
42 |
|
|
debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after blockers" |
43 |
|
|
|
44 |
|
|
# Add dependencies that all packages in a certain module share. |
45 |
|
|
case ${KMNAME} in |
46 |
|
|
kdebase|kdebase-workspace|kdebase-runtime) |
47 |
|
|
DEPEND="${DEPEND} >=kde-base/qimageblitz-0.0.4" |
48 |
|
|
RDEPEND="${RDEPEND} >=kde-base/qimageblitz-0.0.4" |
49 |
|
|
;; |
50 |
|
|
kdepim) |
51 |
|
|
if [[ ${PN} != kode ]]; then |
52 |
|
|
DEPEND="${DEPEND} >=kde-base/kode-${PV}:${SLOT}" |
53 |
|
|
RDEPEND="${RDEPEND} >=kde-base/kode-${PV}:${SLOT}" |
54 |
|
|
fi |
55 |
|
|
case ${PN} in |
56 |
|
|
akregator|kaddressbook|kmail|kmobiletools|knode|knotes|korganizer|ktimetracker) |
57 |
|
|
IUSE="+kontact" |
58 |
|
|
DEPEND="${DEPEND} kontact? ( >=kde-base/kontact-${PV}:${SLOT} )" |
59 |
|
|
RDEPEND="${RDEPEND} kontact? ( >=kde-base/kontact-${PV}:${SLOT} )" |
60 |
|
|
;; |
61 |
|
|
esac |
62 |
|
|
;; |
63 |
|
|
kdegames) |
64 |
|
|
if [[ ${PN} != "libkdegames" ]]; then |
65 |
|
|
DEPEND="${DEPEND} >=kde-base/libkdegames-${PV}:${SLOT}" |
66 |
|
|
RDEPEND="${RDEPEND} >=kde-base/libkdegames-${PV}:${SLOT}" |
67 |
|
|
fi |
68 |
|
|
;; |
69 |
|
|
koffice) |
70 |
|
|
case ${PN} in |
71 |
|
|
koffice-libs|koffice-data) : ;; |
72 |
|
|
*) |
73 |
|
|
DEPEND="${DEPEND} >=app-office/koffice-libs-${PV}:${SLOT}" |
74 |
|
|
RDEPEND="${RDEPEND} >=app-office/koffice-libs-${PV}:${SLOT}" |
75 |
|
|
;; |
76 |
|
|
esac |
77 |
|
|
;; |
78 |
|
|
esac |
79 |
|
|
|
80 |
|
|
debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after metapackage-specific dependencies" |
81 |
|
|
debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
82 |
|
|
|
83 |
|
|
# @ECLASS-VARIABLE: KMNAME |
84 |
|
|
# @DESCRIPTION: |
85 |
|
|
# Name of the parent-module (e.g. kdebase, kdepim, ...). You _must_ set it _before_ inheriting this eclass, |
86 |
|
|
# (unlike the other parameters), since it's used to set $SRC_URI. |
87 |
|
|
|
88 |
|
|
# @ECLASS-VARIABLE: KMMODULE |
89 |
|
|
# @DESCRIPTION: |
90 |
|
|
# Specify exactly one subdirectory of $KMNAME here. Defaults to $PN. |
91 |
|
|
# The subdirectory listed here is treated exactly like items in $KMEXTRA. |
92 |
|
|
# |
93 |
|
|
# Example: The ebuild name of "kdebase/l10n" is kde-base/kdebase-l10n, because |
94 |
|
|
# just 'l10n' would be too confusing. Hence it sets KMMODULE="l10n". |
95 |
|
|
|
96 |
|
|
# @ECLASS-VARIABLE: KMNOMODULE |
97 |
|
|
# @DESCRIPTION: |
98 |
|
|
# If set to "true", $KMMODULE doesn't have to be defined. |
99 |
|
|
# |
100 |
|
|
# Example usage: If you're installing subdirectories of a package, like plugins, |
101 |
|
|
# you mark the topsubdirectory (containing the package) as $KMEXTRACTONLY, and set KMNOMODULE="true". |
102 |
|
|
if [[ ${KMNOMODULE} != "true" && -z ${KMMODULE} ]]; then |
103 |
|
|
KMMODULE=${PN} |
104 |
|
|
fi |
105 |
|
|
|
106 |
|
|
# @ECLASS-VARIABLE: KMEXTRA |
107 |
|
|
# @DESCRIPTION: |
108 |
|
|
# All subdirectories listed here will be extracted, compiled & installed. |
109 |
|
|
# $KMMODULE is always added to $KMEXTRA. |
110 |
|
|
# If the htmlhandbook USE-flag is set, and if this directory exists, |
111 |
|
|
# then "doc/$KMMODULE" is added to $KMEXTRA. In other cases, this should be |
112 |
|
|
# handled in the ebuild. |
113 |
|
|
# If the documentation is in a different subdirectory, you should add it to KMEXTRA. |
114 |
|
|
|
115 |
|
|
# @ECLASS-VARIABLE: KMCOMPILEONLY |
116 |
|
|
# @DESCRIPTION: |
117 |
|
|
# All subdirectories listed here will be extracted & compiled, but not installed. |
118 |
|
|
|
119 |
|
|
# @ECLASS-VARIABLE: KMEXTRACTONLY |
120 |
|
|
# @DESCRIPTION: |
121 |
|
|
# All subdirectories listed here will be extracted, but not compiled nor installed. |
122 |
|
|
# This can be used to avoid compilation in a subdirectory of a directory in $KMMODULE or $KMEXTRA |
123 |
|
|
|
124 |
|
|
# @ECLASS-VARIABLE: KMTARPARAMS |
125 |
|
|
# @DESCRIPTION: |
126 |
|
|
# Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
127 |
|
|
# '-xpf -j' are passed to tar by default. |
128 |
|
|
|
129 |
|
|
# @FUNCTION: kde4-meta_pkg_setup |
130 |
|
|
# @DESCRIPTION: |
131 |
|
|
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
132 |
|
|
# ebuilds. |
133 |
|
|
kde4-meta_pkg_setup() { |
134 |
|
|
kde4-base_pkg_setup |
135 |
|
|
} |
136 |
|
|
|
137 |
|
|
# @FUNCTION: kde4-meta_src_unpack |
138 |
|
|
# @DESCRIPTION: |
139 |
|
|
# This function unpacks the source for split ebuilds. See also |
140 |
|
|
# kde4-meta-src_extract. |
141 |
|
|
kde4-meta_src_unpack() { |
142 |
|
|
debug-print-function ${FUNCNAME} "$@" |
143 |
|
|
|
144 |
|
|
if [[ ${KMNAME} = kdepim ]] && \ |
145 |
|
|
has kontact ${IUSE//+} && \ |
146 |
|
|
use kontact; then |
147 |
|
|
KMEXTRA="${KMEXTRA} kontact/plugins/${PLUGINNAME:-${PN}}" |
148 |
|
|
KMEXTRACTONLY="${KMEXTRACTONLY} kontact/interfaces/" |
149 |
|
|
fi |
150 |
|
|
|
151 |
|
|
kde4-meta_src_extract |
152 |
|
|
kde4-meta_change_cmakelists |
153 |
|
|
} |
154 |
|
|
|
155 |
|
|
# @FUNCTION: kde4-meta_src_extract |
156 |
|
|
# @DESCRIPTION: |
157 |
|
|
# A function to unpack the source for a split KDE ebuild. |
158 |
|
|
# Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and KMTARPARAMS. |
159 |
|
|
kde4-meta_src_extract() { |
160 |
|
|
local tarball tarfile f extractlist |
161 |
|
|
tarball="${KMNAME}-${PV}.tar.bz2" |
162 |
|
|
tarfile="${DISTDIR}"/${tarball} |
163 |
|
|
|
164 |
|
|
einfo "Unpacking parts of ${tarball} to ${WORKDIR}" |
165 |
|
|
|
166 |
|
|
kde4-meta_create_extractlists |
167 |
|
|
|
168 |
|
|
for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake \ |
169 |
|
|
AUTHORS COPYING INSTALL README NEWS ChangeLog |
170 |
|
|
do |
171 |
|
|
extractlist="${extractlist} ${KMNAME}-${PV}/${f}" |
172 |
|
|
done |
173 |
|
|
extractlist="${extractlist} $(__list_needed_subdirectories)" |
174 |
|
|
KMTARPARAMS="${KMTARPARAMS} -j" |
175 |
|
|
|
176 |
|
|
pushd "${WORKDIR}" > /dev/null |
177 |
|
|
tar -xpf $tarfile $KMTARPARAMS $extractlist 2> /dev/null |
178 |
|
|
|
179 |
|
|
# Default $S is based on $P; rename the extracted directory to match $S |
180 |
|
|
mv ${KMNAME}-${PV} ${P} || die "Died while moving \"${KMNAME}-${PV}\" to \"${P}\"" |
181 |
|
|
|
182 |
|
|
popd > /dev/null |
183 |
|
|
kde4-base_src_unpack |
184 |
|
|
} |
185 |
|
|
|
186 |
|
|
# Create lists of files and subdirectories to extract. |
187 |
|
|
# Also see the descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and KMTARPARAMS. |
188 |
|
|
kde4-meta_create_extractlists() { |
189 |
|
|
debug-print-function ${FUNCNAME} "$@" |
190 |
|
|
|
191 |
|
|
if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
192 |
|
|
# We use the basename of $KMMODULE because $KMMODULE can contain |
193 |
|
|
# the path to the module subdirectory. |
194 |
|
|
KMEXTRA="${KMEXTRA} doc/${KMMODULE##*/}" |
195 |
|
|
fi |
196 |
|
|
|
197 |
|
|
# Add some CMake-files to KMEXTRACTONLY. |
198 |
|
|
# Note that this actually doesn't include KMEXTRA handling. |
199 |
|
|
# In those cases you should care to add the relevant files to KMEXTRACTONLY |
200 |
|
|
case ${KMNAME} in |
201 |
|
|
kdebase) |
202 |
|
|
KMEXTRACTONLY="${KMEXTRACTONLY} |
203 |
|
|
apps/config-apps.h.cmake |
204 |
|
|
apps/ConfigureChecks.cmake" |
205 |
|
|
;; |
206 |
|
|
kdebase-runtime) |
207 |
|
|
KMEXTRACTONLY="${KMEXTRACTONLY} |
208 |
|
|
config-runtime.h.cmake" |
209 |
|
|
;; |
210 |
|
|
kdebase-workspace) |
211 |
|
|
KMEXTRACTONLY="${KMEXTRACTONLY} |
212 |
|
|
config-unix.h.cmake |
213 |
|
|
ConfigureChecks.cmake |
214 |
|
|
config-workspace.h.cmake |
215 |
|
|
config-X11.h.cmake |
216 |
|
|
startkde.cmake" |
217 |
|
|
;; |
218 |
|
|
kdegames) |
219 |
|
|
if [[ ${PN} != "libkdegames" ]]; then |
220 |
|
|
KMEXTRACTONLY="${KMEXTRACTONLY} |
221 |
|
|
libkdegames" |
222 |
|
|
fi |
223 |
|
|
;; |
224 |
|
|
koffice) |
225 |
|
|
KMEXTRACTONLY="${KMEXTRACTONLY} |
226 |
|
|
config-endian.h.cmake |
227 |
|
|
filters/config-filters.h.cmake |
228 |
|
|
config-openexr.h.cmake |
229 |
|
|
config-opengl.h.cmake |
230 |
|
|
config-prefix.h.cmake" |
231 |
|
|
;; |
232 |
|
|
esac |
233 |
|
|
# Don't install cmake modules for split ebuilds to avoid collisions. |
234 |
|
|
case ${KMNAME} in |
235 |
|
|
kdebase-workspace|kdebase-runtime|kdepim|kdegames) |
236 |
keytoaster |
1.3 |
if [[ ${PN} != "libkdegames" ]]; then |
237 |
|
|
KMCOMPILEONLY="${KMCOMPILEONLY} |
238 |
|
|
cmake/modules/" |
239 |
|
|
else |
240 |
|
|
KMEXTRA="${KMEXTRA} |
241 |
|
|
cmake/modules/" |
242 |
|
|
fi |
243 |
ingmar |
1.1 |
;; |
244 |
|
|
esac |
245 |
|
|
|
246 |
|
|
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
247 |
|
|
} |
248 |
|
|
|
249 |
|
|
__list_needed_subdirectories() { |
250 |
|
|
local i j kmextra_expanded kmmodule_expanded kmcompileonly_expanded extractlist topdir |
251 |
|
|
|
252 |
|
|
# We expand KMEXTRA by adding CMakeLists.txt files |
253 |
|
|
for i in ${KMEXTRA}; do |
254 |
|
|
kmextra_expanded="${kmextra_expanded} ${i}" |
255 |
|
|
j=$(dirname ${i}) |
256 |
|
|
while [[ ${j} != "." ]]; do |
257 |
|
|
kmextra_expanded="${kmextra_expanded} ${j}/CMakeLists.txt"; |
258 |
|
|
j=$(dirname ${j}) |
259 |
|
|
done |
260 |
|
|
done |
261 |
|
|
|
262 |
|
|
# Expand KMMODULE |
263 |
|
|
if [[ -n ${KMMODULE} ]]; then |
264 |
|
|
kmmodule_expanded="${KMMODULE}" |
265 |
|
|
j=$(dirname ${KMMODULE}) |
266 |
|
|
while [[ ${j} != "." ]]; do |
267 |
|
|
kmmodule_expanded="${kmmodule_expanded} $j/CMakeLists.txt"; |
268 |
|
|
j=$(dirname $j) |
269 |
|
|
done |
270 |
|
|
fi |
271 |
|
|
|
272 |
|
|
# Expand KMCOMPILEONLY |
273 |
|
|
for i in ${KMCOMPILEONLY}; do |
274 |
|
|
kmcompileonly_expanded="${kmcompileonly_expanded} ${i}" |
275 |
|
|
j=$(dirname ${i}) |
276 |
|
|
while [[ ${j} != "." ]]; do |
277 |
|
|
kmcompileonly_expanded="${kmcompileonly_expanded} ${j}/CMakeLists.txt"; |
278 |
|
|
j=$(dirname ${j}) |
279 |
|
|
done |
280 |
|
|
done |
281 |
|
|
|
282 |
|
|
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmextra_expanded: ${kmextra_expanded}" |
283 |
|
|
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmmodule_expanded: ${kmmodule_expanded}" |
284 |
|
|
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmcompileonly_expanded: ${kmcompileonly_expanded}" |
285 |
|
|
|
286 |
|
|
|
287 |
|
|
case ${NEED_KDE} in |
288 |
|
|
svn) : ;; |
289 |
|
|
*) topdir="${KMNAME}-${PV}/" ;; |
290 |
|
|
esac |
291 |
|
|
|
292 |
|
|
# Create final list of stuff to extract |
293 |
|
|
for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
294 |
|
|
${KMEXTRACTONLY} |
295 |
|
|
do |
296 |
|
|
extractlist="${extractlist} ${topdir}${i}" |
297 |
|
|
done |
298 |
|
|
|
299 |
|
|
echo ${extractlist} |
300 |
|
|
} |
301 |
|
|
|
302 |
|
|
# @FUNCTION: kde4-meta_src_compile |
303 |
|
|
# @DESCRIPTION: |
304 |
|
|
# General function for compiling split KDE4 applications. |
305 |
|
|
kde4-meta_src_compile() { |
306 |
|
|
debug-print-function ${FUNCNAME} "$@" |
307 |
|
|
|
308 |
|
|
kde4-meta_src_configure |
309 |
|
|
kde4-meta_src_make |
310 |
|
|
} |
311 |
|
|
|
312 |
|
|
_change_cmakelists_parent_dirs() { |
313 |
|
|
debug-print-function ${FUNCNAME} "$@" |
314 |
|
|
|
315 |
|
|
local _olddir _dir |
316 |
|
|
_dir="${S}"/${1} |
317 |
|
|
until [[ ${_dir} == "${S}" ]]; do |
318 |
|
|
_olddir=$(basename ${_dir}) |
319 |
|
|
_dir=$(dirname ${_dir}) |
320 |
|
|
debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
321 |
|
|
if [[ -f ${_dir}/CMakeLists.txt ]]; then |
322 |
|
|
sed -i -e "/[[:space:]]*${_olddir}[[:space:]]*/s/^#DONOTCOMPILE //" ${_dir}/CMakeLists.txt || \ |
323 |
|
|
die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
324 |
|
|
fi |
325 |
|
|
done |
326 |
|
|
} |
327 |
|
|
|
328 |
|
|
kde4-meta_change_cmakelists() { |
329 |
|
|
debug-print-function ${FUNCNAME} "$@" |
330 |
|
|
|
331 |
|
|
pushd "${S}" > /dev/null |
332 |
|
|
|
333 |
|
|
comment_all_add_subdirectory ./ |
334 |
|
|
|
335 |
|
|
# Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
336 |
|
|
if [[ -f "${S}"/CMakeLists.txt ]]; then |
337 |
|
|
sed -i -e '/ *cmake */s/^#DONOTCOMPILE //' "${S}"/CMakeLists.txt || die "${LINENO}: cmake sed died" |
338 |
|
|
fi |
339 |
|
|
|
340 |
|
|
if [[ -z ${KMNOMODULE} ]]; then |
341 |
|
|
# Restore "add_subdirectory" in $KMMODULE subdirectories |
342 |
|
|
find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
343 |
|
|
die "${LINENO}: died in KMMODULE section" |
344 |
|
|
_change_cmakelists_parent_dirs ${KMMODULE} |
345 |
|
|
fi |
346 |
|
|
|
347 |
|
|
# KMCOMPILEONLY |
348 |
|
|
local i |
349 |
|
|
for i in ${KMCOMPILEONLY}; do |
350 |
|
|
debug-print "${LINENO}: KMCOMPILEONLY, processing ${i}" |
351 |
|
|
# Uncomment "add_subdirectory" instructions inside $KMCOMPILEONLY, then comment "install" instructions. |
352 |
|
|
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
353 |
|
|
xargs -0 sed -i \ |
354 |
|
|
-e 's/^#DONOTCOMPILE //g' \ |
355 |
|
|
-e '/install(.*)/{s/^/#DONOTINSTALL /;}' \ |
356 |
|
|
-e '/^install(/,/)/{s/^/#DONOTINSTALL /;}' \ |
357 |
|
|
-e '/kde4_install_icons(.*)/{s/^/#DONOTINSTALL /;}' || \ |
358 |
|
|
die "${LINENO}: sed died in the KMCOMPILEONLY section while processing ${i}" |
359 |
|
|
_change_cmakelists_parent_dirs ${i} |
360 |
|
|
done |
361 |
|
|
|
362 |
|
|
# KMEXTRA section |
363 |
|
|
for i in ${KMEXTRA}; do |
364 |
|
|
debug-print "${LINENO}: KMEXTRA section, processing ${i}" |
365 |
|
|
# Ebuilds use KMEXTRA incorrectly to extract files which should be in $KMEXTRACTONLY |
366 |
|
|
if [[ -d "${S}"/${i} ]]; then |
367 |
|
|
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
368 |
|
|
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
369 |
|
|
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
370 |
|
|
_change_cmakelists_parent_dirs ${i} |
371 |
|
|
else |
372 |
|
|
[[ ${i} == doc/* ]] || \ |
373 |
|
|
die "KMEXTRA should be used to compile and install subdirectories other than \$KMMODULE. Use KMEXTRACTONLY to extract some files." |
374 |
|
|
fi |
375 |
|
|
done |
376 |
|
|
|
377 |
|
|
# Documentation section |
378 |
|
|
if [[ -n ${docs} ]]; then |
379 |
|
|
sed -i -e '/ *doc */s/^#DONOTCOMPILE //g' "${S}"/CMakeLists.txt || \ |
380 |
|
|
die "${LINENO}: sed died while uncommenting doc dir" |
381 |
|
|
|
382 |
|
|
if [[ -f "${S}"/doc/CMakeLists.txt ]]; then |
383 |
|
|
sed -i -e "/( *${KMMODULE##*/} *)/s/^#DONOTCOMPILE //g" "${S}"/doc/CMakeLists.txt \ |
384 |
|
|
|| die "${LINENO}: sed died while uncommenting apps documentation in doc subdir " |
385 |
|
|
fi |
386 |
|
|
fi |
387 |
|
|
|
388 |
|
|
# KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
389 |
|
|
for i in ${KMEXTRACTONLY}; do |
390 |
|
|
if [[ -d "${S}"/${i} && -f "${S}"/${i}/../CMakeLists.txt ]]; then |
391 |
|
|
sed -i -e "/( *$(basename $i) *)/s/^/#DONOTCOMPILE /" "${S}"/${i}/../CMakeLists.txt || \ |
392 |
|
|
die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
393 |
|
|
fi |
394 |
|
|
done |
395 |
|
|
|
396 |
|
|
# COLLISION PROTECT section |
397 |
|
|
# Only install the startkde script as part of kde-base/kdebase-startkde, |
398 |
|
|
# instead of with every package. |
399 |
|
|
case ${KMNAME} in |
400 |
|
|
kdebase-workspace) |
401 |
|
|
if [[ ${PN} != "kdebase-startkde" && -f "${S}"/CMakeLists.txt ]]; then |
402 |
|
|
case ${PV} in |
403 |
|
|
*) # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
404 |
|
|
sed -i -e '/startkde/s/^/#DONOTINSTALL /' "${S}"/CMakeLists.txt || \ |
405 |
|
|
die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
406 |
|
|
;; |
407 |
|
|
esac |
408 |
|
|
fi |
409 |
|
|
;; |
410 |
zlin |
1.2 |
# This is sort of a hack to avoid patching 16 kdeutils packages with |
411 |
|
|
# r775410 from upstream trunk which makes blitz optional so superkaramba |
412 |
|
|
# only gets compiled when it is found. Bug #209324. Remove this no later |
413 |
|
|
# than 4.1. |
414 |
|
|
kdeutils) |
415 |
|
|
if [[ ${PN} != superkaramba && ${SLOT} == kde-4 ]]; then |
416 |
|
|
sed -i -e '/find_package(Blitz REQUIRED)/d' "${S}"/CMakeLists.txt \ |
417 |
|
|
|| die "${LINENO}: sed to remove dependency on Blitz failed." |
418 |
|
|
fi |
419 |
|
|
;; |
420 |
ingmar |
1.1 |
koffice) |
421 |
|
|
if [[ ${PN} != koffice-libs ]]; then |
422 |
|
|
sed -i -e '/^INSTALL(FILES.*koffice.desktop/ s/^/#DONOTINSTALL /' \ |
423 |
|
|
doc/CMakeLists.txt || \ |
424 |
|
|
die "${LINENO}: sed died in the koffice.desktop collision prevention section" |
425 |
|
|
fi |
426 |
|
|
;; |
427 |
|
|
esac |
428 |
|
|
|
429 |
|
|
popd > /dev/null |
430 |
|
|
} |
431 |
|
|
|
432 |
|
|
# @FUNCTION: kde4-meta_src_configure |
433 |
|
|
# @DESCRIPTION: |
434 |
|
|
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
435 |
|
|
# ebuilds. |
436 |
|
|
kde4-meta_src_configure() { |
437 |
|
|
debug-print-function ${FUNCNAME} "$@" |
438 |
|
|
|
439 |
|
|
kde4-base_src_configure |
440 |
|
|
} |
441 |
|
|
|
442 |
|
|
# @FUNCTION: kde4-meta_src_make |
443 |
|
|
# @DESCRIPTION: |
444 |
|
|
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
445 |
|
|
# ebuilds. |
446 |
|
|
kde4-meta_src_make() { |
447 |
|
|
debug-print-function ${FUNCNAME} "$@" |
448 |
|
|
|
449 |
|
|
kde4-base_src_make |
450 |
|
|
} |
451 |
|
|
|
452 |
|
|
# @FUNCTION: kde4-meta_src_test |
453 |
|
|
# @DESCRIPTION: |
454 |
|
|
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
455 |
|
|
# ebuilds. |
456 |
|
|
kde4-meta_src_test() { |
457 |
|
|
debug-print-function $FUNCNAME "$@" |
458 |
|
|
|
459 |
|
|
kde4-base_src_test |
460 |
|
|
} |
461 |
|
|
|
462 |
|
|
# @FUNCTION: kde4-meta_src_install |
463 |
|
|
# @DESCRIPTION: |
464 |
|
|
# Function for installing KDE4 split applications. |
465 |
|
|
kde4-meta_src_install() { |
466 |
|
|
debug-print-function $FUNCNAME "$@" |
467 |
|
|
|
468 |
|
|
kde4-meta_src_make_doc |
469 |
|
|
cmake-utils_src_install |
470 |
|
|
} |
471 |
|
|
|
472 |
|
|
# @FUNCTION: kde4-meta_src_make_doc |
473 |
|
|
# @DESCRIPTION: |
474 |
|
|
# This function searches under ${S}/${KMMODULE}, |
475 |
|
|
# and tries to install "AUTHORS ChangeLog* README* NEWS todo" if these files exist. |
476 |
|
|
kde4-meta_src_make_doc() { |
477 |
|
|
debug-print-function $FUNCNAME "$@" |
478 |
|
|
|
479 |
|
|
local doc |
480 |
|
|
for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
481 |
|
|
[[ -s ${KMMODULE}/$doc ]] && newdoc "${KMMODULE}/${doc}" "${doc}.${KMMODULE##*/}" |
482 |
|
|
done |
483 |
|
|
|
484 |
|
|
kde4-base_src_make_doc |
485 |
|
|
} |
486 |
|
|
|
487 |
|
|
# @FUNCTION: kde4-meta_pkg_postinst |
488 |
|
|
# @DESCRIPTION: |
489 |
|
|
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
490 |
|
|
# ebuilds. |
491 |
|
|
kde4-meta_pkg_postinst() { |
492 |
|
|
kde4-base_pkg_postinst |
493 |
|
|
} |
494 |
|
|
|
495 |
|
|
# @FUNCTION: kde4-meta_pkg_postrm |
496 |
|
|
# @DESCRIPTION: |
497 |
|
|
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
498 |
|
|
# ebuilds. |
499 |
|
|
kde4-meta_pkg_postrm() { |
500 |
|
|
kde4-base_pkg_postrm |
501 |
|
|
} |