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