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