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