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