| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.12 2009/02/10 20:07:24 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.51 2011/06/07 20:11:04 abcd Exp $ |
|
|
4 | |
|
|
5 | inherit versionator |
| 4 | |
6 | |
| 5 | # @ECLASS: kde4-functions.eclass |
7 | # @ECLASS: kde4-functions.eclass |
| 6 | # @MAINTAINER: |
8 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
9 | # kde@gentoo.org |
| 8 | # @BLURB: Common ebuild functions for KDE 4 packages |
10 | # @BLURB: Common ebuild functions for KDE 4 packages |
| … | |
… | |
| 10 | # This eclass contains all functions shared by the different eclasses, |
12 | # This eclass contains all functions shared by the different eclasses, |
| 11 | # for KDE 4 ebuilds. |
13 | # for KDE 4 ebuilds. |
| 12 | |
14 | |
| 13 | # @ECLASS-VARIABLE: EAPI |
15 | # @ECLASS-VARIABLE: EAPI |
| 14 | # @DESCRIPTION: |
16 | # @DESCRIPTION: |
| 15 | # By default kde eclass wants eapi 2 which might be redefinable. |
17 | # Currently kde4 eclasses support EAPI 3 and 4. |
| 16 | case ${EAPI} in |
18 | case ${EAPI:-0} in |
| 17 | 2) : ;; |
19 | 4|3) : ;; |
| 18 | *) die "No way! EAPI older than 2 is not supported." ;; |
20 | *) die "EAPI=${EAPI} is not supported" ;; |
| 19 | 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. |
| 20 | |
31 | |
| 21 | # @ECLASS-VARIABLE: KDEBASE |
32 | # @ECLASS-VARIABLE: KDEBASE |
| 22 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 23 | # 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 |
| 24 | # koffice ebuild. |
35 | # koffice ebuild. |
| 25 | |
|
|
| 26 | if [[ $CATEGORY = kde-base ]]; then |
36 | if [[ ${CATEGORY} = kde-base ]]; then |
| 27 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
37 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
| 28 | KDEBASE=kde-base |
38 | KDEBASE=kde-base |
| 29 | fi |
39 | elif [[ ${KMNAME-${PN}} = koffice ]]; then |
| 30 | |
|
|
| 31 | # is this a koffice ebuild? |
|
|
| 32 | if [[ $KMNAME = koffice || $PN = koffice ]]; then |
|
|
| 33 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
40 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
| 34 | KDEBASE=koffice |
41 | KDEBASE=koffice |
|
|
42 | elif [[ ${KMNAME-${PN}} = kdevelop ]]; then |
|
|
43 | debug-print "${ECLASS}: KDEVELOP ebuild recognized" |
|
|
44 | KDEBASE=kdevelop |
| 35 | fi |
45 | fi |
| 36 | |
46 | |
| 37 | # @ECLASS-VARIABLE: KDE_SLOTS |
47 | # @ECLASS-VARIABLE: KDE_SLOTS |
| 38 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 39 | # The slots used by all KDE versions later than 4.0. The live-ebuilds use |
49 | # The slots used by all KDE versions later than 4.0. The live KDE releases use |
| 40 | # KDE_LIVE_SLOTS instead. |
50 | # KDE_LIVE_SLOTS instead. Values should be ordered. |
| 41 | KDE_SLOTS=( kde-4 4.1 4.2 ) |
51 | KDE_SLOTS=( "4.1" "4.2" "4.3" "4.4" "4.5" "4.6" "4.7" ) |
| 42 | |
52 | |
| 43 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
53 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
| 44 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 45 | # The slots used by all KDE live versions. |
55 | # The slots used by KDE live versions. Values should be ordered. |
| 46 | KDE_LIVE_SLOTS=( live ) |
56 | KDE_LIVE_SLOTS=( "live" ) |
|
|
57 | |
|
|
58 | # determine the build type |
|
|
59 | if [[ ${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 | kde-workspace|kde-runtime|kde-baseapps) |
|
|
83 | KDE_SCM="git" |
|
|
84 | ;; |
|
|
85 | esac |
|
|
86 | fi |
|
|
87 | |
|
|
88 | # @ECLASS-VARIABLE: KDE_SCM |
|
|
89 | # @DESCRIPTION: |
|
|
90 | # If this is a live package which scm does it use |
|
|
91 | # Everything else uses svn by default |
|
|
92 | KDE_SCM="${KDE_SCM:-svn}" |
|
|
93 | case ${KDE_SCM} in |
|
|
94 | svn|git) ;; |
|
|
95 | *) die "KDE_SCM: ${KDE_SCM} is not supported" ;; |
|
|
96 | esac |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: KDE_LINGUAS |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # This is a whitespace-separated list of translations this ebuild supports. |
|
|
101 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
|
|
102 | # this variable before inheriting any eclasses. To enable only selected |
|
|
103 | # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
|
|
104 | # this for you. |
|
|
105 | # |
|
|
106 | # Example: KDE_LINGUAS="en_GB de nl" |
|
|
107 | if [[ ${BUILD_TYPE} != live || -n ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then |
|
|
108 | for _lingua in ${KDE_LINGUAS}; do |
|
|
109 | IUSE="${IUSE} linguas_${_lingua}" |
|
|
110 | done |
|
|
111 | fi |
| 47 | |
112 | |
| 48 | # @FUNCTION: buildsycoca |
113 | # @FUNCTION: buildsycoca |
| 49 | # @DESCRIPTION: |
114 | # @DESCRIPTION: |
| 50 | # Function to rebuild the KDE System Configuration Cache. |
115 | # Function to rebuild the KDE System Configuration Cache. |
| 51 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
116 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
| 52 | # |
|
|
| 53 | # Note that kde4-base.eclass already does this. |
|
|
| 54 | buildsycoca() { |
117 | buildsycoca() { |
| 55 | debug-print-function ${FUNCNAME} "$@" |
118 | debug-print-function ${FUNCNAME} "$@" |
| 56 | |
119 | |
| 57 | if [[ -z ${ROOT%%/} && -x ${KDEDIR}/bin/kbuildsycoca4 ]]; then |
120 | # We no longer need to run kbuildsycoca4, as kded does that automatically, as needed |
| 58 | # Make sure tha cache file exists, or kbuildsycoca4 will fail |
|
|
| 59 | touch "${KDEDIR}/share/kde4/services/ksycoca4" |
|
|
| 60 | |
121 | |
| 61 | # We have to unset DISPLAY and DBUS_SESSION_BUS_ADDRESS, the ones |
122 | # fix permission for some directories |
| 62 | # in the user's environment (through su [without '-']) may cause |
123 | for x in share/{config,kde4}; do |
| 63 | # kbuildsycoca4 to hang. |
124 | [[ ${KDEDIR} == /usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${EROOT}${KDEDIR}" |
| 64 | |
125 | for y in ${DIRS}; do |
| 65 | ebegin "Running kbuildsycoca4 to build global database" |
126 | [[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
| 66 | # This is needed because we support multiple kde versions installed together. |
127 | # fixes Bug 318237 |
| 67 | XDG_DATA_DIRS="/usr/share:${KDEDIRS//:/\/share:}/share:/usr/local/share" \ |
128 | if use userland_BSD ; then |
| 68 | DISPLAY="" DBUS_SESSION_BUS_ADDRESS="" \ |
129 | [[ $(stat -f %p "${y}/${x}") != 40755 ]] |
| 69 | ${KDEDIR}/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
130 | local stat_rtn="$?" |
| 70 | eend $? |
131 | else |
|
|
132 | [[ $(stat --format=%a "${y}/${x}") != 755 ]] |
|
|
133 | local stat_rtn=$? |
| 71 | fi |
134 | fi |
|
|
135 | if [[ $stat_rtn != 1 ]] ; then |
|
|
136 | ewarn "QA Notice:" |
|
|
137 | ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
|
|
138 | ewarn "Please report this issue to gentoo bugzilla." |
|
|
139 | einfo "Permissions will get adjusted automatically now." |
|
|
140 | find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
|
|
141 | fi |
|
|
142 | done |
|
|
143 | done |
| 72 | } |
144 | } |
| 73 | |
145 | |
| 74 | # @FUNCTION: comment_all_add_subdirectory |
146 | # @FUNCTION: comment_all_add_subdirectory |
| 75 | # @USAGE: [list of directory names] |
147 | # @USAGE: [list of directory names] |
| 76 | # @DESCRIPTION: |
148 | # @DESCRIPTION: |
| 77 | # Recursively comment all add_subdirectory instructions in listed directories, |
149 | # Recursively comment all add_subdirectory instructions in listed directories, |
| 78 | # except those in cmake/. |
150 | # except those in cmake/. |
| 79 | comment_all_add_subdirectory() { |
151 | comment_all_add_subdirectory() { |
| 80 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
152 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
| 81 | xargs -0 sed -i -e '/add_subdirectory/s/^/#DONOTCOMPILE /' -e '/ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' || \ |
153 | xargs -0 sed -i \ |
|
|
154 | -e '/^[[:space:]]*add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
155 | -e '/^[[:space:]]*ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
|
|
156 | -e '/^[[:space:]]*macro_optional_add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
157 | -e '/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
| 82 | die "${LINENO}: Initial sed died" |
158 | || die "${LINENO}: Initial sed died" |
| 83 | } |
159 | } |
| 84 | |
|
|
| 85 | # @ECLASS-VARIABLE: KDE_LINGUAS |
|
|
| 86 | # @DESCRIPTION: |
|
|
| 87 | # This is a whitespace-separated list of translations this ebuild supports. |
|
|
| 88 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
|
|
| 89 | # this variable before inheriting any eclasses. To enable only selected |
|
|
| 90 | # translations, ebuilds must call enable_selected_linguas(). kde4-base.eclass does |
|
|
| 91 | # this for you. |
|
|
| 92 | # |
|
|
| 93 | # Example: KDE_LINGUAS="en_GB de nl" |
|
|
| 94 | for _lingua in ${KDE_LINGUAS}; do |
|
|
| 95 | IUSE="${IUSE} linguas_${_lingua}" |
|
|
| 96 | done |
|
|
| 97 | |
160 | |
| 98 | # @FUNCTION: enable_selected_linguas |
161 | # @FUNCTION: enable_selected_linguas |
| 99 | # @DESCRIPTION: |
162 | # @DESCRIPTION: |
| 100 | # Enable translations based on LINGUAS settings and translations supported by |
163 | # Enable translations based on LINGUAS settings and translations supported by |
| 101 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
164 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
| 102 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
165 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
| 103 | enable_selected_linguas() { |
166 | enable_selected_linguas() { |
| 104 | local lingua sr_mess wp |
167 | debug-print-function ${FUNCNAME} "$@" |
| 105 | # inform user about kde-l10n for full translation. |
|
|
| 106 | if ! has_version kde-base/kde-l10n; then |
|
|
| 107 | echo |
|
|
| 108 | elog "For fully translated application you should also emerge" |
|
|
| 109 | elog "kde-base/kde-l10n package which ships translated kde core" |
|
|
| 110 | elog "strings." |
|
|
| 111 | echo |
|
|
| 112 | fi |
|
|
| 113 | |
168 | |
| 114 | # ebuild overridable linguas directory definition |
169 | local x |
| 115 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:=${S}/po} |
|
|
| 116 | cd "$KDE_LINGUAS_DIR" || die "wrong linguas dir specified" |
|
|
| 117 | |
170 | |
| 118 | # fix all various crazy sr@Latn variations |
171 | # if there is no linguas defined we enable everything |
| 119 | # this part is only ease for ebuilds, so there wont be any die when this |
172 | if ! $(env | grep -q "^LINGUAS="); then |
| 120 | # fail at any point |
173 | return 0 |
| 121 | sr_mess="sr@latn sr@latin sr@Latin" |
|
|
| 122 | for wp in ${sr_mess}; do |
|
|
| 123 | [[ -e "$wp.po" ]] && mv "$wp.po" "sr@Latn.po" |
|
|
| 124 | if [[ -d "$wp" ]]; then |
|
|
| 125 | # move dir and fix cmakelists |
|
|
| 126 | mv "$wp" "sr@Latn" |
|
|
| 127 | sed -i \ |
|
|
| 128 | -e "s:$wp:sr@Latin:g" \ |
|
|
| 129 | CMakeLists.txt |
|
|
| 130 | fi |
174 | fi |
| 131 | done |
|
|
| 132 | |
175 | |
| 133 | for lingua in ${KDE_LINGUAS}; do |
176 | # @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
| 134 | if [[ -e "$lingua.po" ]]; then |
|
|
| 135 | mv "$lingua.po" "$lingua.po.old" |
|
|
| 136 | fi |
|
|
| 137 | done |
|
|
| 138 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
|
|
| 139 | for lingua in ${LINGUAS}; do |
|
|
| 140 | ebegin "Enabling LANGUAGE: ${lingua}" |
|
|
| 141 | if [[ -d "$lingua" ]]; then |
|
|
| 142 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
|
|
| 143 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
|
|
| 144 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
|
|
| 145 | fi |
|
|
| 146 | if [[ -e "$lingua.po.old" ]]; then |
|
|
| 147 | mv "$lingua.po.old" "$lingua.po" |
|
|
| 148 | fi |
|
|
| 149 | eend $? |
|
|
| 150 | done |
|
|
| 151 | } |
|
|
| 152 | |
|
|
| 153 | # @FUNCTION: koffice_fix_libraries |
|
|
| 154 | # @DESCRIPTION: |
177 | # @DESCRIPTION: |
| 155 | # replace the weird koffice lib search with hardcoded one, so it |
178 | # Specified folder where application translations are located. |
| 156 | # actually builds and works. |
179 | # Can be defined as array of folders where translations are located. |
| 157 | koffice_fix_libraries() { |
180 | # Note that space separated list of dirs is not supported. |
| 158 | local LIB_ARRAY R_QT_kostore R_BAS_kostore R_BAS_koodf R_KROSS_kokross R_QT_komain |
181 | # Default value is set to "po". |
| 159 | local R_CMS_pigmentcms R_BAS_pigmentcms R_BAS_koresources R_BAS_flake R_BAS_koguiutils |
182 | if [[ "$(declare -p KDE_LINGUAS_DIR 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
| 160 | local R_BAS_kopageapp R_BAS_kotext R_BAS_kowmf libname R |
183 | debug-print "$FUNCNAME: we have these subfolders defined: ${KDE_LINGUAS_DIR}" |
| 161 | case ${PN} in |
184 | for x in ${KDE_LINGUAS_DIR[@]}; do |
| 162 | koffice-data|koffice-libs) |
185 | _enable_selected_linguas_dir ${x} |
| 163 | ;; |
186 | done |
| 164 | *) |
187 | else |
| 165 | ### basic array |
188 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
| 166 | LIB_ARRAY="kostore koodf kokross komain pigmentcms koresources flake koguiutils kopageapp kotext kowmf" |
189 | _enable_selected_linguas_dir ${KDE_LINGUAS_DIR} |
| 167 | ### dep array |
190 | fi |
| 168 | R_QT_kostore="\"/usr/$(get_libdir)/qt4/libQtCore.so\" |
191 | } |
| 169 | \"/usr/$(get_libdir)/qt4/libQtXml.so\" |
192 | |
| 170 | \"${KDEDIR}/$(get_libdir)/libkdecore.so\"" |
193 | # @FUNCTION: enable_selected_doc_linguas |
| 171 | R_BAS_kostore="libkostore ${R_QT_kostore}" |
194 | # @DESCRIPTION: |
| 172 | R_BAS_koodf="libkoodf ${R_BAS_kostore}" |
195 | # Enable only selected linguas enabled doc folders. |
| 173 | R_KROSS_kokross=" |
196 | enable_selected_doc_linguas() { |
| 174 | \"${KDEDIR}/$(get_libdir)/libkrossui.so\" |
197 | debug-print-function ${FUNCNAME} "$@" |
| 175 | \"${KDEDIR}/$(get_libdir)/libkrosscore.so\"" |
198 | |
| 176 | R_BAS_kokross="libkokross ${R_BAS_koodf} ${R_KROSS_kokross}" |
199 | # if there is no linguas defined we enable everything |
| 177 | R_QT_komain="\"/usr/$(get_libdir)/qt4/libQtGui.so\"" |
200 | if ! $(env | grep -q "^LINGUAS="); then |
| 178 | R_BAS_komain="libkomain ${R_BAS_koodf} ${R_QT_komain}" |
201 | return 0 |
| 179 | R_CMS_pigmentcms="\"/usr/$(get_libdir)/liblcms.so\"" |
202 | fi |
| 180 | R_BAS_pigmentcms="libpigmentcms ${R_BAS_komain} ${R_CMS_pigmentcms}" |
203 | |
| 181 | R_BAS_koresources="libkoresources ${R_BAS_pigmentcms}" |
204 | # @ECLASS-VARIABLE: KDE_DOC_DIRS |
| 182 | R_BAS_flake="libflake ${R_BAS_pigmentcms}" |
205 | # @DESCRIPTION: |
| 183 | R_BAS_koguiutils="libkoguiutils libkoresources libflake ${R_BAS_pigmentcms}" |
206 | # Variable specifying whitespace separated patterns for documentation locations. |
| 184 | R_BAS_kopageapp="libkopageapp ${R_BAS_koguitls}" |
207 | # Default is "doc/%lingua" |
| 185 | R_BAS_kotext="libkotext libkoresources libflake ${R_BAS_pigmentcms}" |
208 | KDE_DOC_DIRS=${KDE_DOC_DIRS:='doc/%lingua'} |
| 186 | ### additional unmentioned stuff |
209 | local linguas |
| 187 | R_BAS_kowmf="libkowmf" |
210 | for pattern in ${KDE_DOC_DIRS}; do |
| 188 | for libname in ${LIB_ARRAY}; do |
211 | |
| 189 | ebegin "Fixing library ${libname} with hardcoded path" |
212 | local handbookdir=`dirname ${pattern}` |
| 190 | for libpath in $(eval "echo \$R_BAS_${libname}"); do |
213 | local translationdir=`basename ${pattern}` |
| 191 | if [[ "${libpath}" != "\"/usr/"* ]]; then |
214 | # Do filename pattern supplied, treat as directory |
| 192 | R="${R} \"${KDEDIR}/$(get_libdir)/${libpath}.so\"" |
215 | [[ ${handbookdir} = '.' ]] && handbookdir=${translationdir} && translationdir= |
|
|
216 | [[ -d ${handbookdir} ]] || die 'wrong doc dir specified' |
|
|
217 | |
|
|
218 | if ! use handbook; then |
|
|
219 | # Disable whole directory |
|
|
220 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
221 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
|
|
222 | -i CMakeLists.txt || die 'failed to comment out all handbooks' |
| 193 | else |
223 | else |
| 194 | R="${R} ${libpath}" |
224 | # Disable subdirectories recursively |
|
|
225 | comment_all_add_subdirectory "${handbookdir}" |
|
|
226 | # Add requested translations |
|
|
227 | local lingua |
|
|
228 | for lingua in en ${KDE_LINGUAS}; do |
|
|
229 | if [[ ${lingua} = en ]] || use linguas_${lingua}; then |
|
|
230 | if [[ -d ${handbookdir}/${translationdir//%lingua/${lingua}} ]]; then |
|
|
231 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
232 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
233 | -i "${handbookdir}"/CMakeLists.txt && ! has ${lingua} ${linguas} && linguas="${linguas} ${lingua}" |
| 195 | fi |
234 | fi |
| 196 | done |
235 | fi |
| 197 | find "${S}" -name CMakeLists.txt -print| xargs -i \ |
|
|
| 198 | sed -i \ |
|
|
| 199 | -e "s: ${libname} : ${R} :g" \ |
|
|
| 200 | -e "s: ${libname}): ${R}):g" \ |
|
|
| 201 | -e "s:(${libname} :(${R} :g" \ |
|
|
| 202 | -e "s:(${libname}):(${R}):g" \ |
|
|
| 203 | -e "s: ${libname}$: ${R}:g" \ |
|
|
| 204 | {} || die "Fixing library names failed." |
|
|
| 205 | eend $? |
|
|
| 206 | done |
236 | done |
| 207 | ;; |
|
|
| 208 | esac |
|
|
| 209 | } |
|
|
| 210 | # @FUNCTION: get_build_type |
|
|
| 211 | # @DESCRIPTION: |
|
|
| 212 | # Determine whether we are using live ebuild or tbzs. |
|
|
| 213 | get_build_type() { |
|
|
| 214 | if [[ $SLOT = live || $PV = 9999* ]]; then |
|
|
| 215 | BUILD_TYPE="live" |
|
|
| 216 | else |
|
|
| 217 | BUILD_TYPE="release" |
|
|
| 218 | fi |
237 | fi |
| 219 | export BUILD_TYPE |
|
|
| 220 | } |
|
|
| 221 | |
238 | |
| 222 | # @FUNCTION: get_latest_kdedir |
|
|
| 223 | # @DESCRIPTION: |
|
|
| 224 | # We set up KDEDIR according to the latest KDE version installed; installing our |
|
|
| 225 | # package for all available installs is just insane. |
|
|
| 226 | # We can check for kdelibs because it is the most basic package; no KDE package |
|
|
| 227 | # working without it. This might be changed in future. |
|
|
| 228 | get_latest_kdedir() { |
|
|
| 229 | case ${KDE_WANTED} in |
|
|
| 230 | # note this will need to be updated as stable moves and so on |
|
|
| 231 | live) |
|
|
| 232 | _versions="9999 4.1.69 4.1.0" |
|
|
| 233 | ;; |
|
|
| 234 | snapshot) |
|
|
| 235 | _versions="4.1.69 4.1.0 9999" |
|
|
| 236 | ;; |
|
|
| 237 | testing) |
|
|
| 238 | _versions="4.1.0 4.1.69 9999" |
|
|
| 239 | ;; |
|
|
| 240 | stable) |
|
|
| 241 | _versions="4.1.0 4.1.69 9999" |
|
|
| 242 | ;; |
|
|
| 243 | *) die "KDE_WANTED=${KDE_WANTED} not supported here." ;; |
|
|
| 244 | esac |
|
|
| 245 | # check if exists and fallback as we go |
|
|
| 246 | for X in ${_versions}; do |
|
|
| 247 | if has_version ">=kde-base/kdelibs-${X}"; then |
|
|
| 248 | # figure out which X we are in and set it into _kdedir |
|
|
| 249 | case ${X} in |
|
|
| 250 | # also keep track here same for kde_wanted |
|
|
| 251 | 9999) |
|
|
| 252 | _kdedir="live" |
|
|
| 253 | break |
|
|
| 254 | ;; |
|
|
| 255 | 4.1.69) |
|
|
| 256 | _kdedir="4.2" |
|
|
| 257 | break |
|
|
| 258 | ;; |
|
|
| 259 | 4.1.0) |
|
|
| 260 | _kdedir="4.1" |
|
|
| 261 | break |
|
|
| 262 | ;; |
|
|
| 263 | esac |
|
|
| 264 | fi |
|
|
| 265 | done |
239 | done |
|
|
240 | [[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
| 266 | } |
241 | } |
| 267 | |
242 | |
| 268 | # @FUNCTION: migrate_store_dir |
243 | # @FUNCTION: migrate_store_dir |
| 269 | # @DESCRIPTION: |
244 | # @DESCRIPTION: |
| 270 | # Migrate the remnants of ${ESVN_STORE_DIR}/KDE/ to ${ESVN_STORE_DIR}/. |
245 | # Universal store dir migration |
| 271 | # Perform experimental split of kdebase to kdebase-apps. |
246 | # * performs split of kdebase to kdebase-apps when needed |
|
|
247 | # * moves playground/extragear kde4-base-style to toplevel dir |
| 272 | migrate_store_dir() { |
248 | migrate_store_dir() { |
| 273 | local cleandir |
249 | if [[ ${KDE_SCM} != svn ]]; then |
|
|
250 | die "migrate_store_dir() only makes sense for subversion" |
|
|
251 | fi |
|
|
252 | |
| 274 | cleandir="${ESVN_STORE_DIR}/KDE" |
253 | local cleandir="${ESVN_STORE_DIR}/KDE" |
|
|
254 | |
| 275 | if [[ -d "${cleandir}" ]]; then |
255 | if [[ -d ${cleandir} ]]; then |
| 276 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
256 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
| 277 | addwrite "${ESVN_STORE_DIR}" |
257 | addwrite "${ESVN_STORE_DIR}" |
| 278 | # Split kdebase |
258 | # Split kdebase |
| 279 | local module |
259 | local module |
| 280 | if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
260 | if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
| … | |
… | |
| 288 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
268 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
| 289 | fi |
269 | fi |
| 290 | # Move the rest |
270 | # Move the rest |
| 291 | local pkg |
271 | local pkg |
| 292 | for pkg in "${cleandir}"/*; do |
272 | for pkg in "${cleandir}"/*; do |
| 293 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "failed to move ${pkg}" |
273 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
| 294 | done |
274 | done |
| 295 | 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." |
275 | 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." |
|
|
276 | fi |
|
|
277 | |
|
|
278 | if ! hasq kde4-meta ${INHERITED}; then |
|
|
279 | case ${KMNAME} in |
|
|
280 | extragear*|playground*) |
|
|
281 | local scmlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
|
|
282 | if [[ -d "${scmlocalpath}" ]]; then |
|
|
283 | local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
|
|
284 | ewarn "'${scmlocalpath}' has been found." |
|
|
285 | ewarn "Moving contents to new location: ${destdir}" |
|
|
286 | addwrite "${ESVN_STORE_DIR}" |
|
|
287 | mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${scmlocalpath}" "${destdir}" \ |
|
|
288 | || die "Failed to move to '${scmlocalpath}'" |
|
|
289 | # Try cleaning empty directories |
|
|
290 | rmdir "`dirname "${scmlocalpath}"`" 2> /dev/null |
|
|
291 | fi |
|
|
292 | ;; |
|
|
293 | esac |
| 296 | fi |
294 | fi |
| 297 | } |
295 | } |
| 298 | |
296 | |
| 299 | # Functions handling KMLOADLIBS and KMSAVELIBS |
297 | # Functions handling KMLOADLIBS and KMSAVELIBS |
| 300 | |
298 | |
| 301 | # @FUNCTION: save_library_dependencies |
299 | # @FUNCTION: save_library_dependencies |
| 302 | # @DESCRIPTION: |
300 | # @DESCRIPTION: |
| 303 | # Add exporting CMake dependencies for current package |
301 | # Add exporting CMake dependencies for current package |
| 304 | save_library_dependencies() { |
302 | save_library_dependencies() { |
| 305 | local depsfile="${T}/${PN}:${SLOT}" |
303 | local depsfile="${T}/${PN}" |
| 306 | |
304 | |
| 307 | ebegin "Saving library dependendencies in ${depsfile##*/}" |
305 | ebegin "Saving library dependencies in ${depsfile##*/}" |
| 308 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
306 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
| 309 | die "Failed to save the library dependencies." |
307 | die "Failed to save the library dependencies." |
| 310 | eend $? |
308 | eend $? |
| 311 | } |
309 | } |
| 312 | |
310 | |
| 313 | # @FUNCTION: install_library_dependencies |
311 | # @FUNCTION: install_library_dependencies |
| 314 | # @DESCRIPTION: |
312 | # @DESCRIPTION: |
| 315 | # Install generated CMake library dependencies to /var/lib/kde |
313 | # Install generated CMake library dependencies to /var/lib/kde |
| 316 | install_library_dependencies() { |
314 | install_library_dependencies() { |
| 317 | local depsfile="$T/$PN:$SLOT" |
315 | local depsfile="${T}/${PN}" |
|
|
316 | |
| 318 | ebegin "Installing library dependendencies as ${depsfile##*/}" |
317 | ebegin "Installing library dependencies as ${depsfile##*/}" |
| 319 | insinto /var/lib/kde |
318 | insinto /var/lib/kde |
| 320 | doins "${depsfile}" || die "Failed to install library dependencies." |
319 | doins "${depsfile}" || die "Failed to install library dependencies." |
| 321 | eend $? |
320 | eend $? |
| 322 | } |
321 | } |
| 323 | |
322 | |
| 324 | # @FUNCTION: load_library_dependencies |
323 | # @FUNCTION: load_library_dependencies |
| 325 | # @DESCRIPTION: |
324 | # @DESCRIPTION: |
| 326 | # Inject specified library dependencies in current package |
325 | # Inject specified library dependencies in current package |
| 327 | load_library_dependencies() { |
326 | load_library_dependencies() { |
| 328 | local pn i depsfile |
327 | local pn i depsfile |
| 329 | ebegin "Injecting library dependendencies from '${KMLOADLIBS}'" |
328 | ebegin "Injecting library dependencies from '${KMLOADLIBS}'" |
| 330 | |
329 | |
| 331 | i=0 |
330 | i=0 |
| 332 | for pn in ${KMLOADLIBS} ; do |
331 | for pn in ${KMLOADLIBS} ; do |
| 333 | ((i++)) |
332 | ((i++)) |
| 334 | depsfile="/var/lib/kde/${pn}:${SLOT}" |
333 | depsfile="${EPREFIX}/var/lib/kde/${pn}" |
|
|
334 | [[ -r ${depsfile} ]] || depsfile="${EPREFIX}/var/lib/kde/${pn}:$(get_kde_version)" |
| 335 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
335 | [[ -r ${depsfile} ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
| 336 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
336 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
| 337 | die "Failed to include library dependencies for ${pn}" |
337 | die "Failed to include library dependencies for ${pn}" |
| 338 | done |
338 | done |
| 339 | eend $? |
339 | eend $? |
| 340 | } |
340 | } |
|
|
341 | |
|
|
342 | # @FUNCTION: block_other_slots |
|
|
343 | # @DESCRIPTION: |
|
|
344 | # Create blocks for the current package in other slots |
|
|
345 | block_other_slots() { |
|
|
346 | debug-print-function ${FUNCNAME} "$@" |
|
|
347 | |
|
|
348 | _do_blocker ${PN} 0:${SLOT} |
|
|
349 | } |
|
|
350 | |
|
|
351 | # @FUNCTION: add_blocker |
|
|
352 | # @DESCRIPTION: |
|
|
353 | # Create correct RDEPEND value for blocking correct package. |
|
|
354 | # Useful for file-collision blocks. |
|
|
355 | # Parameters are package and version(s) to block. |
|
|
356 | # add_blocker kdelibs 4.2.4 |
|
|
357 | # If no version is specified, then all versions will be blocked |
|
|
358 | # If any arguments (from 2 on) contain a ":", then different versions |
|
|
359 | # are blocked in different slots. (Unlisted slots get the version without |
|
|
360 | # a ":", if none, then all versions are blocked). The parameter is then of |
|
|
361 | # the form VERSION:SLOT. Any VERSION of 0 means that no blocker will be |
|
|
362 | # added for that slot (or, if no slot, then for any unlisted slot). |
|
|
363 | # A parameter of the form :SLOT means to block all versions from that slot. |
|
|
364 | # If VERSION begins with "<", then "!<foo" will be used instead of "!<=foo". |
|
|
365 | # As a special case, if a parameter with slot "3.5" is passed, then that slot |
|
|
366 | # may also be blocked. |
|
|
367 | # |
|
|
368 | # Versions that match "4.x.50" are equivalent to all slots up to (and including) |
|
|
369 | # "4.x", but nothing following slot "4.x" |
|
|
370 | # |
|
|
371 | # As an example, if SLOT=live, then |
|
|
372 | # add_blocker kdelibs 0 :4.3 '<4.3.96:4.4' 9999:live |
|
|
373 | # will add the following to RDEPEND: |
|
|
374 | # !kde-base/kdelibs:4.3 |
|
|
375 | # !<kde-base/kdelibs-4.3.96:4.4 |
|
|
376 | # !<=kde-base/kdelibs-9999:live |
|
|
377 | add_blocker() { |
|
|
378 | debug-print-function ${FUNCNAME} "$@" |
|
|
379 | |
|
|
380 | RDEPEND+=" $(_do_blocker "$@")" |
|
|
381 | } |
|
|
382 | |
|
|
383 | # @FUNCTION: add_kdebase_dep |
|
|
384 | # @DESCRIPTION: |
|
|
385 | # Create proper dependency for kde-base/ dependencies, adding SLOT when needed |
|
|
386 | # (and *only* when needed). |
|
|
387 | # This takes 1 to 3 arguments. The first being the package name, the optional |
|
|
388 | # second is additional USE flags to append, and the optional third is the |
|
|
389 | # version to use instead of the automatic version (use sparingly). |
|
|
390 | # The output of this should be added directly to DEPEND/RDEPEND, and may be |
|
|
391 | # wrapped in a USE conditional (but not an || conditional without an extra set |
|
|
392 | # of parentheses). |
|
|
393 | add_kdebase_dep() { |
|
|
394 | debug-print-function ${FUNCNAME} "$@" |
|
|
395 | |
|
|
396 | local ver |
|
|
397 | |
|
|
398 | if [[ -n ${3} ]]; then |
|
|
399 | ver=${3} |
|
|
400 | elif [[ -n ${KDE_OVERRIDE_MINIMAL} ]]; then |
|
|
401 | ver=${KDE_OVERRIDE_MINIMAL} |
|
|
402 | elif [[ ${KDEBASE} != kde-base ]]; then |
|
|
403 | ver=${KDE_MINIMAL} |
|
|
404 | # FIXME remove hack when kdepim-4.4.* is gone |
|
|
405 | elif [[ ( ${KMNAME} == kdepim || ${PN} == kdepim-runtime ) && $(get_kde_version) == 4.4 && ${1} =~ ^(kde(pim)?libs|oxygen-icons)$ ]]; then |
|
|
406 | ver=4.4.5 |
|
|
407 | # FIXME remove hack when kdepim-4.6beta is gone |
|
|
408 | elif [[ ( ${KMNAME} == kdepim || ${PN} == kdepim-runtime ) && ${PV} == 4.5.98 && ${1} =~ ^(kde(pim)?libs|oxygen-icons)$ ]]; then |
|
|
409 | ver=4.5.90 |
|
|
410 | # if building stable-live version depend just on slot |
|
|
411 | # to allow merging packages against more stable basic stuff |
|
|
412 | elif [[ ${PV} == *.9999 ]]; then |
|
|
413 | ver=$(get_kde_version) |
|
|
414 | else |
|
|
415 | ver=${PV} |
|
|
416 | fi |
|
|
417 | |
|
|
418 | [[ -z ${1} ]] && die "Missing parameter" |
|
|
419 | |
|
|
420 | local use=${2:+,${2}} |
|
|
421 | |
|
|
422 | if [[ ${ver} == live ]]; then |
|
|
423 | echo " kde-base/${1}:live[aqua=${use}]" |
|
|
424 | else |
|
|
425 | echo " >=kde-base/${1}-${ver}[aqua=${use}]" |
|
|
426 | fi |
|
|
427 | } |
|
|
428 | |
|
|
429 | # _greater_max_in_slot ver slot |
|
|
430 | # slot must be 4.x or live |
|
|
431 | # returns true if ver is >= the maximum possibile version in slot |
|
|
432 | _greater_max_in_slot() { |
|
|
433 | local ver=$1 |
|
|
434 | local slot=$2 |
|
|
435 | # If slot is live, then return false |
|
|
436 | # (nothing is greater than the maximum live version) |
|
|
437 | [[ $slot == live ]] && return 1 |
|
|
438 | # Otherwise, for slot X.Y, test against X.Y.50 |
|
|
439 | local test=${slot}.50 |
|
|
440 | version_compare $1 ${test} |
|
|
441 | # 1 = '<', 2 = '=', 3 = '>' |
|
|
442 | (( $? != 1 )) |
|
|
443 | } |
|
|
444 | |
|
|
445 | # _less_min_in_slot ver slot |
|
|
446 | # slot must be 4.x or live |
|
|
447 | # returns true if ver is <= the minimum possibile version in slot |
|
|
448 | _less_min_in_slot() { |
|
|
449 | local ver=$1 |
|
|
450 | local slot=$2 |
|
|
451 | # If slot == live, then test with "9999_pre", so that 9999 tests false |
|
|
452 | local test=9999_pre |
|
|
453 | # If slot == X.Y, then test with X.(Y-1).50 |
|
|
454 | [[ $slot != live ]] && test=${slot%.*}.$((${slot#*.} - 1)).50 |
|
|
455 | version_compare $1 ${test} |
|
|
456 | # 1 = '<', 2 = '=', 3 = '>' |
|
|
457 | (( $? != 3 )) |
|
|
458 | } |
|
|
459 | |
|
|
460 | # Internal function used for add_blocker and block_other_slots |
|
|
461 | # This takes the same parameters as add_blocker, but echos to |
|
|
462 | # stdout instead of updating a variable. |
|
|
463 | _do_blocker() { |
|
|
464 | debug-print-function ${FUNCNAME} "$@" |
|
|
465 | |
|
|
466 | [[ -z ${1} ]] && die "Missing parameter" |
|
|
467 | local pkg=kde-base/$1 use |
|
|
468 | shift |
|
|
469 | if [[ $pkg == *\[*\] ]]; then |
|
|
470 | use=${pkg#*\[} |
|
|
471 | use=${use%\]} |
|
|
472 | pkg=${pkg%\[*\]} |
|
|
473 | fi |
|
|
474 | |
|
|
475 | local param slot def="unset" var atom |
|
|
476 | # The following variables will hold parameters that contain ":" |
|
|
477 | # - block_3_5 |
|
|
478 | # - block_4_1 |
|
|
479 | # - block_4_2 |
|
|
480 | # - block_4_3 |
|
|
481 | # - block_4_4 |
|
|
482 | # - block_live |
|
|
483 | for slot in 3.5 ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
484 | local block_${slot//./_}="unset" |
|
|
485 | done |
|
|
486 | |
|
|
487 | # This construct goes through each parameter passed, and sets |
|
|
488 | # either def or block_* to the version passed |
|
|
489 | for param; do |
|
|
490 | # If the parameter does not have a ":" in it... |
|
|
491 | if [[ ${param/:} == ${param} ]]; then |
|
|
492 | def=${param} |
|
|
493 | else # the parameter *does* have a ":" in it |
|
|
494 | # so everything after the : is the slot... |
|
|
495 | slot=${param#*:} |
|
|
496 | # ...and everything before the : is the version |
|
|
497 | local block_${slot//./_}=${param%:*} |
|
|
498 | fi |
|
|
499 | done |
|
|
500 | |
|
|
501 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
502 | # ${var} contains the name of the variable we care about for this slot |
|
|
503 | # ${!var} is it's value |
|
|
504 | var=block_${slot//./_} |
|
|
505 | # if we didn't pass *:${slot}, then use the unsloted value |
|
|
506 | [[ ${!var} == "unset" ]] && var=def |
|
|
507 | |
|
|
508 | # If no version was passed, or the version is greater than the maximum |
|
|
509 | # possible version in this slot, block all versions in this slot |
|
|
510 | if [[ ${!var} == "unset" ]] || [[ -z ${!var} ]] || _greater_max_in_slot ${!var#<} ${slot}; then |
|
|
511 | atom=${pkg} |
|
|
512 | # If the version is "0" or less than the minimum possible version in |
|
|
513 | # this slot, do nothing |
|
|
514 | elif [[ ${!var} == "0" ]] || _less_min_in_slot ${!var#<} ${slot}; then |
|
|
515 | continue |
|
|
516 | # If the version passed begins with a "<", then use "<" instead of "<=" |
|
|
517 | elif [[ ${!var:0:1} == "<" ]]; then |
|
|
518 | # this also removes the first character of the version, which is a "<" |
|
|
519 | atom="<${pkg}-${!var:1}" |
|
|
520 | else |
|
|
521 | atom="<=${pkg}-${!var}" |
|
|
522 | fi |
|
|
523 | echo " !${atom}:${slot}${use:+[${use}]}" |
|
|
524 | done |
|
|
525 | |
|
|
526 | # This is a special case block for :3.5; it does not use the |
|
|
527 | # default version passed, and no blocker is output *unless* a version |
|
|
528 | # is passed, or ":3.5" is passed to explicitly request a block on all |
|
|
529 | # 3.5 versions. |
|
|
530 | if [[ ${block_3_5} != "unset" && ${block_3_5} != "0" ]]; then |
|
|
531 | if [[ -z ${block_3_5} ]]; then |
|
|
532 | atom=${pkg} |
|
|
533 | elif [[ ${block_3_5:0:1} == "<" ]]; then |
|
|
534 | atom="<${pkg}-${block_3_5:1}" |
|
|
535 | else |
|
|
536 | atom="<=${pkg}-${block_3_5}" |
|
|
537 | fi |
|
|
538 | echo " !${atom}:3.5${use:+[${use}]}" |
|
|
539 | fi |
|
|
540 | } |
|
|
541 | |
|
|
542 | # local function to enable specified translations for specified directory |
|
|
543 | # used from kde4-functions_enable_selected_linguas function |
|
|
544 | _enable_selected_linguas_dir() { |
|
|
545 | local lingua linguas sr_mess wp |
|
|
546 | local dir=${1} |
|
|
547 | |
|
|
548 | [[ -d ${dir} ]] || die "linguas dir \"${dir}\" does not exist" |
|
|
549 | comment_all_add_subdirectory "${dir}" |
|
|
550 | pushd "${dir}" > /dev/null |
|
|
551 | |
|
|
552 | # fix all various crazy sr@Latn variations |
|
|
553 | # this part is only ease for ebuilds, so there wont be any die when this |
|
|
554 | # fail at any point |
|
|
555 | sr_mess="sr@latn sr@latin sr@Latin" |
|
|
556 | for wp in ${sr_mess}; do |
|
|
557 | [[ -e ${wp}.po ]] && mv "${wp}.po" "sr@Latn.po" |
|
|
558 | if [[ -d ${wp} ]]; then |
|
|
559 | # move dir and fix cmakelists |
|
|
560 | mv "${wp}" "sr@Latn" |
|
|
561 | sed -i \ |
|
|
562 | -e "s:${wp}:sr@Latn:g" \ |
|
|
563 | CMakeLists.txt |
|
|
564 | fi |
|
|
565 | done |
|
|
566 | |
|
|
567 | for lingua in ${KDE_LINGUAS}; do |
|
|
568 | if [[ -e ${lingua}.po ]]; then |
|
|
569 | mv "${lingua}.po" "${lingua}.po.old" |
|
|
570 | fi |
|
|
571 | done |
|
|
572 | |
|
|
573 | for lingua in ${KDE_LINGUAS}; do |
|
|
574 | if use linguas_${lingua} ; then |
|
|
575 | if [[ -d ${lingua} ]]; then |
|
|
576 | linguas="${linguas} ${lingua}" |
|
|
577 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
|
|
578 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
|
|
579 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
|
|
580 | fi |
|
|
581 | if [[ -e ${lingua}.po.old ]]; then |
|
|
582 | linguas="${linguas} ${lingua}" |
|
|
583 | mv "${lingua}.po.old" "${lingua}.po" |
|
|
584 | fi |
|
|
585 | fi |
|
|
586 | done |
|
|
587 | [[ -n ${linguas} ]] && echo ">>> Enabling languages: ${linguas}" |
|
|
588 | |
|
|
589 | popd > /dev/null |
|
|
590 | } |
|
|
591 | |
|
|
592 | # @FUNCTION: get_kde_version |
|
|
593 | # Translates an ebuild version into a major.minor KDE SC |
|
|
594 | # release version. If no version is specified, ${PV} is used. |
|
|
595 | get_kde_version() { |
|
|
596 | local ver=${1:-${PV}} |
|
|
597 | local major=$(get_major_version ${ver}) |
|
|
598 | local minor=$(get_version_component_range 2 ${ver}) |
|
|
599 | local micro=$(get_version_component_range 3 ${ver}) |
|
|
600 | [[ ${ver} == 9999 ]] && echo live |
|
|
601 | (( major == 4 && micro == 9999 )) && echo ${major}.${minor} |
|
|
602 | if (( major == 4 && micro != 9999 )); then |
|
|
603 | (( micro < 50 )) && echo ${major}.${minor} || echo ${major}.$((minor + 1)) |
|
|
604 | fi |
|
|
605 | } |