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