| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2012 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/gnome2-utils.eclass,v 1.25 2011/12/14 19:47:54 tetromino Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.27 2012/05/02 21:05:38 eva Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: gnome2-utils.eclass |
5 | # @ECLASS: gnome2-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # gnome@gentoo.org |
7 | # gnome@gentoo.org |
| 8 | # @BLURB: Auxiliary functions commonly used by Gnome packages. |
8 | # @BLURB: Auxiliary functions commonly used by Gnome packages. |
| … | |
… | |
| 60 | # @INTERNAL |
60 | # @INTERNAL |
| 61 | # @DEFAULT_UNSET |
61 | # @DEFAULT_UNSET |
| 62 | # @DESCRIPTION: |
62 | # @DESCRIPTION: |
| 63 | # List of icons provided by the package |
63 | # List of icons provided by the package |
| 64 | |
64 | |
|
|
65 | # @ECLASS-VARIABLE: GNOME2_ECLASS_SCROLLS |
|
|
66 | # @INTERNAL |
|
|
67 | # @DEFAULT_UNSET |
|
|
68 | # @DESCRIPTION: |
|
|
69 | # List of scrolls (documentation files) provided by the package |
|
|
70 | |
| 65 | # @ECLASS-VARIABLE: GNOME2_ECLASS_GLIB_SCHEMAS |
71 | # @ECLASS-VARIABLE: GNOME2_ECLASS_GLIB_SCHEMAS |
| 66 | # @INTERNAL |
72 | # @INTERNAL |
| 67 | # @DEFAULT_UNSET |
73 | # @DEFAULT_UNSET |
| 68 | # @DESCRIPTION: |
74 | # @DESCRIPTION: |
| 69 | # List of GSettings schemas provided by the package |
75 | # List of GSettings schemas provided by the package |
| 70 | |
|
|
| 71 | |
76 | |
| 72 | DEPEND=">=sys-apps/sed-4" |
77 | DEPEND=">=sys-apps/sed-4" |
| 73 | |
78 | |
| 74 | |
79 | |
| 75 | # @FUNCTION: gnome2_environment_reset |
80 | # @FUNCTION: gnome2_environment_reset |
| … | |
… | |
| 240 | # Add to the list of failures |
245 | # Add to the list of failures |
| 241 | fails[$(( ${#fails[@]} + 1 ))]="${EROOT}${dir}" |
246 | fails[$(( ${#fails[@]} + 1 ))]="${EROOT}${dir}" |
| 242 | |
247 | |
| 243 | retval=2 |
248 | retval=2 |
| 244 | fi |
249 | fi |
|
|
250 | elif [[ $(ls "${EROOT}${dir}") = "icon-theme.cache" ]]; then |
|
|
251 | # Clear stale cache files after theme uninstallation |
|
|
252 | rm "${EROOT}${dir}/icon-theme.cache" |
|
|
253 | fi |
|
|
254 | |
|
|
255 | if [[ -z $(ls "${EROOT}${dir}") ]]; then |
|
|
256 | # Clear empty theme directories after theme uninstallation |
|
|
257 | rmdir "${EROOT}${dir}" |
| 245 | fi |
258 | fi |
| 246 | done |
259 | done |
| 247 | |
260 | |
| 248 | eend ${retval} |
261 | eend ${retval} |
| 249 | |
262 | |
| … | |
… | |
| 264 | |
277 | |
| 265 | if [[ -f ${S}/omf.make ]] ; then |
278 | if [[ -f ${S}/omf.make ]] ; then |
| 266 | omf_makefiles="${omf_makefiles} ${S}/omf.make" |
279 | omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 267 | fi |
280 | fi |
| 268 | |
281 | |
|
|
282 | if [[ -f ${S}/gnome-doc-utils.make ]] ; then |
|
|
283 | omf_makefiles="${omf_makefiles} ${S}/gnome-doc-utils.make" |
|
|
284 | fi |
|
|
285 | |
| 269 | # testing fixing of all makefiles found |
286 | # testing fixing of all makefiles found |
| 270 | # The sort is important to ensure .am is listed before the respective .in for |
287 | # The sort is important to ensure .am is listed before the respective .in for |
| 271 | # maintainer mode regeneration not kicking in due to .am being newer than .in |
288 | # maintainer mode regeneration not kicking in due to .am being newer than .in |
| 272 | for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am" |sort) ; do |
289 | for filename in $(find "${S}" -name "Makefile.in" -o -name "Makefile.am" |sort) ; do |
| 273 | omf_makefiles="${omf_makefiles} ${filename}" |
290 | omf_makefiles="${omf_makefiles} ${filename}" |
| 274 | done |
291 | done |
| 275 | |
292 | |
| 276 | ebegin "Fixing OMF Makefiles" |
293 | ebegin "Fixing OMF Makefiles" |
| 277 | |
294 | |
| 278 | local retval=0 |
295 | local retval=0 |
| 279 | local fails=( ) |
296 | local fails=( ) |
| 280 | |
297 | |
| 281 | for omf in ${omf_makefiles} ; do |
298 | for omf in ${omf_makefiles} ; do |
| 282 | local rv=0 |
|
|
| 283 | |
|
|
| 284 | sed -i -e 's:scrollkeeper-update:true:' "${omf}" |
299 | sed -i -e 's:scrollkeeper-update:true:' "${omf}" |
| 285 | retval=$? |
300 | retval=$? |
| 286 | |
301 | |
| 287 | if [[ ! $rv -eq 0 ]] ; then |
302 | if [[ $retval -ne 0 ]] ; then |
| 288 | debug-print "updating of ${omf} failed" |
303 | debug-print "updating of ${omf} failed" |
| 289 | |
304 | |
| 290 | # Add to the list of failures |
305 | # Add to the list of failures |
| 291 | fails[$(( ${#fails[@]} + 1 ))]=$omf |
306 | fails[$(( ${#fails[@]} + 1 ))]=$omf |
| 292 | |
307 | |
| … | |
… | |
| 297 | eend $retval |
312 | eend $retval |
| 298 | |
313 | |
| 299 | for f in "${fails[@]}" ; do |
314 | for f in "${fails[@]}" ; do |
| 300 | eerror "Failed to update OMF Makefile $f" |
315 | eerror "Failed to update OMF Makefile $f" |
| 301 | done |
316 | done |
|
|
317 | } |
|
|
318 | |
|
|
319 | # @FUNCTION: gnome2_scrollkeeper_savelist |
|
|
320 | # @DESCRIPTION: |
|
|
321 | # Find the scrolls that are about to be installed and save their location |
|
|
322 | # in the GNOME2_ECLASS_SCROLLS environment variable. |
|
|
323 | # This function should be called from pkg_preinst. |
|
|
324 | gnome2_scrollkeeper_savelist() { |
|
|
325 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
|
|
326 | pushd "${ED}" &> /dev/null |
|
|
327 | export GNOME2_ECLASS_SCROLLS=$(find 'usr/share/omf' -type f -name "*.omf" 2> /dev/null) |
|
|
328 | popd &> /dev/null |
| 302 | } |
329 | } |
| 303 | |
330 | |
| 304 | # @FUNCTION: gnome2_scrollkeeper_update |
331 | # @FUNCTION: gnome2_scrollkeeper_update |
| 305 | # @DESCRIPTION: |
332 | # @DESCRIPTION: |
| 306 | # Updates the global scrollkeeper database. |
333 | # Updates the global scrollkeeper database. |
| 307 | # This function should be called from pkg_postinst and pkg_postrm. |
334 | # This function should be called from pkg_postinst and pkg_postrm. |
| 308 | gnome2_scrollkeeper_update() { |
335 | gnome2_scrollkeeper_update() { |
| 309 | has ${EAPI:-0} 0 1 2 && ! use prefix && EROOT="${ROOT}" |
336 | has ${EAPI:-0} 0 1 2 && ! use prefix && EROOT="${ROOT}" |
| 310 | if [[ -x "${EROOT}${SCROLLKEEPER_UPDATE_BIN}" ]]; then |
337 | local updater="${EROOT}${SCROLLKEEPER_UPDATE_BIN}" |
|
|
338 | |
|
|
339 | if [[ ! -x "${updater}" ]] ; then |
|
|
340 | debug-print "${updater} is not executable" |
|
|
341 | return |
|
|
342 | fi |
|
|
343 | |
|
|
344 | if [[ -z "${GNOME2_ECLASS_SCROLLS}" ]]; then |
|
|
345 | debug-print "No scroll cache to update" |
|
|
346 | return |
|
|
347 | fi |
|
|
348 | |
| 311 | einfo "Updating scrollkeeper database ..." |
349 | ebegin "Updating scrollkeeper database ..." |
| 312 | "${EROOT}${SCROLLKEEPER_UPDATE_BIN}" -q -p "${EROOT}${SCROLLKEEPER_DIR}" |
350 | "${updater}" -q -p "${EROOT}${SCROLLKEEPER_DIR}" |
| 313 | fi |
351 | eend $? |
| 314 | } |
352 | } |
| 315 | |
353 | |
| 316 | # @FUNCTION: gnome2_schemas_savelist |
354 | # @FUNCTION: gnome2_schemas_savelist |
| 317 | # @DESCRIPTION: |
355 | # @DESCRIPTION: |
| 318 | # Find if there is any GSettings schema to install and save the list in |
356 | # Find if there is any GSettings schema to install and save the list in |