1 |
reavertm |
1.30 |
# Copyright 1999-2010 Gentoo Foundation |
2 |
ingmar |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
tampakrap |
1.39 |
# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.38 2010/12/06 10:17:04 tampakrap Exp $ |
4 |
ingmar |
1.1 |
|
5 |
alexxy |
1.25 |
inherit versionator |
6 |
|
|
|
7 |
ingmar |
1.1 |
# @ECLASS: kde4-functions.eclass |
8 |
|
|
# @MAINTAINER: |
9 |
|
|
# kde@gentoo.org |
10 |
scarabeus |
1.10 |
# @BLURB: Common ebuild functions for KDE 4 packages |
11 |
ingmar |
1.1 |
# @DESCRIPTION: |
12 |
|
|
# This eclass contains all functions shared by the different eclasses, |
13 |
scarabeus |
1.10 |
# for KDE 4 ebuilds. |
14 |
|
|
|
15 |
|
|
# @ECLASS-VARIABLE: EAPI |
16 |
|
|
# @DESCRIPTION: |
17 |
wired |
1.22 |
# By default kde4 eclasses want EAPI 2 which might be redefinable to newer |
18 |
scarabeus |
1.14 |
# versions. |
19 |
|
|
case ${EAPI:-0} in |
20 |
abcd |
1.28 |
2|3) : ;; |
21 |
reavertm |
1.32 |
*) die "EAPI=${EAPI} is not supported" ;; |
22 |
scarabeus |
1.10 |
esac |
23 |
ingmar |
1.1 |
|
24 |
|
|
# @ECLASS-VARIABLE: KDEBASE |
25 |
|
|
# @DESCRIPTION: |
26 |
|
|
# This gets set to a non-zero value when a package is considered a kde or |
27 |
|
|
# koffice ebuild. |
28 |
scarabeus |
1.15 |
if [[ ${CATEGORY} = kde-base ]]; then |
29 |
ingmar |
1.1 |
debug-print "${ECLASS}: KDEBASE ebuild recognized" |
30 |
scarabeus |
1.10 |
KDEBASE=kde-base |
31 |
reavertm |
1.31 |
elif [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then |
32 |
ingmar |
1.1 |
debug-print "${ECLASS}: KOFFICE ebuild recognized" |
33 |
scarabeus |
1.10 |
KDEBASE=koffice |
34 |
reavertm |
1.31 |
elif [[ ${KMNAME} = kdevelop ]]; then |
35 |
|
|
debug-print "${ECLASS}: KDEVELOP ebuild recognized" |
36 |
|
|
KDEBASE="kdevelop" |
37 |
ingmar |
1.1 |
fi |
38 |
|
|
|
39 |
jmbsvicetto |
1.8 |
# @ECLASS-VARIABLE: KDE_SLOTS |
40 |
|
|
# @DESCRIPTION: |
41 |
scarabeus |
1.15 |
# 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. |
43 |
reavertm |
1.33 |
KDE_SLOTS=( "4.1" "4.2" "4.3" "4.4" "4.5" "4.6" ) |
44 |
jmbsvicetto |
1.8 |
|
45 |
|
|
# @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
46 |
|
|
# @DESCRIPTION: |
47 |
scarabeus |
1.15 |
# The slots used by KDE live versions. Values should be ordered. |
48 |
|
|
KDE_LIVE_SLOTS=( "live" ) |
49 |
ingmar |
1.1 |
|
50 |
scarabeus |
1.24 |
# @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 |
|
|
} |
59 |
|
|
|
60 |
ingmar |
1.1 |
# @FUNCTION: buildsycoca |
61 |
|
|
# @DESCRIPTION: |
62 |
|
|
# Function to rebuild the KDE System Configuration Cache. |
63 |
|
|
# All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
64 |
|
|
buildsycoca() { |
65 |
|
|
debug-print-function ${FUNCNAME} "$@" |
66 |
scarabeus |
1.19 |
|
67 |
abcd |
1.29 |
if [[ ${EAPI} == 2 ]] && ! use prefix; then |
68 |
|
|
EROOT=${ROOT} |
69 |
|
|
fi |
70 |
abcd |
1.28 |
|
71 |
wired |
1.22 |
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 |
alexxy |
1.25 |
# We no longer need to run kbuildsycoca4, as kded does that automatically, as needed |
86 |
scarabeus |
1.15 |
|
87 |
|
|
# fix permission for some directories |
88 |
wired |
1.22 |
for x in share/{config,kde4}; do |
89 |
abcd |
1.29 |
[[ ${KDEDIR} == /usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${EROOT}${KDEDIR}" |
90 |
scarabeus |
1.17 |
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 |
scarabeus |
1.15 |
done |
101 |
ingmar |
1.1 |
} |
102 |
|
|
|
103 |
|
|
# @FUNCTION: comment_all_add_subdirectory |
104 |
|
|
# @USAGE: [list of directory names] |
105 |
|
|
# @DESCRIPTION: |
106 |
scarabeus |
1.10 |
# Recursively comment all add_subdirectory instructions in listed directories, |
107 |
|
|
# except those in cmake/. |
108 |
ingmar |
1.1 |
comment_all_add_subdirectory() { |
109 |
|
|
find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
110 |
wired |
1.22 |
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 /' \ |
115 |
|
|
|| die "${LINENO}: Initial sed died" |
116 |
ingmar |
1.1 |
} |
117 |
|
|
|
118 |
zlin |
1.5 |
# @ECLASS-VARIABLE: KDE_LINGUAS |
119 |
|
|
# @DESCRIPTION: |
120 |
scarabeus |
1.10 |
# 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 |
scarabeus |
1.19 |
# translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
124 |
zlin |
1.5 |
# 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 |
132 |
|
|
# @DESCRIPTION: |
133 |
scarabeus |
1.10 |
# Enable translations based on LINGUAS settings and translations supported by |
134 |
|
|
# the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
135 |
zlin |
1.5 |
# but this default can be overridden by defining KDE_LINGUAS_DIR. |
136 |
|
|
enable_selected_linguas() { |
137 |
wired |
1.22 |
debug-print-function ${FUNCNAME} "$@" |
138 |
|
|
|
139 |
alexxy |
1.37 |
local x |
140 |
scarabeus |
1.10 |
|
141 |
scarabeus |
1.19 |
# if there is no linguas defined we enable everything |
142 |
scarabeus |
1.20 |
if ! $(env | grep -q "^LINGUAS="); then |
143 |
|
|
return 0 |
144 |
|
|
fi |
145 |
wired |
1.22 |
|
146 |
|
|
# @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
147 |
|
|
# @DESCRIPTION: |
148 |
|
|
# Specified folder where application translations are located. |
149 |
alexxy |
1.37 |
# Can be defined as array of folders where translations are located. |
150 |
|
|
# Note that space separated list of dirs is not supported. |
151 |
|
|
# Default value is set to "po". |
152 |
|
|
if [[ "$(declare -p KDE_LINGUAS_DIR 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
153 |
|
|
debug-print "$FUNCNAME: we have these subfolders defined: ${KDE_LINGUAS_DIR}" |
154 |
|
|
for x in "${KDE_LINGUAS_DIR[@]}"; do |
155 |
|
|
_enable_selected_linguas_dir ${x} |
156 |
|
|
done |
157 |
|
|
else |
158 |
|
|
KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
159 |
|
|
_enable_selected_linguas_dir ${KDE_LINGUAS_DIR} |
160 |
|
|
fi |
161 |
wired |
1.22 |
} |
162 |
|
|
|
163 |
|
|
# @FUNCTION: enable_selected_doc_linguas |
164 |
|
|
# @DESCRIPTION: |
165 |
|
|
# Enable only selected linguas enabled doc folders. |
166 |
|
|
enable_selected_doc_linguas() { |
167 |
|
|
debug-print-function ${FUNCNAME} "$@" |
168 |
|
|
|
169 |
|
|
# if there is no linguas defined we enable everything |
170 |
|
|
if ! $(env | grep -q "^LINGUAS="); then |
171 |
|
|
return 0 |
172 |
|
|
fi |
173 |
|
|
|
174 |
|
|
# @ECLASS-VARIABLE: KDE_DOC_DIRS |
175 |
|
|
# @DESCRIPTION: |
176 |
|
|
# Variable specifying whitespace separated patterns for documentation locations. |
177 |
|
|
# Default is "doc/%lingua" |
178 |
|
|
KDE_DOC_DIRS=${KDE_DOC_DIRS:='doc/%lingua'} |
179 |
|
|
local linguas |
180 |
|
|
for pattern in ${KDE_DOC_DIRS}; do |
181 |
|
|
|
182 |
|
|
local handbookdir=`dirname ${pattern}` |
183 |
|
|
local translationdir=`basename ${pattern}` |
184 |
|
|
# Do filename pattern supplied, treat as directory |
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 |
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}" |
204 |
|
|
fi |
205 |
|
|
fi |
206 |
|
|
done |
207 |
|
|
fi |
208 |
|
|
|
209 |
|
|
done |
210 |
|
|
[[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
211 |
zlin |
1.5 |
} |
212 |
|
|
|
213 |
scarabeus |
1.10 |
# @FUNCTION: get_build_type |
214 |
ingmar |
1.1 |
# @DESCRIPTION: |
215 |
scarabeus |
1.10 |
# Determine whether we are using live ebuild or tbzs. |
216 |
|
|
get_build_type() { |
217 |
scarabeus |
1.18 |
if [[ ${SLOT} = live || ${PV} = *9999* ]]; then |
218 |
scarabeus |
1.10 |
BUILD_TYPE="live" |
219 |
|
|
else |
220 |
|
|
BUILD_TYPE="release" |
221 |
|
|
fi |
222 |
|
|
export BUILD_TYPE |
223 |
|
|
} |
224 |
ingmar |
1.1 |
|
225 |
scarabeus |
1.11 |
# @FUNCTION: migrate_store_dir |
226 |
|
|
# @DESCRIPTION: |
227 |
scarabeus |
1.15 |
# Universal store dir migration |
228 |
|
|
# * performs split of kdebase to kdebase-apps when needed |
229 |
|
|
# * moves playground/extragear kde4-base-style to toplevel dir |
230 |
scarabeus |
1.11 |
migrate_store_dir() { |
231 |
scarabeus |
1.15 |
local cleandir="${ESVN_STORE_DIR}/KDE" |
232 |
scarabeus |
1.11 |
if [[ -d "${cleandir}" ]]; then |
233 |
|
|
ewarn "'${cleandir}' has been found. Moving contents to new location." |
234 |
|
|
addwrite "${ESVN_STORE_DIR}" |
235 |
|
|
# Split kdebase |
236 |
|
|
local module |
237 |
|
|
if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
238 |
|
|
for module in `find . -maxdepth 1 -type d -name [a-z0-9]\*`; do |
239 |
|
|
module="${module#./}" |
240 |
|
|
mkdir -p "${ESVN_STORE_DIR}/kdebase-${module}" && mv -f "${module}" "${ESVN_STORE_DIR}/kdebase-${module}" || \ |
241 |
|
|
die "Failed to move to '${ESVN_STORE_DIR}/kdebase-${module}'." |
242 |
|
|
done |
243 |
|
|
popd > /dev/null |
244 |
|
|
rm -fr "${cleandir}/kdebase" || \ |
245 |
|
|
die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
246 |
|
|
fi |
247 |
|
|
# Move the rest |
248 |
|
|
local pkg |
249 |
|
|
for pkg in "${cleandir}"/*; do |
250 |
scarabeus |
1.15 |
mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
251 |
scarabeus |
1.11 |
done |
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 |
scarabeus |
1.15 |
|
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 |
271 |
|
|
fi |
272 |
scarabeus |
1.11 |
} |
273 |
|
|
|
274 |
scarabeus |
1.10 |
# Functions handling KMLOADLIBS and KMSAVELIBS |
275 |
ingmar |
1.1 |
|
276 |
scarabeus |
1.10 |
# @FUNCTION: save_library_dependencies |
277 |
|
|
# @DESCRIPTION: |
278 |
|
|
# Add exporting CMake dependencies for current package |
279 |
|
|
save_library_dependencies() { |
280 |
|
|
local depsfile="${T}/${PN}:${SLOT}" |
281 |
|
|
|
282 |
scarabeus |
1.15 |
ebegin "Saving library dependencies in ${depsfile##*/}" |
283 |
scarabeus |
1.10 |
echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
284 |
|
|
die "Failed to save the library dependencies." |
285 |
|
|
eend $? |
286 |
ingmar |
1.1 |
} |
287 |
|
|
|
288 |
scarabeus |
1.10 |
# @FUNCTION: install_library_dependencies |
289 |
ingmar |
1.1 |
# @DESCRIPTION: |
290 |
scarabeus |
1.10 |
# Install generated CMake library dependencies to /var/lib/kde |
291 |
|
|
install_library_dependencies() { |
292 |
scarabeus |
1.15 |
local depsfile="${T}/${PN}:${SLOT}" |
293 |
|
|
|
294 |
|
|
ebegin "Installing library dependencies as ${depsfile##*/}" |
295 |
abcd |
1.28 |
insinto /var/lib/kde |
296 |
scarabeus |
1.10 |
doins "${depsfile}" || die "Failed to install library dependencies." |
297 |
|
|
eend $? |
298 |
|
|
} |
299 |
ingmar |
1.1 |
|
300 |
scarabeus |
1.10 |
# @FUNCTION: load_library_dependencies |
301 |
|
|
# @DESCRIPTION: |
302 |
|
|
# Inject specified library dependencies in current package |
303 |
|
|
load_library_dependencies() { |
304 |
|
|
local pn i depsfile |
305 |
scarabeus |
1.15 |
ebegin "Injecting library dependencies from '${KMLOADLIBS}'" |
306 |
scarabeus |
1.10 |
|
307 |
|
|
i=0 |
308 |
|
|
for pn in ${KMLOADLIBS} ; do |
309 |
|
|
((i++)) |
310 |
abcd |
1.28 |
depsfile="${EPREFIX}/var/lib/kde/${pn}:${SLOT}" |
311 |
scarabeus |
1.10 |
[[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
312 |
|
|
sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
313 |
|
|
die "Failed to include library dependencies for ${pn}" |
314 |
|
|
done |
315 |
|
|
eend $? |
316 |
ingmar |
1.1 |
} |
317 |
scarabeus |
1.23 |
|
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 |
alexxy |
1.25 |
_do_blocker ${PN} 0:${SLOT} |
326 |
scarabeus |
1.23 |
} |
327 |
|
|
|
328 |
|
|
# @FUNCTION: add_blocker |
329 |
|
|
# @DESCRIPTION: |
330 |
|
|
# Create correct RDEPEND value for blocking correct package. |
331 |
alexxy |
1.25 |
# 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 |
scarabeus |
1.27 |
# !<=kde-base/kdelibs-9999:live |
354 |
scarabeus |
1.23 |
add_blocker() { |
355 |
|
|
debug-print-function ${FUNCNAME} "$@" |
356 |
|
|
|
357 |
alexxy |
1.25 |
RDEPEND+=" $(_do_blocker "$@")" |
358 |
|
|
} |
359 |
|
|
|
360 |
alexxy |
1.37 |
# @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 |
tampakrap |
1.39 |
# FIXME remove hack when >kdepim-4.4.5 is gone |
378 |
alexxy |
1.37 |
local FIXME_PV |
379 |
tampakrap |
1.39 |
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 |
alexxy |
1.37 |
FIXME_PV=4.4.5 |
381 |
|
|
else |
382 |
|
|
FIXME_PV=${PV} |
383 |
|
|
fi |
384 |
|
|
|
385 |
|
|
# if building stable-live version depend just on slot |
386 |
|
|
# to allow merging packages against more stable basic stuff |
387 |
|
|
case ${PV} in |
388 |
|
|
*.9999*) |
389 |
|
|
echo " !kdeprefix? ( >=kde-base/${1}-${SLOT}[aqua=,-kdeprefix${use}] )" |
390 |
|
|
echo " kdeprefix? ( >=kde-base/${1}-${SLOT}:${SLOT}[aqua=,kdeprefix${use}] )" |
391 |
|
|
;; |
392 |
|
|
*) |
393 |
|
|
echo " !kdeprefix? ( >=kde-base/${1}-${FIXME_PV}[aqua=,-kdeprefix${use}] )" |
394 |
|
|
echo " kdeprefix? ( >=kde-base/${1}-${FIXME_PV}:${SLOT}[aqua=,kdeprefix${use}] )" |
395 |
|
|
;; |
396 |
|
|
esac |
397 |
|
|
else |
398 |
|
|
if [[ ${KDE_MINIMAL} = live ]]; then |
399 |
|
|
echo " kde-base/${1}:${KDE_MINIMAL}[aqua=${use}]" |
400 |
|
|
else |
401 |
|
|
echo " >=kde-base/${1}-${KDE_MINIMAL}[aqua=${use}]" |
402 |
|
|
fi |
403 |
|
|
fi |
404 |
|
|
} |
405 |
|
|
|
406 |
alexxy |
1.25 |
# _greater_max_in_slot ver slot |
407 |
|
|
# slot must be 4.x or live |
408 |
|
|
# returns true if ver is >= the maximum possibile version in slot |
409 |
|
|
_greater_max_in_slot() { |
410 |
|
|
local ver=$1 |
411 |
|
|
local slot=$2 |
412 |
|
|
# If slot is live, then return false |
413 |
|
|
# (nothing is greater than the maximum live version) |
414 |
|
|
[[ $slot == live ]] && return 1 |
415 |
|
|
# Otherwise, for slot X.Y, test against X.Y.50 |
416 |
|
|
local test=${slot}.50 |
417 |
|
|
version_compare $1 ${test} |
418 |
|
|
# 1 = '<', 2 = '=', 3 = '>' |
419 |
scarabeus |
1.27 |
(( $? != 1 )) |
420 |
alexxy |
1.25 |
} |
421 |
|
|
|
422 |
|
|
# _less_min_in_slot ver slot |
423 |
|
|
# slot must be 4.x or live |
424 |
|
|
# returns true if ver is <= the minimum possibile version in slot |
425 |
|
|
_less_min_in_slot() { |
426 |
|
|
local ver=$1 |
427 |
|
|
local slot=$2 |
428 |
|
|
# If slot == live, then test with "9999_pre", so that 9999 tests false |
429 |
|
|
local test=9999_pre |
430 |
|
|
# If slot == X.Y, then test with X.(Y-1).50 |
431 |
scarabeus |
1.27 |
[[ $slot != live ]] && test=${slot%.*}.$((${slot#*.} - 1)).50 |
432 |
alexxy |
1.25 |
version_compare $1 ${test} |
433 |
|
|
# 1 = '<', 2 = '=', 3 = '>' |
434 |
scarabeus |
1.27 |
(( $? != 3 )) |
435 |
alexxy |
1.25 |
} |
436 |
|
|
|
437 |
|
|
# Internal function used for add_blocker and block_other_slots |
438 |
|
|
# This takes the same parameters as add_blocker, but echos to |
439 |
|
|
# stdout instead of updating a variable. |
440 |
|
|
_do_blocker() { |
441 |
|
|
debug-print-function ${FUNCNAME} "$@" |
442 |
|
|
|
443 |
|
|
[[ -z ${1} ]] && die "Missing parameter" |
444 |
|
|
local pkg=kde-base/$1 |
445 |
|
|
shift |
446 |
|
|
local param slot def="unset" var atom |
447 |
|
|
# The following variables will hold parameters that contain ":" |
448 |
|
|
# - block_3_5 |
449 |
|
|
# - block_4_1 |
450 |
|
|
# - block_4_2 |
451 |
|
|
# - block_4_3 |
452 |
|
|
# - block_4_4 |
453 |
|
|
# - block_live |
454 |
|
|
for slot in 3.5 ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
455 |
|
|
local block_${slot//./_}="unset" |
456 |
|
|
done |
457 |
|
|
|
458 |
|
|
# This construct goes through each parameter passed, and sets |
459 |
|
|
# either def or block_* to the version passed |
460 |
|
|
for param; do |
461 |
|
|
# If the parameter does not have a ":" in it... |
462 |
|
|
if [[ ${param/:} == ${param} ]]; then |
463 |
|
|
def=${param} |
464 |
|
|
else # the parameter *does* have a ":" in it |
465 |
scarabeus |
1.26 |
# so everything after the : is the slot... |
466 |
alexxy |
1.25 |
slot=${param#*:} |
467 |
|
|
# ...and everything before the : is the version |
468 |
|
|
local block_${slot//./_}=${param%:*} |
469 |
|
|
fi |
470 |
|
|
done |
471 |
|
|
|
472 |
scarabeus |
1.23 |
for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
473 |
alexxy |
1.25 |
# ${var} contains the name of the variable we care about for this slot |
474 |
|
|
# ${!var} is it's value |
475 |
|
|
var=block_${slot//./_} |
476 |
|
|
# if we didn't pass *:${slot}, then use the unsloted value |
477 |
|
|
[[ ${!var} == "unset" ]] && var=def |
478 |
|
|
|
479 |
scarabeus |
1.26 |
# If no version was passed, or the version is greater than the maximum |
480 |
|
|
# possible version in this slot, block all versions in this slot |
481 |
|
|
if [[ ${!var} == "unset" ]] || [[ -z ${!var} ]] || _greater_max_in_slot ${!var#<} ${slot}; then |
482 |
alexxy |
1.25 |
atom=${pkg} |
483 |
|
|
# If the version is "0" or less than the minimum possible version in |
484 |
|
|
# this slot, do nothing |
485 |
|
|
elif [[ ${!var} == "0" ]] || _less_min_in_slot ${!var#<} ${slot}; then |
486 |
|
|
continue |
487 |
|
|
# If the version passed begins with a "<", then use "<" instead of "<=" |
488 |
|
|
elif [[ ${!var:0:1} == "<" ]]; then |
489 |
|
|
# this also removes the first character of the version, which is a "<" |
490 |
|
|
atom="<${pkg}-${!var:1}" |
491 |
|
|
else |
492 |
|
|
atom="<=${pkg}-${!var}" |
493 |
|
|
fi |
494 |
scarabeus |
1.27 |
# we always block our own slot, ignoring kdeprefix |
495 |
alexxy |
1.25 |
if [[ ${SLOT} == ${slot} ]]; then |
496 |
scarabeus |
1.27 |
echo " !${atom}:${slot}" |
497 |
|
|
else |
498 |
|
|
# we only block other slots on -kdeprefix |
499 |
|
|
echo " !kdeprefix? ( !${atom}:${slot}[-kdeprefix] )" |
500 |
alexxy |
1.25 |
fi |
501 |
scarabeus |
1.23 |
done |
502 |
alexxy |
1.25 |
|
503 |
|
|
# This is a special case block for :3.5; it does not use the |
504 |
|
|
# default version passed, and no blocker is output *unless* a version |
505 |
|
|
# is passed, or ":3.5" is passed to explicitly request a block on all |
506 |
|
|
# 3.5 versions. |
507 |
|
|
if [[ ${block_3_5} != "unset" && ${block_3_5} != "0" ]]; then |
508 |
|
|
if [[ -z ${block_3_5} ]]; then |
509 |
|
|
atom=${pkg} |
510 |
|
|
elif [[ ${block_3_5:0:1} == "<" ]]; then |
511 |
|
|
atom="<${pkg}-${block_3_5:1}" |
512 |
|
|
else |
513 |
|
|
atom="<=${pkg}-${block_3_5}" |
514 |
|
|
fi |
515 |
|
|
echo " !${atom}:3.5" |
516 |
|
|
fi |
517 |
|
|
} |
518 |
|
|
|
519 |
alexxy |
1.37 |
# local function to enable specified translations for specified directory |
520 |
|
|
# used from kde4-functions_enable_selected_linguas function |
521 |
|
|
_enable_selected_linguas_dir() { |
522 |
|
|
local lingua linguas sr_mess wp |
523 |
|
|
local dir=${1} |
524 |
alexxy |
1.25 |
|
525 |
alexxy |
1.37 |
[[ -d "${dir}" ]] || die "linguas dir \"${dir}\" does not exist" |
526 |
|
|
comment_all_add_subdirectory "${dir}" |
527 |
|
|
pushd "${dir}" > /dev/null |
528 |
alexxy |
1.25 |
|
529 |
alexxy |
1.37 |
# fix all various crazy sr@Latn variations |
530 |
|
|
# this part is only ease for ebuilds, so there wont be any die when this |
531 |
|
|
# fail at any point |
532 |
|
|
sr_mess="sr@latn sr@latin sr@Latin" |
533 |
|
|
for wp in ${sr_mess}; do |
534 |
|
|
[[ -e "${wp}.po" ]] && mv "${wp}.po" "sr@Latn.po" |
535 |
|
|
if [[ -d "${wp}" ]]; then |
536 |
|
|
# move dir and fix cmakelists |
537 |
|
|
mv "${wp}" "sr@Latn" |
538 |
|
|
sed -i \ |
539 |
|
|
-e "s:${wp}:sr@Latin:g" \ |
540 |
|
|
CMakeLists.txt |
541 |
|
|
fi |
542 |
|
|
done |
543 |
alexxy |
1.25 |
|
544 |
alexxy |
1.37 |
for lingua in ${KDE_LINGUAS}; do |
545 |
|
|
if [[ -e "${lingua}.po" ]]; then |
546 |
|
|
mv "${lingua}.po" "${lingua}.po.old" |
547 |
reavertm |
1.35 |
fi |
548 |
alexxy |
1.37 |
done |
549 |
|
|
|
550 |
|
|
for lingua in ${KDE_LINGUAS}; do |
551 |
|
|
if use linguas_${lingua} ; then |
552 |
|
|
if [[ -d "${lingua}" ]]; then |
553 |
|
|
linguas="${linguas} ${lingua}" |
554 |
|
|
sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
555 |
|
|
-e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
556 |
|
|
-i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
557 |
|
|
fi |
558 |
|
|
if [[ -e "${lingua}.po.old" ]]; then |
559 |
|
|
linguas="${linguas} ${lingua}" |
560 |
|
|
mv "${lingua}.po.old" "${lingua}.po" |
561 |
|
|
fi |
562 |
reavertm |
1.34 |
fi |
563 |
alexxy |
1.37 |
done |
564 |
|
|
[[ -n "${linguas}" ]] && echo ">>> Enabling languages: ${linguas}" |
565 |
|
|
|
566 |
|
|
popd > /dev/null |
567 |
scarabeus |
1.23 |
} |