| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2012 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.1 2008/01/16 22:51:47 ingmar Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.66 2012/08/02 07:29:29 johu 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 ${KDE_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 [[ ${KDE_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 [[ ${KDE_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 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}"/* "${S}" \ |
|
|
191 | || die "${escm}: can't export toplevel files to '${S}'." |
|
|
192 | # Copy cmake directory |
|
|
193 | if [[ -d "${wc_path}/cmake" ]]; then |
|
|
194 | rsync --recursive ${rsync_options} "${wc_path}/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/$subdir" ]]; then |
|
|
201 | continue |
|
|
202 | fi |
|
|
203 | |
|
|
204 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
|
|
205 | rsync --recursive ${rsync_options} "${wc_path}/${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 postfix |
|
|
212 | |
|
|
213 | if [[ ${PV} =~ 4.[47].[12345] ]]; then |
|
|
214 | postfix="bz2" |
|
|
215 | KMTARPARAMS+=" --bzip2" |
|
|
216 | else |
|
|
217 | postfix="xz" |
|
|
218 | KMTARPARAMS+=" --xz" |
|
|
219 | fi |
|
|
220 | |
|
|
221 | case ${KMNAME} in |
|
|
222 | kdebase-apps) |
|
|
223 | # kdebase/apps -> kdebase-apps |
|
|
224 | tarball="kdebase-${PV}.tar.${postfix}" |
|
|
225 | ;; |
|
|
226 | *) |
|
|
227 | # Create tarball name from module name (this is the default) |
|
|
228 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
|
|
229 | ;; |
|
|
230 | esac |
|
|
231 | |
|
|
232 | # Full path to source tarball |
|
|
233 | tarfile="${DISTDIR}/${tarball}" |
|
|
234 | |
|
|
235 | # 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 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
|
|
240 | |
|
|
241 | kde4-meta_create_extractlists |
|
|
242 | |
| 168 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake \ |
243 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake |
| 169 | AUTHORS COPYING INSTALL README NEWS ChangeLog |
|
|
| 170 | do |
244 | do |
| 171 | extractlist="${extractlist} ${KMNAME}-${PV}/${f}" |
245 | extractlist+=" ${topdir}${f}" |
| 172 | done |
246 | done |
| 173 | extractlist="${extractlist} $(__list_needed_subdirectories)" |
247 | extractlist+=" $(__list_needed_subdirectories)" |
| 174 | KMTARPARAMS="${KMTARPARAMS} -j" |
|
|
| 175 | |
248 | |
| 176 | pushd "${WORKDIR}" > /dev/null |
249 | pushd "${WORKDIR}" > /dev/null |
| 177 | tar -xpf $tarfile $KMTARPARAMS $extractlist 2> /dev/null |
|
|
| 178 | |
250 | |
|
|
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 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
|
|
257 | |
| 179 | # Default $S is based on $P; rename the extracted directory to match $S |
258 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
|
|
259 | if [[ ${KMNAME} != ${PN} ]]; then |
| 180 | mv ${KMNAME}-${PV} ${P} || die "Died while moving \"${KMNAME}-${PV}\" to \"${P}\"" |
260 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
|
|
261 | fi |
| 181 | |
262 | |
| 182 | popd > /dev/null |
263 | popd > /dev/null |
| 183 | kde4-base_src_unpack |
|
|
| 184 | } |
|
|
| 185 | |
264 | |
|
|
265 | eend $? |
|
|
266 | |
|
|
267 | if [[ -n ${KDE4_STRICTER} ]]; then |
|
|
268 | for f in $(__list_needed_subdirectories fatal); do |
|
|
269 | if [[ ! -e ${S}/${f#*/} ]]; then |
|
|
270 | eerror "'${f#*/}' is missing" |
|
|
271 | abort=true |
|
|
272 | fi |
|
|
273 | done |
|
|
274 | [[ -n ${abort} ]] && die "There were missing files." |
|
|
275 | fi |
|
|
276 | |
|
|
277 | # We don't need it anymore |
|
|
278 | unset topdir |
|
|
279 | fi |
|
|
280 | } |
|
|
281 | |
|
|
282 | # @FUNCTION: kde4-meta_create_extractlists |
|
|
283 | # @DESCRIPTION: |
| 186 | # Create lists of files and subdirectories to extract. |
284 | # Create lists of files and subdirectories to extract. |
| 187 | # Also see the descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and KMTARPARAMS. |
285 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
|
|
286 | # KMEXTRACTONLY and KMTARPARAMS. |
| 188 | kde4-meta_create_extractlists() { |
287 | kde4-meta_create_extractlists() { |
| 189 | debug-print-function ${FUNCNAME} "$@" |
288 | debug-print-function ${FUNCNAME} "$@" |
| 190 | |
289 | |
| 191 | if has htmlhandbook ${IUSE//+} && use htmlhandbook; then |
290 | # Add default handbook locations |
|
|
291 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
|
|
292 | if [[ $(get_kde_version) < 4.5 ]] && use_if_iuse handbook && [[ -z ${KMNOMODULE} ]]; then |
| 192 | # We use the basename of $KMMODULE because $KMMODULE can contain |
293 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 193 | # the path to the module subdirectory. |
294 | # the path to the module subdirectory. |
|
|
295 | KMEXTRA_NONFATAL+=" |
|
|
296 | doc/${KMMODULE##*/}" |
|
|
297 | fi |
|
|
298 | |
|
|
299 | # Add default handbook locations |
|
|
300 | if [[ -z ${KMNOMODULE} ]] && ( [[ ${KDE_HANDBOOK} == always ]] || ( [[ ${KDE_HANDBOOK} == optional ]] && use handbook ) ); then |
| 194 | KMEXTRA="${KMEXTRA} doc/${KMMODULE##*/}" |
301 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
| 195 | fi |
302 | fi |
| 196 | |
303 | |
| 197 | # Add some CMake-files to KMEXTRACTONLY. |
304 | # Add some CMake-files to KMEXTRACTONLY. |
| 198 | # Note that this actually doesn't include KMEXTRA handling. |
305 | # Note that this actually doesn't include KMEXTRA handling. |
| 199 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
306 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| 200 | case ${KMNAME} in |
307 | case ${KMNAME} in |
| 201 | kdebase) |
308 | kdebase | kdebase-apps | kde-baseapps) |
| 202 | KMEXTRACTONLY="${KMEXTRACTONLY} |
309 | KMEXTRACTONLY+=" |
| 203 | apps/config-apps.h.cmake |
310 | config-apps.h.cmake |
| 204 | apps/ConfigureChecks.cmake" |
311 | ConfigureChecks.cmake" |
| 205 | ;; |
312 | ;; |
| 206 | kdebase-runtime) |
313 | kdebase-runtime | kde-runtime) |
| 207 | KMEXTRACTONLY="${KMEXTRACTONLY} |
314 | KMEXTRACTONLY+=" |
|
|
315 | CTestConfig.cmake |
| 208 | config-runtime.h.cmake" |
316 | config-runtime.h.cmake" |
| 209 | ;; |
317 | ;; |
| 210 | kdebase-workspace) |
318 | kdebase-workspace | kde-workspace) |
| 211 | KMEXTRACTONLY="${KMEXTRACTONLY} |
319 | KMEXTRACTONLY+=" |
| 212 | config-unix.h.cmake |
320 | config-unix.h.cmake |
| 213 | ConfigureChecks.cmake |
321 | ConfigureChecks.cmake |
| 214 | config-workspace.h.cmake |
322 | config-workspace.h.cmake |
| 215 | config-X11.h.cmake |
323 | config-X11.h.cmake |
| 216 | startkde.cmake" |
324 | startkde.cmake |
|
|
325 | KDE4WorkspaceConfig.cmake.in" |
| 217 | ;; |
326 | ;; |
| 218 | kdegames) |
327 | kdegames) |
| 219 | if [[ ${PN} != "libkdegames" ]]; then |
328 | if [[ ${PN} != libkdegames ]]; then |
| 220 | KMEXTRACTONLY="${KMEXTRACTONLY} |
329 | KMEXTRACTONLY+=" |
| 221 | libkdegames" |
330 | libkdegames/" |
|
|
331 | KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 222 | fi |
332 | fi |
| 223 | ;; |
333 | ;; |
|
|
334 | kdepim) |
|
|
335 | if [[ ${PN} != libkdepim ]]; then |
|
|
336 | KMEXTRACTONLY+=" |
|
|
337 | libkdepim/" |
|
|
338 | fi |
|
|
339 | KMEXTRACTONLY+=" |
|
|
340 | config-enterprise.h.cmake |
|
|
341 | kleopatra/ConfigureChecks.cmake" |
|
|
342 | if ! [[ $(get_kde_version) < 4.5 ]]; then |
|
|
343 | KMEXTRACTONLY+=" |
|
|
344 | CTestCustom.cmake |
|
|
345 | kdepim-version.h.cmake" |
|
|
346 | else |
|
|
347 | KMEXTRACTONLY+=" |
|
|
348 | kdepim-version.h" |
|
|
349 | fi |
|
|
350 | if use_if_iuse kontact; then |
|
|
351 | KMEXTRA+=" |
|
|
352 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
|
|
353 | fi |
|
|
354 | ;; |
|
|
355 | kdeutils) |
|
|
356 | KMEXTRACTONLY+=" |
|
|
357 | kdeutils-version.h" |
|
|
358 | ;; |
| 224 | koffice) |
359 | koffice) |
| 225 | KMEXTRACTONLY="${KMEXTRACTONLY} |
360 | KMEXTRACTONLY+=" |
| 226 | config-endian.h.cmake |
|
|
| 227 | filters/config-filters.h.cmake |
361 | filters/config-filters.h.cmake |
|
|
362 | " |
|
|
363 | case ${PV} in |
|
|
364 | 2.[12].*) |
|
|
365 | KMEXTRACTONLY+=" |
|
|
366 | config-endian.h.cmake |
| 228 | config-openexr.h.cmake |
367 | config-openexr.h.cmake |
| 229 | config-opengl.h.cmake |
368 | config-opengl.h.cmake |
| 230 | config-prefix.h.cmake" |
369 | config-prefix.h.cmake" |
|
|
370 | ;; |
|
|
371 | esac |
| 231 | ;; |
372 | ;; |
| 232 | esac |
373 | esac |
| 233 | # Don't install cmake modules for split ebuilds to avoid collisions. |
374 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
|
|
375 | # note: kdegraphics >= 4.6.2 does not even have code to do that, so we |
|
|
376 | # should not try in that case |
|
|
377 | # note2: kdeedu 4.6.4 does not have a cmake/modules/ subdir anymore :( |
|
|
378 | # it may be possible to formulate this shorter, but it should also |
|
|
379 | # still be understandable... |
|
|
380 | if [[ ${KMNAME} != kdegraphics || ( ( $(get_kde_version) != 4.6 || ${PV} < 4.6.2 ) && $(get_kde_version) < 4.7 ) ]] \ |
|
|
381 | && ! [[ ${KMNAME} == kdeedu && ( ${PV} == 4.6.4 || ${PV} == 4.6.5 ) ]]; then |
| 234 | case ${KMNAME} in |
382 | case ${KMNAME} in |
| 235 | kdebase-workspace|kdebase-runtime|kdepim|kdegames) |
383 | kdebase-runtime|kde-runtime|kdebase-workspace|kde-workspace|kdeedu|kdegames|kdegraphics) |
| 236 | KMCOMPILEONLY="${KMCOMPILEONLY} |
384 | KMEXTRACTONLY+=" |
| 237 | cmake/modules/" |
385 | cmake/modules/" |
| 238 | ;; |
386 | ;; |
| 239 | esac |
387 | esac |
|
|
388 | fi |
| 240 | |
389 | |
| 241 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
390 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
| 242 | } |
391 | } |
| 243 | |
392 | |
| 244 | __list_needed_subdirectories() { |
393 | __list_needed_subdirectories() { |
| 245 | local i j kmextra_expanded kmmodule_expanded kmcompileonly_expanded extractlist topdir |
394 | local i j kmextra kmextra_expanded kmmodule_expanded kmcompileonly_expanded extractlist |
| 246 | |
395 | |
| 247 | # We expand KMEXTRA by adding CMakeLists.txt files |
396 | # We expand KMEXTRA by adding CMakeLists.txt files |
| 248 | for i in ${KMEXTRA}; do |
397 | kmextra="${KMEXTRA}" |
| 249 | kmextra_expanded="${kmextra_expanded} ${i}" |
398 | [[ ${1} != fatal ]] && kmextra+=" ${KMEXTRA_NONFATAL}" |
|
|
399 | for i in ${kmextra}; do |
|
|
400 | kmextra_expanded+=" ${i}" |
| 250 | j=$(dirname ${i}) |
401 | j=$(dirname ${i}) |
| 251 | while [[ ${j} != "." ]]; do |
402 | while [[ ${j} != "." ]]; do |
| 252 | kmextra_expanded="${kmextra_expanded} ${j}/CMakeLists.txt"; |
403 | kmextra_expanded+=" ${j}/CMakeLists.txt"; |
| 253 | j=$(dirname ${j}) |
404 | j=$(dirname ${j}) |
| 254 | done |
405 | done |
| 255 | done |
406 | done |
| 256 | |
407 | |
| 257 | # Expand KMMODULE |
408 | # Expand KMMODULE |
| 258 | if [[ -n ${KMMODULE} ]]; then |
409 | if [[ -n ${KMMODULE} ]]; then |
| 259 | kmmodule_expanded="${KMMODULE}" |
410 | kmmodule_expanded="${KMMODULE}" |
| 260 | j=$(dirname ${KMMODULE}) |
411 | j=$(dirname ${KMMODULE}) |
| 261 | while [[ ${j} != "." ]]; do |
412 | while [[ ${j} != "." ]]; do |
| 262 | kmmodule_expanded="${kmmodule_expanded} $j/CMakeLists.txt"; |
413 | kmmodule_expanded+=" ${j}/CMakeLists.txt"; |
| 263 | j=$(dirname $j) |
414 | j=$(dirname ${j}) |
| 264 | done |
415 | done |
| 265 | fi |
416 | fi |
| 266 | |
417 | |
| 267 | # Expand KMCOMPILEONLY |
418 | # Expand KMCOMPILEONLY |
| 268 | for i in ${KMCOMPILEONLY}; do |
419 | for i in ${KMCOMPILEONLY}; do |
| 269 | kmcompileonly_expanded="${kmcompileonly_expanded} ${i}" |
420 | kmcompileonly_expanded+=" ${i}" |
| 270 | j=$(dirname ${i}) |
421 | j=$(dirname ${i}) |
| 271 | while [[ ${j} != "." ]]; do |
422 | while [[ ${j} != "." ]]; do |
| 272 | kmcompileonly_expanded="${kmcompileonly_expanded} ${j}/CMakeLists.txt"; |
423 | kmcompileonly_expanded+=" ${j}/CMakeLists.txt"; |
| 273 | j=$(dirname ${j}) |
424 | j=$(dirname ${j}) |
| 274 | done |
425 | done |
| 275 | done |
426 | done |
| 276 | |
427 | |
| 277 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmextra_expanded: ${kmextra_expanded}" |
428 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmextra_expanded: ${kmextra_expanded}" |
| 278 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmmodule_expanded: ${kmmodule_expanded}" |
429 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmmodule_expanded: ${kmmodule_expanded}" |
| 279 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmcompileonly_expanded: ${kmcompileonly_expanded}" |
430 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmcompileonly_expanded: ${kmcompileonly_expanded}" |
| 280 | |
431 | |
| 281 | |
|
|
| 282 | case ${NEED_KDE} in |
|
|
| 283 | svn) : ;; |
|
|
| 284 | *) topdir="${KMNAME}-${PV}/" ;; |
|
|
| 285 | esac |
|
|
| 286 | |
|
|
| 287 | # Create final list of stuff to extract |
432 | # Create final list of stuff to extract |
|
|
433 | # We append topdir only when specified (usually for tarballs) |
| 288 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
434 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
| 289 | ${KMEXTRACTONLY} |
435 | ${KMEXTRACTONLY} |
| 290 | do |
436 | do |
| 291 | extractlist="${extractlist} ${topdir}${i}" |
437 | extractlist+=" ${topdir}${i}" |
| 292 | done |
438 | done |
| 293 | |
439 | |
| 294 | echo ${extractlist} |
440 | echo ${extractlist} |
| 295 | } |
441 | } |
| 296 | |
442 | |
| 297 | # @FUNCTION: kde4-meta_src_compile |
443 | # @FUNCTION: kde4-meta_src_prepare |
| 298 | # @DESCRIPTION: |
444 | # @DESCRIPTION: |
| 299 | # General function for compiling split KDE4 applications. |
445 | # Meta-package build system configuration handling - commenting out targets, etc.. |
| 300 | kde4-meta_src_compile() { |
446 | kde4-meta_src_prepare() { |
| 301 | debug-print-function ${FUNCNAME} "$@" |
447 | debug-print-function ${FUNCNAME} "$@" |
| 302 | |
448 | |
| 303 | kde4-meta_src_configure |
449 | kde4-meta_change_cmakelists |
| 304 | kde4-meta_src_make |
450 | kde4-base_src_prepare |
| 305 | } |
451 | } |
| 306 | |
452 | |
|
|
453 | # @FUNCTION: _change_cmakelists_parent_dirs |
|
|
454 | # @DESCRIPTION: |
|
|
455 | # Adjust CMakeLists.txt to shadow subdirectories |
|
|
456 | # that are not required for the build. |
| 307 | _change_cmakelists_parent_dirs() { |
457 | _change_cmakelists_parent_dirs() { |
| 308 | debug-print-function ${FUNCNAME} "$@" |
458 | debug-print-function ${FUNCNAME} "$@" |
| 309 | |
459 | |
| 310 | local _olddir _dir |
460 | local _olddir _dir |
| 311 | _dir="${S}"/${1} |
461 | _dir="${S}"/${1} |
| 312 | until [[ ${_dir} == "${S}" ]]; do |
462 | until [[ ${_dir} == ${S} ]]; do |
| 313 | _olddir=$(basename ${_dir}) |
463 | _olddir=$(basename "${_dir}") |
| 314 | _dir=$(dirname ${_dir}) |
464 | _dir=$(dirname "${_dir}") |
| 315 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
465 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
| 316 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
466 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
| 317 | sed -i -e "/[[:space:]]*${_olddir}[[:space:]]*/s/^#DONOTCOMPILE //" ${_dir}/CMakeLists.txt || \ |
467 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
|
|
468 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
| 318 | die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
469 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 319 | fi |
470 | fi |
| 320 | done |
471 | done |
| 321 | } |
472 | } |
| 322 | |
473 | |
|
|
474 | # @FUNCTION: kde4-meta_change_cmakelists |
|
|
475 | # @DESCRIPTION: |
|
|
476 | # Adjust CMakeLists.txt to comply to our splitting. |
| 323 | kde4-meta_change_cmakelists() { |
477 | kde4-meta_change_cmakelists() { |
| 324 | debug-print-function ${FUNCNAME} "$@" |
478 | debug-print-function ${FUNCNAME} "$@" |
| 325 | |
479 | |
| 326 | pushd "${S}" > /dev/null |
480 | pushd "${S}" > /dev/null |
| 327 | |
481 | |
| 328 | comment_all_add_subdirectory ./ |
482 | comment_all_add_subdirectory ./ |
| 329 | |
483 | |
| 330 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
484 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
| 331 | if [[ -f "${S}"/CMakeLists.txt ]]; then |
485 | if [[ -f CMakeLists.txt ]]; then |
| 332 | sed -i -e '/ *cmake */s/^#DONOTCOMPILE //' "${S}"/CMakeLists.txt || die "${LINENO}: cmake sed died" |
486 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
|
|
487 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
|
|
488 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
|
|
489 | fi |
|
|
490 | |
|
|
491 | # Restore "add_subdirectory( ${ ..." (this is done in kdesdk) |
|
|
492 | if [[ -f CMakeLists.txt ]]; then |
|
|
493 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*\${/s/^#DONOTCOMPILE //' \ |
|
|
494 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*\${/s/^#DONOTCOMPILE //' \ |
|
|
495 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
| 333 | fi |
496 | fi |
| 334 | |
497 | |
| 335 | if [[ -z ${KMNOMODULE} ]]; then |
498 | if [[ -z ${KMNOMODULE} ]]; then |
| 336 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
499 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
| 337 | find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
500 | find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | \ |
|
|
501 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 338 | die "${LINENO}: died in KMMODULE section" |
502 | die "${LINENO}: died in KMMODULE section" |
| 339 | _change_cmakelists_parent_dirs ${KMMODULE} |
503 | _change_cmakelists_parent_dirs ${KMMODULE} |
| 340 | fi |
504 | fi |
| 341 | |
505 | |
|
|
506 | local i |
|
|
507 | |
|
|
508 | # KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
|
|
509 | for i in ${KMEXTRACTONLY}; do |
|
|
510 | if [[ -d ${i} && -f ${i}/../CMakeLists.txt ]]; then |
|
|
511 | sed -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
512 | -i ${i}/../CMakeLists.txt || \ |
|
|
513 | die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
|
|
514 | fi |
|
|
515 | done |
|
|
516 | |
| 342 | # KMCOMPILEONLY |
517 | # KMCOMPILEONLY |
| 343 | local i |
|
|
| 344 | for i in ${KMCOMPILEONLY}; do |
518 | for i in ${KMCOMPILEONLY}; do |
| 345 | debug-print "${LINENO}: KMCOMPILEONLY, processing ${i}" |
519 | debug-print "${LINENO}: KMCOMPILEONLY, processing ${i}" |
| 346 | # Uncomment "add_subdirectory" instructions inside $KMCOMPILEONLY, then comment "install" instructions. |
520 | # Uncomment "add_subdirectory" instructions inside $KMCOMPILEONLY, then comment "install" instructions. |
| 347 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
521 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 348 | xargs -0 sed -i \ |
522 | xargs -0 sed -i \ |
| … | |
… | |
| 355 | done |
529 | done |
| 356 | |
530 | |
| 357 | # KMEXTRA section |
531 | # KMEXTRA section |
| 358 | for i in ${KMEXTRA}; do |
532 | for i in ${KMEXTRA}; do |
| 359 | debug-print "${LINENO}: KMEXTRA section, processing ${i}" |
533 | debug-print "${LINENO}: KMEXTRA section, processing ${i}" |
| 360 | # Ebuilds use KMEXTRA incorrectly to extract files which should be in $KMEXTRACTONLY |
534 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
|
|
535 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
|
|
536 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
|
|
537 | _change_cmakelists_parent_dirs ${i} |
|
|
538 | done |
|
|
539 | # KMEXTRA_NONFATAL section |
|
|
540 | for i in ${KMEXTRA_NONFATAL}; do |
| 361 | if [[ -d "${S}"/${i} ]]; then |
541 | if [[ -d "${S}"/${i} ]]; then |
| 362 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
542 | find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 363 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
543 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 364 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
544 | die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
| 365 | _change_cmakelists_parent_dirs ${i} |
545 | _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 |
546 | 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 |
547 | done |
| 390 | |
548 | |
| 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 |
549 | case ${KMNAME} in |
| 395 | kdebase-workspace) |
550 | kdebase-workspace | kde-workspace) |
|
|
551 | # COLLISION PROTECT section |
|
|
552 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
|
|
553 | # not as a part of every package. |
| 396 | if [[ ${PN} != "kdebase-startkde" && -f "${S}"/CMakeLists.txt ]]; then |
554 | 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. |
555 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| 399 | sed -i -e '/startkde/s/^/#DONOTINSTALL /' "${S}"/CMakeLists.txt || \ |
556 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
| 400 | die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
557 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
|
|
558 | fi |
|
|
559 | # Remove workspace target prefix in order to get direct linking to workspace libs |
|
|
560 | sed -e '/set(KDE4WORKSPACE_TARGET_PREFIX/s/^/#OVERRIDE /' \ |
|
|
561 | -i CMakeLists.txt || die "${LINENO}: sed died in KDE4WORKSPACE_TARGET_PREFIX removal section" |
|
|
562 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
|
|
563 | if [[ ${PN} != libkworkspace ]]; then |
|
|
564 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
|
|
565 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace strip config install and fix EXPORT section" |
|
|
566 | fi |
|
|
567 | if [[ ${PN} != plasma-workspace ]]; then |
|
|
568 | sed -e '/KActivities/s/REQUIRED//' \ |
|
|
569 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace dep reduction section" |
|
|
570 | fi |
|
|
571 | if [[ "${PN}" != "kwin" ]]; then |
|
|
572 | sed -i -e "/^ macro_log_feature(OPENGL_OR_ES_FOUND/s/TRUE/FALSE/" \ |
|
|
573 | "${S}"/CMakeLists.txt || die "${LINENO}: sed died removing kde-workspace opengl dependency" |
|
|
574 | fi |
|
|
575 | ;; |
|
|
576 | kdebase-runtime | kde-runtime) |
|
|
577 | # COLLISION PROTECT section |
|
|
578 | # Only install the kde4 script as part of kde-base/kdebase-data |
|
|
579 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
|
|
580 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
|
|
581 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
|
|
582 | fi |
|
|
583 | ;; |
|
|
584 | kdenetwork) |
|
|
585 | # Disable hardcoded kdepimlibs check |
|
|
586 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
|
|
587 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
588 | ;; |
|
|
589 | kdepim) |
|
|
590 | # Disable hardcoded checks |
|
|
591 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
|
|
592 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
|
|
593 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
|
|
594 | -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*/if(1) # &/' \ |
|
|
595 | -e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
|
|
596 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
597 | # Disable broken or redundant build logic |
|
|
598 | if use_if_iuse kontact || [[ ${PN} = kontact ]]; then |
|
|
599 | sed -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*$/if(1) # &/' \ |
|
|
600 | -e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
|
|
601 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
|
|
602 | fi |
|
|
603 | if [[ $(get_kde_version) < 4.5 ]]; then |
|
|
604 | case ${PN} in |
|
|
605 | kalarm|kmailcvt|kontact|korganizer|korn) |
|
|
606 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
|
|
607 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
|
|
608 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
|
|
609 | _change_cmakelists_parent_dirs kmail |
| 401 | ;; |
610 | ;; |
| 402 | esac |
611 | esac |
| 403 | fi |
612 | fi |
| 404 | ;; |
613 | ;; |
|
|
614 | kdewebdev) |
|
|
615 | # Disable hardcoded checks |
|
|
616 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
|
|
617 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
|
|
618 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
|
|
619 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
|
|
620 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
621 | ;; |
| 405 | koffice) |
622 | koffice) |
|
|
623 | # Prevent collisions |
| 406 | if [[ ${PN} != koffice-libs ]]; then |
624 | if [[ ${PN} != koffice-data ]]; then |
| 407 | sed -i -e '/^INSTALL(FILES.*koffice.desktop/ s/^/#DONOTINSTALL /' \ |
625 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 408 | doc/CMakeLists.txt || \ |
626 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 409 | die "${LINENO}: sed died in the koffice.desktop collision prevention section" |
627 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
|
|
628 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 410 | fi |
629 | fi |
| 411 | ;; |
|
|
| 412 | esac |
630 | esac |
| 413 | |
631 | |
| 414 | popd > /dev/null |
632 | popd > /dev/null |
| 415 | } |
633 | } |
| 416 | |
634 | |
| 417 | # @FUNCTION: kde4-meta_src_configure |
635 | # @FUNCTION: kde4-meta_src_configure |
| 418 | # @DESCRIPTION: |
636 | # @DESCRIPTION: |
| 419 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
637 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
| 420 | # ebuilds. |
638 | # ebuilds. |
| 421 | kde4-meta_src_configure() { |
639 | kde4-meta_src_configure() { |
| 422 | debug-print-function ${FUNCNAME} "$@" |
640 | debug-print-function ${FUNCNAME} "$@" |
|
|
641 | |
|
|
642 | # backwards-compatibility: make mycmakeargs an array, if it isn't already |
|
|
643 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
644 | mycmakeargs=(${mycmakeargs}) |
|
|
645 | fi |
|
|
646 | |
|
|
647 | # Set some cmake default values here (usually workarounds for automagic deps) |
|
|
648 | case ${KMNAME} in |
|
|
649 | kdewebdev) |
|
|
650 | mycmakeargs=( |
|
|
651 | -DWITH_KdepimLibs=OFF |
|
|
652 | -DWITH_LibXml2=OFF |
|
|
653 | -DWITH_LibXslt=OFF |
|
|
654 | -DWITH_Boost=OFF |
|
|
655 | -DWITH_LibTidy=OFF |
|
|
656 | "${mycmakeargs[@]}" |
|
|
657 | ) |
|
|
658 | ;; |
|
|
659 | esac |
| 423 | |
660 | |
| 424 | kde4-base_src_configure |
661 | kde4-base_src_configure |
| 425 | } |
662 | } |
| 426 | |
663 | |
| 427 | # @FUNCTION: kde4-meta_src_make |
664 | # @FUNCTION: kde4-meta_src_compile |
| 428 | # @DESCRIPTION: |
665 | # @DESCRIPTION: |
| 429 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
666 | # General function for compiling split KDE4 applications. |
| 430 | # ebuilds. |
667 | # Overrides kde4-base_src_compile. |
| 431 | kde4-meta_src_make() { |
668 | kde4-meta_src_compile() { |
| 432 | debug-print-function ${FUNCNAME} "$@" |
669 | debug-print-function ${FUNCNAME} "$@" |
| 433 | |
670 | |
| 434 | kde4-base_src_make |
671 | kde4-base_src_compile "$@" |
| 435 | } |
672 | } |
| 436 | |
673 | |
| 437 | # @FUNCTION: kde4-meta_src_test |
674 | # @FUNCTION: kde4-meta_src_test |
| 438 | # @DESCRIPTION: |
675 | # @DESCRIPTION: |
| 439 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
676 | # Currently just calls its equivalent in kde4-base.eclass(5) if |
| 440 | # ebuilds. |
677 | # I_KNOW_WHAT_I_AM_DOING is set. Use this in split ebuilds. |
| 441 | kde4-meta_src_test() { |
678 | kde4-meta_src_test() { |
| 442 | debug-print-function $FUNCNAME "$@" |
679 | debug-print-function $FUNCNAME "$@" |
| 443 | |
680 | |
|
|
681 | if [[ $I_KNOW_WHAT_I_AM_DOING ]]; then |
| 444 | kde4-base_src_test |
682 | kde4-base_src_test |
|
|
683 | else |
|
|
684 | einfo "Tests disabled" |
|
|
685 | fi |
| 445 | } |
686 | } |
| 446 | |
687 | |
| 447 | # @FUNCTION: kde4-meta_src_install |
688 | # @FUNCTION: kde4-meta_src_install |
| 448 | # @DESCRIPTION: |
689 | # @DESCRIPTION: |
| 449 | # Function for installing KDE4 split applications. |
690 | # Function for installing KDE4 split applications. |
| 450 | kde4-meta_src_install() { |
691 | kde4-meta_src_install() { |
| 451 | debug-print-function $FUNCNAME "$@" |
692 | debug-print-function $FUNCNAME "$@" |
| 452 | |
693 | |
| 453 | kde4-meta_src_make_doc |
694 | # Search ${S}/${KMMODULE} and install common documentation files found |
| 454 | cmake-utils_src_install |
|
|
| 455 | } |
|
|
| 456 | |
|
|
| 457 | # @FUNCTION: kde4-meta_src_make_doc |
|
|
| 458 | # @DESCRIPTION: |
|
|
| 459 | # This function searches under ${S}/${KMMODULE}, |
|
|
| 460 | # and tries to install "AUTHORS ChangeLog* README* NEWS todo" if these files exist. |
|
|
| 461 | kde4-meta_src_make_doc() { |
|
|
| 462 | debug-print-function $FUNCNAME "$@" |
|
|
| 463 | |
|
|
| 464 | local doc |
695 | local doc |
| 465 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
696 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 466 | [[ -s ${KMMODULE}/$doc ]] && newdoc "${KMMODULE}/${doc}" "${doc}.${KMMODULE##*/}" |
697 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
| 467 | done |
698 | done |
| 468 | |
699 | |
| 469 | kde4-base_src_make_doc |
700 | kde4-base_src_install |
|
|
701 | } |
|
|
702 | |
|
|
703 | # @FUNCTION: kde4-meta_pkg_preinst |
|
|
704 | # @DESCRIPTION: |
|
|
705 | # Invoke its equivalent in kde4-base.eclass. |
|
|
706 | kde4-meta_pkg_preinst() { |
|
|
707 | debug-print-function ${FUNCNAME} "$@" |
|
|
708 | |
|
|
709 | kde4-base_pkg_preinst |
| 470 | } |
710 | } |
| 471 | |
711 | |
| 472 | # @FUNCTION: kde4-meta_pkg_postinst |
712 | # @FUNCTION: kde4-meta_pkg_postinst |
| 473 | # @DESCRIPTION: |
713 | # @DESCRIPTION: |
| 474 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
714 | # Invoke kbuildsycoca4. |
| 475 | # ebuilds. |
|
|
| 476 | kde4-meta_pkg_postinst() { |
715 | kde4-meta_pkg_postinst() { |
|
|
716 | debug-print-function ${FUNCNAME} "$@" |
|
|
717 | |
| 477 | kde4-base_pkg_postinst |
718 | kde4-base_pkg_postinst |
| 478 | } |
719 | } |
| 479 | |
720 | |
| 480 | # @FUNCTION: kde4-meta_pkg_postrm |
721 | # @FUNCTION: kde4-meta_pkg_postrm |
| 481 | # @DESCRIPTION: |
722 | # @DESCRIPTION: |
| 482 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
723 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
| 483 | # ebuilds. |
724 | # ebuilds. |
| 484 | kde4-meta_pkg_postrm() { |
725 | kde4-meta_pkg_postrm() { |
|
|
726 | debug-print-function ${FUNCNAME} "$@" |
|
|
727 | |
| 485 | kde4-base_pkg_postrm |
728 | kde4-base_pkg_postrm |
| 486 | } |
729 | } |