| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.35 2010/09/11 04:25:23 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.48 2011/05/24 20:54:58 abcd Exp $ |
| 4 | |
4 | |
| 5 | inherit versionator |
5 | inherit versionator |
| 6 | |
6 | |
| 7 | # @ECLASS: kde4-functions.eclass |
7 | # @ECLASS: kde4-functions.eclass |
| 8 | # @MAINTAINER: |
8 | # @MAINTAINER: |
| … | |
… | |
| 12 | # This eclass contains all functions shared by the different eclasses, |
12 | # This eclass contains all functions shared by the different eclasses, |
| 13 | # for KDE 4 ebuilds. |
13 | # for KDE 4 ebuilds. |
| 14 | |
14 | |
| 15 | # @ECLASS-VARIABLE: EAPI |
15 | # @ECLASS-VARIABLE: EAPI |
| 16 | # @DESCRIPTION: |
16 | # @DESCRIPTION: |
| 17 | # By default kde4 eclasses want EAPI 2 which might be redefinable to newer |
17 | # Currently kde4 eclasses support EAPI 3 and 4. |
| 18 | # versions. |
|
|
| 19 | case ${EAPI:-0} in |
18 | case ${EAPI:-0} in |
| 20 | 2|3) : ;; |
19 | 4|3) : ;; |
| 21 | *) die "EAPI=${EAPI} is not supported" ;; |
20 | *) die "EAPI=${EAPI} is not supported" ;; |
| 22 | esac |
21 | esac |
|
|
22 | |
|
|
23 | # @ECLASS-VARIABLE: KDE_OVERRIDE_MINIMAL |
|
|
24 | # @DESCRIPTION: |
|
|
25 | # For use only in very few well-defined cases; normally it should be unset. |
|
|
26 | # If this variable is set, all calls to add_kdebase_dep return a dependency on |
|
|
27 | # at least this version, independent of the version of the package itself. |
|
|
28 | # If you know exactly that one specific NEW KDE component builds and runs fine |
|
|
29 | # with all the rest of KDE at an OLDER version, you can set this old version here. |
|
|
30 | # Warning- may lead to general instability and kill your pet targh. |
| 23 | |
31 | |
| 24 | # @ECLASS-VARIABLE: KDEBASE |
32 | # @ECLASS-VARIABLE: KDEBASE |
| 25 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 26 | # This gets set to a non-zero value when a package is considered a kde or |
34 | # This gets set to a non-zero value when a package is considered a kde or |
| 27 | # koffice ebuild. |
35 | # koffice ebuild. |
| 28 | if [[ ${CATEGORY} = kde-base ]]; then |
36 | if [[ ${CATEGORY} = kde-base ]]; then |
| 29 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
37 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
| 30 | KDEBASE=kde-base |
38 | KDEBASE=kde-base |
| 31 | elif [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then |
39 | elif [[ ${KMNAME-${PN}} = koffice ]]; then |
| 32 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
40 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
| 33 | KDEBASE=koffice |
41 | KDEBASE=koffice |
| 34 | elif [[ ${KMNAME} = kdevelop ]]; then |
42 | elif [[ ${KMNAME-${PN}} = kdevelop ]]; then |
| 35 | debug-print "${ECLASS}: KDEVELOP ebuild recognized" |
43 | debug-print "${ECLASS}: KDEVELOP ebuild recognized" |
| 36 | KDEBASE="kdevelop" |
44 | KDEBASE=kdevelop |
| 37 | fi |
45 | fi |
| 38 | |
46 | |
| 39 | # @ECLASS-VARIABLE: KDE_SLOTS |
47 | # @ECLASS-VARIABLE: KDE_SLOTS |
| 40 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 41 | # The slots used by all KDE versions later than 4.0. The live KDE releases use |
49 | # The slots used by all KDE versions later than 4.0. The live KDE releases use |
| 42 | # KDE_LIVE_SLOTS instead. Values should be ordered. |
50 | # KDE_LIVE_SLOTS instead. Values should be ordered. |
| 43 | KDE_SLOTS=( "4.1" "4.2" "4.3" "4.4" "4.5" "4.6" ) |
51 | KDE_SLOTS=( "4.1" "4.2" "4.3" "4.4" "4.5" "4.6" "4.7" ) |
| 44 | |
52 | |
| 45 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
53 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
| 46 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 47 | # The slots used by KDE live versions. Values should be ordered. |
55 | # The slots used by KDE live versions. Values should be ordered. |
| 48 | KDE_LIVE_SLOTS=( "live" ) |
56 | KDE_LIVE_SLOTS=( "live" ) |
|
|
57 | |
|
|
58 | # determine the build type |
|
|
59 | if [[ ${SLOT} = live || ${PV} = *9999* ]]; then |
|
|
60 | BUILD_TYPE="live" |
|
|
61 | else |
|
|
62 | BUILD_TYPE="release" |
|
|
63 | fi |
|
|
64 | export BUILD_TYPE |
|
|
65 | |
|
|
66 | # Set reponame and SCM for moduleses that have fully migrated to git |
|
|
67 | # (hack - it's here because it needs to be before SCM inherits from kde4-base) |
|
|
68 | if [[ ${BUILD_TYPE} == live ]]; then |
|
|
69 | case "${KMNAME}" in |
|
|
70 | kdebase-workspace) |
|
|
71 | KDE_SCM="git" |
|
|
72 | EGIT_REPONAME=${EGIT_REPONAME:=kde-workspace} |
|
|
73 | ;; |
|
|
74 | kdebase-runtime) |
|
|
75 | KDE_SCM="git" |
|
|
76 | EGIT_REPONAME=${EGIT_REPONAME:=kde-runtime} |
|
|
77 | ;; |
|
|
78 | kdebase-apps) |
|
|
79 | KDE_SCM="git" |
|
|
80 | EGIT_REPONAME=${EGIT_REPONAME:=kde-baseapps} |
|
|
81 | ;; |
|
|
82 | esac |
|
|
83 | fi |
|
|
84 | |
|
|
85 | # @ECLASS-VARIABLE: KDE_SCM |
|
|
86 | # @DESCRIPTION: |
|
|
87 | # If this is a live package which scm does it use |
|
|
88 | # Everything else uses svn by default |
|
|
89 | KDE_SCM="${KDE_SCM:-svn}" |
|
|
90 | case ${KDE_SCM} in |
|
|
91 | svn|git) ;; |
|
|
92 | *) die "KDE_SCM: ${KDE_SCM} is not supported" ;; |
|
|
93 | esac |
|
|
94 | |
|
|
95 | # @ECLASS-VARIABLE: KDE_LINGUAS |
|
|
96 | # @DESCRIPTION: |
|
|
97 | # This is a whitespace-separated list of translations this ebuild supports. |
|
|
98 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
|
|
99 | # this variable before inheriting any eclasses. To enable only selected |
|
|
100 | # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
|
|
101 | # this for you. |
|
|
102 | # |
|
|
103 | # Example: KDE_LINGUAS="en_GB de nl" |
|
|
104 | if [[ ${BUILD_TYPE} != live || -n ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
105 | for _lingua in ${KDE_LINGUAS}; do |
|
|
106 | IUSE="${IUSE} linguas_${_lingua}" |
|
|
107 | done |
|
|
108 | fi |
| 49 | |
109 | |
| 50 | # @FUNCTION: slot_is_at_least |
110 | # @FUNCTION: slot_is_at_least |
| 51 | # @USAGE: <want> <have> |
111 | # @USAGE: <want> <have> |
| 52 | # @DESCRIPTION: |
112 | # @DESCRIPTION: |
| 53 | # Version aware slot comparator. |
113 | # Version aware slot comparator. |
| … | |
… | |
| 62 | # Function to rebuild the KDE System Configuration Cache. |
122 | # Function to rebuild the KDE System Configuration Cache. |
| 63 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
123 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
| 64 | buildsycoca() { |
124 | buildsycoca() { |
| 65 | debug-print-function ${FUNCNAME} "$@" |
125 | debug-print-function ${FUNCNAME} "$@" |
| 66 | |
126 | |
| 67 | if [[ ${EAPI} == 2 ]] && ! use prefix; then |
|
|
| 68 | EROOT=${ROOT} |
|
|
| 69 | fi |
|
|
| 70 | |
|
|
| 71 | local KDE3DIR="${EROOT}usr/kde/3.5" |
|
|
| 72 | if [[ -z ${EROOT%%/} && -x "${KDE3DIR}"/bin/kbuildsycoca ]]; then |
|
|
| 73 | # Since KDE3 is aware of shortcuts in /usr, rebuild database |
|
|
| 74 | # for KDE3 as well. |
|
|
| 75 | touch "${KDE3DIR}"/share/services/ksycoca |
|
|
| 76 | chmod 644 "${KDE3DIR}"/share/services/ksycoca |
|
|
| 77 | |
|
|
| 78 | ebegin "Running kbuildsycoca to build global database" |
|
|
| 79 | XDG_DATA_DIRS="${EROOT}usr/local/share:${KDE3DIR}/share:${EROOT}usr/share" \ |
|
|
| 80 | DISPLAY="" \ |
|
|
| 81 | "${KDE3DIR}"/bin/kbuildsycoca --global --noincremental &> /dev/null |
|
|
| 82 | eend $? |
|
|
| 83 | fi |
|
|
| 84 | |
|
|
| 85 | # We no longer need to run kbuildsycoca4, as kded does that automatically, as needed |
127 | # We no longer need to run kbuildsycoca4, as kded does that automatically, as needed |
| 86 | |
128 | |
| 87 | # fix permission for some directories |
129 | # fix permission for some directories |
| 88 | for x in share/{config,kde4}; do |
130 | for x in share/{config,kde4}; do |
| 89 | [[ ${KDEDIR} == /usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${EROOT}${KDEDIR}" |
131 | [[ ${KDEDIR} == /usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${EROOT}${KDEDIR}" |
| 90 | for y in ${DIRS}; do |
132 | for y in ${DIRS}; do |
| 91 | [[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
133 | [[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
|
|
134 | # fixes Bug 318237 |
|
|
135 | if use userland_BSD ; then |
|
|
136 | [[ $(stat -f %p "${y}/${x}") != 40755 ]] |
|
|
137 | local stat_rtn="$?" |
|
|
138 | else |
| 92 | if [[ $(stat --format=%a "${y}/${x}") != 755 ]]; then |
139 | [[ $(stat --format=%a "${y}/${x}") != 755 ]] |
|
|
140 | local stat_rtn=$? |
|
|
141 | fi |
|
|
142 | if [[ $stat_rtn != 1 ]] ; then |
| 93 | ewarn "QA Notice:" |
143 | ewarn "QA Notice:" |
| 94 | ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
144 | ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
| 95 | ewarn "Please report this issue to gentoo bugzilla." |
145 | ewarn "Please report this issue to gentoo bugzilla." |
| 96 | einfo "Permissions will get adjusted automatically now." |
146 | einfo "Permissions will get adjusted automatically now." |
| 97 | find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
147 | find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
| … | |
… | |
| 113 | -e '/^[[:space:]]*macro_optional_add_subdirectory/s/^/#DONOTCOMPILE /' \ |
163 | -e '/^[[:space:]]*macro_optional_add_subdirectory/s/^/#DONOTCOMPILE /' \ |
| 114 | -e '/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
164 | -e '/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
| 115 | || die "${LINENO}: Initial sed died" |
165 | || die "${LINENO}: Initial sed died" |
| 116 | } |
166 | } |
| 117 | |
167 | |
| 118 | # @ECLASS-VARIABLE: KDE_LINGUAS |
|
|
| 119 | # @DESCRIPTION: |
|
|
| 120 | # This is a whitespace-separated list of translations this ebuild supports. |
|
|
| 121 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
|
|
| 122 | # this variable before inheriting any eclasses. To enable only selected |
|
|
| 123 | # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
|
|
| 124 | # this for you. |
|
|
| 125 | # |
|
|
| 126 | # Example: KDE_LINGUAS="en_GB de nl" |
|
|
| 127 | for _lingua in ${KDE_LINGUAS}; do |
|
|
| 128 | IUSE="${IUSE} linguas_${_lingua}" |
|
|
| 129 | done |
|
|
| 130 | |
|
|
| 131 | # @FUNCTION: enable_selected_linguas |
168 | # @FUNCTION: enable_selected_linguas |
| 132 | # @DESCRIPTION: |
169 | # @DESCRIPTION: |
| 133 | # Enable translations based on LINGUAS settings and translations supported by |
170 | # Enable translations based on LINGUAS settings and translations supported by |
| 134 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
171 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
| 135 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
172 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
| 136 | enable_selected_linguas() { |
173 | enable_selected_linguas() { |
| 137 | debug-print-function ${FUNCNAME} "$@" |
174 | debug-print-function ${FUNCNAME} "$@" |
| 138 | |
175 | |
| 139 | local lingua linguas sr_mess wp |
176 | local x |
| 140 | |
177 | |
| 141 | # if there is no linguas defined we enable everything |
178 | # if there is no linguas defined we enable everything |
| 142 | if ! $(env | grep -q "^LINGUAS="); then |
179 | if ! $(env | grep -q "^LINGUAS="); then |
| 143 | return 0 |
180 | return 0 |
| 144 | fi |
181 | fi |
| 145 | |
182 | |
| 146 | # @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
183 | # @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
| 147 | # @DESCRIPTION: |
184 | # @DESCRIPTION: |
| 148 | # Specified folder where application translations are located. |
185 | # Specified folder where application translations are located. |
|
|
186 | # Can be defined as array of folders where translations are located. |
|
|
187 | # Note that space separated list of dirs is not supported. |
|
|
188 | # Default value is set to "po". |
|
|
189 | if [[ "$(declare -p KDE_LINGUAS_DIR 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
|
|
190 | debug-print "$FUNCNAME: we have these subfolders defined: ${KDE_LINGUAS_DIR}" |
|
|
191 | for x in ${KDE_LINGUAS_DIR[@]}; do |
|
|
192 | _enable_selected_linguas_dir ${x} |
|
|
193 | done |
|
|
194 | else |
| 149 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
195 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
| 150 | [[ -d "${KDE_LINGUAS_DIR}" ]] || die "wrong linguas dir specified" |
196 | _enable_selected_linguas_dir ${KDE_LINGUAS_DIR} |
| 151 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
|
|
| 152 | pushd "${KDE_LINGUAS_DIR}" > /dev/null |
|
|
| 153 | |
|
|
| 154 | # fix all various crazy sr@Latn variations |
|
|
| 155 | # this part is only ease for ebuilds, so there wont be any die when this |
|
|
| 156 | # fail at any point |
|
|
| 157 | sr_mess="sr@latn sr@latin sr@Latin" |
|
|
| 158 | for wp in ${sr_mess}; do |
|
|
| 159 | [[ -e "${wp}.po" ]] && mv "${wp}.po" "sr@Latn.po" |
|
|
| 160 | if [[ -d "${wp}" ]]; then |
|
|
| 161 | # move dir and fix cmakelists |
|
|
| 162 | mv "${wp}" "sr@Latn" |
|
|
| 163 | sed -i \ |
|
|
| 164 | -e "s:${wp}:sr@Latin:g" \ |
|
|
| 165 | CMakeLists.txt |
|
|
| 166 | fi |
197 | fi |
| 167 | done |
|
|
| 168 | |
|
|
| 169 | for lingua in ${KDE_LINGUAS}; do |
|
|
| 170 | if [[ -e "${lingua}.po" ]]; then |
|
|
| 171 | mv "${lingua}.po" "${lingua}.po.old" |
|
|
| 172 | fi |
|
|
| 173 | done |
|
|
| 174 | |
|
|
| 175 | for lingua in ${KDE_LINGUAS}; do |
|
|
| 176 | if use linguas_${lingua} ; then |
|
|
| 177 | if [[ -d "${lingua}" ]]; then |
|
|
| 178 | linguas="${linguas} ${lingua}" |
|
|
| 179 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
|
|
| 180 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
|
|
| 181 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
|
|
| 182 | fi |
|
|
| 183 | if [[ -e "${lingua}.po.old" ]]; then |
|
|
| 184 | linguas="${linguas} ${lingua}" |
|
|
| 185 | mv "${lingua}.po.old" "${lingua}.po" |
|
|
| 186 | fi |
|
|
| 187 | fi |
|
|
| 188 | done |
|
|
| 189 | [[ -n "${linguas}" ]] && einfo "Enabling languages: ${linguas}" |
|
|
| 190 | |
|
|
| 191 | popd > /dev/null |
|
|
| 192 | } |
198 | } |
| 193 | |
199 | |
| 194 | # @FUNCTION: enable_selected_doc_linguas |
200 | # @FUNCTION: enable_selected_doc_linguas |
| 195 | # @DESCRIPTION: |
201 | # @DESCRIPTION: |
| 196 | # Enable only selected linguas enabled doc folders. |
202 | # Enable only selected linguas enabled doc folders. |
| … | |
… | |
| 211 | for pattern in ${KDE_DOC_DIRS}; do |
217 | for pattern in ${KDE_DOC_DIRS}; do |
| 212 | |
218 | |
| 213 | local handbookdir=`dirname ${pattern}` |
219 | local handbookdir=`dirname ${pattern}` |
| 214 | local translationdir=`basename ${pattern}` |
220 | local translationdir=`basename ${pattern}` |
| 215 | # Do filename pattern supplied, treat as directory |
221 | # Do filename pattern supplied, treat as directory |
| 216 | [[ "${handbookdir}" = '.' ]] && handbookdir=${translationdir} && translationdir= |
222 | [[ ${handbookdir} = '.' ]] && handbookdir=${translationdir} && translationdir= |
| 217 | [[ -d "${handbookdir}" ]] || die 'wrong doc dir specified' |
223 | [[ -d ${handbookdir} ]] || die 'wrong doc dir specified' |
| 218 | |
224 | |
| 219 | if ! use handbook; then |
225 | if ! use handbook; then |
| 220 | # Disable whole directory |
226 | # Disable whole directory |
| 221 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
227 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 222 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
228 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| … | |
… | |
| 225 | # Disable subdirectories recursively |
231 | # Disable subdirectories recursively |
| 226 | comment_all_add_subdirectory "${handbookdir}" |
232 | comment_all_add_subdirectory "${handbookdir}" |
| 227 | # Add requested translations |
233 | # Add requested translations |
| 228 | local lingua |
234 | local lingua |
| 229 | for lingua in en ${KDE_LINGUAS}; do |
235 | for lingua in en ${KDE_LINGUAS}; do |
| 230 | if [[ ${lingua} = 'en' ]] || use linguas_${lingua}; then |
236 | if [[ ${lingua} = en ]] || use linguas_${lingua}; then |
| 231 | if [[ -d "${handbookdir}/${translationdir//%lingua/${lingua}}" ]]; then |
237 | if [[ -d ${handbookdir}/${translationdir//%lingua/${lingua}} ]]; then |
| 232 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
238 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
| 233 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
239 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
| 234 | -i "${handbookdir}"/CMakeLists.txt && ! has ${lingua} ${linguas} && linguas="${linguas} ${lingua}" |
240 | -i "${handbookdir}"/CMakeLists.txt && ! has ${lingua} ${linguas} && linguas="${linguas} ${lingua}" |
| 235 | fi |
241 | fi |
| 236 | fi |
242 | fi |
| … | |
… | |
| 239 | |
245 | |
| 240 | done |
246 | done |
| 241 | [[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
247 | [[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
| 242 | } |
248 | } |
| 243 | |
249 | |
| 244 | # @FUNCTION: get_build_type |
|
|
| 245 | # @DESCRIPTION: |
|
|
| 246 | # Determine whether we are using live ebuild or tbzs. |
|
|
| 247 | get_build_type() { |
|
|
| 248 | if [[ ${SLOT} = live || ${PV} = *9999* ]]; then |
|
|
| 249 | BUILD_TYPE="live" |
|
|
| 250 | else |
|
|
| 251 | BUILD_TYPE="release" |
|
|
| 252 | fi |
|
|
| 253 | export BUILD_TYPE |
|
|
| 254 | } |
|
|
| 255 | |
|
|
| 256 | # @FUNCTION: migrate_store_dir |
250 | # @FUNCTION: migrate_store_dir |
| 257 | # @DESCRIPTION: |
251 | # @DESCRIPTION: |
| 258 | # Universal store dir migration |
252 | # Universal store dir migration |
| 259 | # * performs split of kdebase to kdebase-apps when needed |
253 | # * performs split of kdebase to kdebase-apps when needed |
| 260 | # * moves playground/extragear kde4-base-style to toplevel dir |
254 | # * moves playground/extragear kde4-base-style to toplevel dir |
| 261 | migrate_store_dir() { |
255 | migrate_store_dir() { |
|
|
256 | if [[ ${KDE_SCM} != svn ]]; then |
|
|
257 | die "migrate_store_dir() only makes sense for subversion" |
|
|
258 | fi |
|
|
259 | |
| 262 | local cleandir="${ESVN_STORE_DIR}/KDE" |
260 | local cleandir="${ESVN_STORE_DIR}/KDE" |
|
|
261 | |
| 263 | if [[ -d "${cleandir}" ]]; then |
262 | if [[ -d ${cleandir} ]]; then |
| 264 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
263 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
| 265 | addwrite "${ESVN_STORE_DIR}" |
264 | addwrite "${ESVN_STORE_DIR}" |
| 266 | # Split kdebase |
265 | # Split kdebase |
| 267 | local module |
266 | local module |
| 268 | if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
267 | if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
| … | |
… | |
| 278 | # Move the rest |
277 | # Move the rest |
| 279 | local pkg |
278 | local pkg |
| 280 | for pkg in "${cleandir}"/*; do |
279 | for pkg in "${cleandir}"/*; do |
| 281 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
280 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
| 282 | done |
281 | done |
| 283 | rmdir "${cleandir}" || die "Could not move obsolete KDE store dir. Please move '${cleandir}' contents to appropriate location (possibly ${ESVN_STORE_DIR}) and manually remove '${cleandir}' in order to continue." |
282 | rmdir "${cleandir}" || die "Could not move obsolete KDE store dir. Please move '${cleandir}' contents to appropriate location (possibly ${ESVN_STORE_DIR}) and manually remove '${cleandir}' in order to continue." |
| 284 | fi |
283 | fi |
| 285 | |
284 | |
| 286 | if ! hasq kde4-meta ${INHERITED}; then |
285 | if ! hasq kde4-meta ${INHERITED}; then |
| 287 | case ${KMNAME} in |
286 | case ${KMNAME} in |
| 288 | extragear*|playground*) |
287 | extragear*|playground*) |
| 289 | local svnlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
288 | local scmlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
| 290 | if [[ -d "${svnlocalpath}" ]]; then |
289 | if [[ -d "${scmlocalpath}" ]]; then |
| 291 | local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
290 | local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
| 292 | ewarn "'${svnlocalpath}' has been found." |
291 | ewarn "'${scmlocalpath}' has been found." |
| 293 | ewarn "Moving contents to new location: ${destdir}" |
292 | ewarn "Moving contents to new location: ${destdir}" |
| 294 | addwrite "${ESVN_STORE_DIR}" |
293 | addwrite "${ESVN_STORE_DIR}" |
| 295 | mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${svnlocalpath}" "${destdir}" \ |
294 | mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${scmlocalpath}" "${destdir}" \ |
| 296 | || die "Failed to move to '${svnlocalpath}'" |
295 | || die "Failed to move to '${scmlocalpath}'" |
| 297 | # Try cleaning empty directories |
296 | # Try cleaning empty directories |
| 298 | rmdir "`dirname "${svnlocalpath}"`" 2> /dev/null |
297 | rmdir "`dirname "${scmlocalpath}"`" 2> /dev/null |
| 299 | fi |
298 | fi |
| 300 | ;; |
299 | ;; |
| 301 | esac |
300 | esac |
| 302 | fi |
301 | fi |
| 303 | } |
302 | } |
| … | |
… | |
| 337 | |
336 | |
| 338 | i=0 |
337 | i=0 |
| 339 | for pn in ${KMLOADLIBS} ; do |
338 | for pn in ${KMLOADLIBS} ; do |
| 340 | ((i++)) |
339 | ((i++)) |
| 341 | depsfile="${EPREFIX}/var/lib/kde/${pn}:${SLOT}" |
340 | depsfile="${EPREFIX}/var/lib/kde/${pn}:${SLOT}" |
| 342 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
341 | [[ -r ${depsfile} ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
| 343 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
342 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
| 344 | die "Failed to include library dependencies for ${pn}" |
343 | die "Failed to include library dependencies for ${pn}" |
| 345 | done |
344 | done |
| 346 | eend $? |
345 | eend $? |
| 347 | } |
346 | } |
| … | |
… | |
| 386 | debug-print-function ${FUNCNAME} "$@" |
385 | debug-print-function ${FUNCNAME} "$@" |
| 387 | |
386 | |
| 388 | RDEPEND+=" $(_do_blocker "$@")" |
387 | RDEPEND+=" $(_do_blocker "$@")" |
| 389 | } |
388 | } |
| 390 | |
389 | |
|
|
390 | # @FUNCTION: add_kdebase_dep |
|
|
391 | # @DESCRIPTION: |
|
|
392 | # Create proper dependency for kde-base/ dependencies, adding SLOT when needed |
|
|
393 | # (and *only* when needed). |
|
|
394 | # This takes 1 to 3 arguments. The first being the package name, the optional |
|
|
395 | # second is additional USE flags to append, and the optional third is the |
|
|
396 | # version to use instead of the automatic version (use sparingly). |
|
|
397 | # The output of this should be added directly to DEPEND/RDEPEND, and may be |
|
|
398 | # wrapped in a USE conditional (but not an || conditional without an extra set |
|
|
399 | # of parentheses). |
|
|
400 | add_kdebase_dep() { |
|
|
401 | debug-print-function ${FUNCNAME} "$@" |
|
|
402 | |
|
|
403 | local ver |
|
|
404 | |
|
|
405 | if [[ -n ${3} ]]; then |
|
|
406 | ver=${3} |
|
|
407 | elif [[ -n ${KDE_OVERRIDE_MINIMAL} ]]; then |
|
|
408 | ver=${KDE_OVERRIDE_MINIMAL} |
|
|
409 | elif [[ ${KDEBASE} != kde-base ]]; then |
|
|
410 | ver=${KDE_MINIMAL} |
|
|
411 | # FIXME remove hack when kdepim-4.4.* is gone |
|
|
412 | elif [[ ( ${KMNAME} == kdepim || ${PN} == kdepim-runtime ) && ${SLOT} == 4.4 && ${1} =~ ^(kde(pim)?libs|oxygen-icons)$ ]]; then |
|
|
413 | ver=4.4.5 |
|
|
414 | # FIXME remove hack when kdepim-4.6beta is gone |
|
|
415 | elif [[ ( ${KMNAME} == kdepim || ${PN} == kdepim-runtime ) && ${PV} == 4.5.98 && ${1} =~ ^(kde(pim)?libs|oxygen-icons)$ ]]; then |
|
|
416 | ver=4.5.90 |
|
|
417 | # if building stable-live version depend just on slot |
|
|
418 | # to allow merging packages against more stable basic stuff |
|
|
419 | elif [[ ${PV} == *.9999 ]]; then |
|
|
420 | ver=${SLOT} |
|
|
421 | else |
|
|
422 | ver=${PV} |
|
|
423 | fi |
|
|
424 | |
|
|
425 | [[ -z ${1} ]] && die "Missing parameter" |
|
|
426 | |
|
|
427 | local use=${2:+,${2}} |
|
|
428 | |
|
|
429 | if [[ ${KDEBASE} = kde-base ]]; then |
|
|
430 | echo " !kdeprefix? ( >=kde-base/${1}-${ver}[aqua=,-kdeprefix${use}] )" |
|
|
431 | # kdeprefix is no-go for kdepim 4.4 |
|
|
432 | [[ ( ${KMNAME} == kdepim || ${PN} == kdepim-runtime ) && ${SLOT} == 4.4 ]] || \ |
|
|
433 | echo " kdeprefix? ( >=kde-base/${1}-${ver}:${SLOT}[aqua=,kdeprefix${use}] )" |
|
|
434 | elif [[ ${ver} == live ]]; then |
|
|
435 | echo " kde-base/${1}:live[aqua=${use}]" |
|
|
436 | else |
|
|
437 | echo " >=kde-base/${1}-${ver}[aqua=${use}]" |
|
|
438 | fi |
|
|
439 | } |
|
|
440 | |
| 391 | # _greater_max_in_slot ver slot |
441 | # _greater_max_in_slot ver slot |
| 392 | # slot must be 4.x or live |
442 | # slot must be 4.x or live |
| 393 | # returns true if ver is >= the maximum possibile version in slot |
443 | # returns true if ver is >= the maximum possibile version in slot |
| 394 | _greater_max_in_slot() { |
444 | _greater_max_in_slot() { |
| 395 | local ver=$1 |
445 | local ver=$1 |
| … | |
… | |
| 424 | # stdout instead of updating a variable. |
474 | # stdout instead of updating a variable. |
| 425 | _do_blocker() { |
475 | _do_blocker() { |
| 426 | debug-print-function ${FUNCNAME} "$@" |
476 | debug-print-function ${FUNCNAME} "$@" |
| 427 | |
477 | |
| 428 | [[ -z ${1} ]] && die "Missing parameter" |
478 | [[ -z ${1} ]] && die "Missing parameter" |
| 429 | local pkg=kde-base/$1 |
479 | local pkg=kde-base/$1 use |
| 430 | shift |
480 | shift |
|
|
481 | if [[ $pkg == *\[*\] ]]; then |
|
|
482 | use=${pkg#*\[} |
|
|
483 | use=${use%\]} |
|
|
484 | pkg=${pkg%\[*\]} |
|
|
485 | fi |
|
|
486 | |
| 431 | local param slot def="unset" var atom |
487 | local param slot def="unset" var atom |
| 432 | # The following variables will hold parameters that contain ":" |
488 | # The following variables will hold parameters that contain ":" |
| 433 | # - block_3_5 |
489 | # - block_3_5 |
| 434 | # - block_4_1 |
490 | # - block_4_1 |
| 435 | # - block_4_2 |
491 | # - block_4_2 |
| … | |
… | |
| 476 | else |
532 | else |
| 477 | atom="<=${pkg}-${!var}" |
533 | atom="<=${pkg}-${!var}" |
| 478 | fi |
534 | fi |
| 479 | # we always block our own slot, ignoring kdeprefix |
535 | # we always block our own slot, ignoring kdeprefix |
| 480 | if [[ ${SLOT} == ${slot} ]]; then |
536 | if [[ ${SLOT} == ${slot} ]]; then |
| 481 | echo " !${atom}:${slot}" |
537 | echo " !${atom}:${slot}${use:+[${use}]}" |
| 482 | else |
538 | else |
| 483 | # we only block other slots on -kdeprefix |
539 | # we only block other slots on -kdeprefix |
| 484 | echo " !kdeprefix? ( !${atom}:${slot}[-kdeprefix] )" |
540 | echo " !kdeprefix? ( !${atom}:${slot}[-kdeprefix${use:+,${use}}] )" |
| 485 | fi |
541 | fi |
| 486 | done |
542 | done |
| 487 | |
543 | |
| 488 | # This is a special case block for :3.5; it does not use the |
544 | # This is a special case block for :3.5; it does not use the |
| 489 | # default version passed, and no blocker is output *unless* a version |
545 | # default version passed, and no blocker is output *unless* a version |
| … | |
… | |
| 495 | elif [[ ${block_3_5:0:1} == "<" ]]; then |
551 | elif [[ ${block_3_5:0:1} == "<" ]]; then |
| 496 | atom="<${pkg}-${block_3_5:1}" |
552 | atom="<${pkg}-${block_3_5:1}" |
| 497 | else |
553 | else |
| 498 | atom="<=${pkg}-${block_3_5}" |
554 | atom="<=${pkg}-${block_3_5}" |
| 499 | fi |
555 | fi |
| 500 | echo " !${atom}:3.5" |
556 | echo " !${atom}:3.5${use:+[${use}]}" |
|
|
557 | fi |
|
|
558 | } |
|
|
559 | |
|
|
560 | # local function to enable specified translations for specified directory |
|
|
561 | # used from kde4-functions_enable_selected_linguas function |
|
|
562 | _enable_selected_linguas_dir() { |
|
|
563 | local lingua linguas sr_mess wp |
|
|
564 | local dir=${1} |
|
|
565 | |
|
|
566 | [[ -d ${dir} ]] || die "linguas dir \"${dir}\" does not exist" |
|
|
567 | comment_all_add_subdirectory "${dir}" |
|
|
568 | pushd "${dir}" > /dev/null |
|
|
569 | |
|
|
570 | # fix all various crazy sr@Latn variations |
|
|
571 | # this part is only ease for ebuilds, so there wont be any die when this |
|
|
572 | # fail at any point |
|
|
573 | sr_mess="sr@latn sr@latin sr@Latin" |
|
|
574 | for wp in ${sr_mess}; do |
|
|
575 | [[ -e ${wp}.po ]] && mv "${wp}.po" "sr@Latn.po" |
|
|
576 | if [[ -d ${wp} ]]; then |
|
|
577 | # move dir and fix cmakelists |
|
|
578 | mv "${wp}" "sr@Latn" |
|
|
579 | sed -i \ |
|
|
580 | -e "s:${wp}:sr@Latn:g" \ |
|
|
581 | CMakeLists.txt |
| 501 | fi |
582 | fi |
| 502 | } |
583 | done |
| 503 | |
584 | |
| 504 | # @FUNCTION: add_kdebase_dep |
585 | for lingua in ${KDE_LINGUAS}; do |
| 505 | # @DESCRIPTION: |
586 | if [[ -e ${lingua}.po ]]; then |
| 506 | # Create proper dependency for kde-base/ dependencies, |
587 | mv "${lingua}.po" "${lingua}.po.old" |
| 507 | # adding SLOT when needed (and *only* when needed). |
588 | fi |
| 508 | # This takes 1 or 2 arguments. The first being the package |
589 | done |
| 509 | # name, the optional second, is additional USE flags to append. |
|
|
| 510 | # The output of this should be added directly to DEPEND/RDEPEND, and |
|
|
| 511 | # may be wrapped in a USE conditional (but not an || conditional |
|
|
| 512 | # without an extra set of parentheses). |
|
|
| 513 | add_kdebase_dep() { |
|
|
| 514 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 515 | |
590 | |
| 516 | [[ -z ${1} ]] && die "Missing parameter" |
591 | for lingua in ${KDE_LINGUAS}; do |
| 517 | |
592 | if use linguas_${lingua} ; then |
| 518 | local use=${2:+,${2}} |
593 | if [[ -d ${lingua} ]]; then |
| 519 | |
594 | linguas="${linguas} ${lingua}" |
| 520 | if [[ ${KDEBASE} = kde-base ]]; then |
595 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 521 | # FIXME remove hack when kdepim-4.4.6 is gone |
596 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 522 | local FIXME_PV |
597 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
| 523 | if [[ ${KMNAME} = kdepim || ${PN} = kdepim-runtime ]] && [[ ${PV} = 4.4.6* ]] && [[ ${1} = kdelibs || ${1} = kdepimlibs ]]; then |
|
|
| 524 | FIXME_PV=4.4.5 |
|
|
| 525 | else |
|
|
| 526 | FIXME_PV=${PV} |
|
|
| 527 | fi |
598 | fi |
| 528 | echo " !kdeprefix? ( >=kde-base/${1}-${FIXME_PV}[aqua=,-kdeprefix${use}] )" |
599 | if [[ -e ${lingua}.po.old ]]; then |
| 529 | echo " kdeprefix? ( >=kde-base/${1}-${FIXME_PV}:${SLOT}[aqua=,kdeprefix${use}] )" |
600 | linguas="${linguas} ${lingua}" |
| 530 | else |
601 | mv "${lingua}.po.old" "${lingua}.po" |
| 531 | if [[ ${KDE_MINIMAL} = live ]]; then |
|
|
| 532 | echo " kde-base/${1}:${KDE_MINIMAL}[aqua=${use}]" |
|
|
| 533 | else |
|
|
| 534 | echo " >=kde-base/${1}-${KDE_MINIMAL}[aqua=${use}]" |
|
|
| 535 | fi |
602 | fi |
| 536 | fi |
603 | fi |
|
|
604 | done |
|
|
605 | [[ -n ${linguas} ]] && echo ">>> Enabling languages: ${linguas}" |
|
|
606 | |
|
|
607 | popd > /dev/null |
| 537 | } |
608 | } |
|
|
609 | |
|
|
610 | _calculate_kde_slot() { |
|
|
611 | local ver=${1:-${PV}} |
|
|
612 | local major=$(get_major_version ${ver}) |
|
|
613 | local minor=$(get_version_component_range 2 ${ver}) |
|
|
614 | local micro=$(get_version_component_range 3 ${ver}) |
|
|
615 | [[ ${ver} == 9999 ]] && echo live |
|
|
616 | (( major == 4 && micro == 9999 )) && echo ${major}.${minor} |
|
|
617 | if (( major == 4 && micro != 9999 )); then |
|
|
618 | (( micro < 50 )) && echo ${major}.${minor} || echo ${major}.$((minor + 1)) |
|
|
619 | fi |
|
|
620 | } |