| 1 |
# Copyright 1999-2006 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.8 2008/03/22 09:37:44 remi Exp $ |
| 4 |
|
| 5 |
# |
| 6 |
# gnome2-utils.eclass |
| 7 |
# |
| 8 |
# Set of auxiliary functions used to perform actions commonly needed by packages |
| 9 |
# using the GNOME framework. |
| 10 |
# |
| 11 |
# Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
| 12 |
# |
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
# Path to gconftool-2 |
| 17 |
: ${GCONFTOOL_BIN:="${ROOT}usr/bin/gconftool-2"} |
| 18 |
|
| 19 |
# Directory where scrollkeeper-update should do its work |
| 20 |
: ${SCROLLKEEPER_DIR:="${ROOT}var/lib/scrollkeeper"} |
| 21 |
|
| 22 |
# Path to scrollkeeper-update |
| 23 |
: ${SCROLLKEEPER_UPDATE_BIN:="${ROOT}usr/bin/scrollkeeper-update"} |
| 24 |
|
| 25 |
|
| 26 |
|
| 27 |
DEPEND=">=sys-apps/sed-4" |
| 28 |
|
| 29 |
|
| 30 |
|
| 31 |
# Find the GConf schemas that are about to be installed and save their location |
| 32 |
# in the GNOME2_ECLASS_SCHEMAS environment variable |
| 33 |
gnome2_gconf_savelist() { |
| 34 |
pushd "${D}" &> /dev/null |
| 35 |
export GNOME2_ECLASS_SCHEMAS=$(find 'etc/gconf/schemas/' -name '*.schemas') |
| 36 |
popd &> /dev/null |
| 37 |
} |
| 38 |
|
| 39 |
|
| 40 |
# Applies any schema files installed by the current ebuild to Gconf's database |
| 41 |
# using gconftool-2 |
| 42 |
gnome2_gconf_install() { |
| 43 |
local F |
| 44 |
|
| 45 |
if [[ ! -x "${GCONFTOOL_BIN}" ]]; then |
| 46 |
return |
| 47 |
fi |
| 48 |
|
| 49 |
if [[ -z "${GNOME2_ECLASS_SCHEMAS}" ]]; then |
| 50 |
einfo "No GNOME 2 GConf schemas found" |
| 51 |
return |
| 52 |
fi |
| 53 |
|
| 54 |
# We are ready to install the GCONF Scheme now |
| 55 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 56 |
export GCONF_CONFIG_SOURCE="$("${GCONFTOOL_BIN}" --get-default-source)" |
| 57 |
|
| 58 |
einfo "Installing GNOME 2 GConf schemas" |
| 59 |
|
| 60 |
for F in ${GNOME2_ECLASS_SCHEMAS}; do |
| 61 |
if [[ -e "${ROOT}${F}" ]]; then |
| 62 |
# echo "DEBUG::gconf install ${F}" |
| 63 |
"${GCONFTOOL_BIN}" --makefile-install-rule "${ROOT}${F}" 1>/dev/null |
| 64 |
fi |
| 65 |
done |
| 66 |
|
| 67 |
# have gconf reload the new schemas |
| 68 |
pids=$(pgrep -x gconfd-2) |
| 69 |
if [[ $? == 0 ]] ; then |
| 70 |
ebegin "Reloading GConf schemas" |
| 71 |
kill -HUP ${pids} |
| 72 |
eend $? |
| 73 |
fi |
| 74 |
} |
| 75 |
|
| 76 |
|
| 77 |
# Removes schema files previously installed by the current ebuild from Gconf's |
| 78 |
# database. |
| 79 |
gnome2_gconf_uninstall() { |
| 80 |
local F |
| 81 |
|
| 82 |
if [[ ! -x "${GCONFTOOL_BIN}" ]]; then |
| 83 |
return |
| 84 |
fi |
| 85 |
|
| 86 |
if [[ -z "${GNOME2_ECLASS_SCHEMAS}" ]]; then |
| 87 |
einfo "No GNOME 2 GConf schemas found" |
| 88 |
return |
| 89 |
fi |
| 90 |
|
| 91 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 92 |
export GCONF_CONFIG_SOURCE=$("${GCONFTOOL_BIN}" --get-default-source) |
| 93 |
|
| 94 |
einfo "Uninstalling GNOME 2 GConf schemas" |
| 95 |
|
| 96 |
for F in ${GNOME2_ECLASS_SCHEMAS}; do |
| 97 |
if [[ -e "${ROOT}${F}" ]]; then |
| 98 |
# echo "DEBUG::gconf uninstall ${F}" |
| 99 |
"${GCONFTOOL_BIN}" --makefile-uninstall-rule "${ROOT}${F}" 1>/dev/null |
| 100 |
fi |
| 101 |
done |
| 102 |
|
| 103 |
# have gconf reload the new schemas |
| 104 |
pids=$(pgrep -x gconfd-2) |
| 105 |
if [[ $? == 0 ]] ; then |
| 106 |
ebegin "Reloading GConf schemas" |
| 107 |
kill -HUP ${pids} |
| 108 |
eend $? |
| 109 |
fi |
| 110 |
} |
| 111 |
|
| 112 |
|
| 113 |
# Find the icons that are about to be installed and save their location |
| 114 |
# in the GNOME2_ECLASS_ICONS environment variable |
| 115 |
# That function should be called from pkg_preinst |
| 116 |
gnome2_icon_savelist() { |
| 117 |
pushd "${D}" &> /dev/null |
| 118 |
export GNOME2_ECLASS_ICONS=$(find 'usr/share/icons' -maxdepth 1 -mindepth 1 -type d) |
| 119 |
popd &> /dev/null |
| 120 |
} |
| 121 |
|
| 122 |
|
| 123 |
# Updates Gtk+ icon cache files under /usr/share/icons if the current ebuild |
| 124 |
# have installed anything under that location. |
| 125 |
gnome2_icon_cache_update() { |
| 126 |
local updater="$(type -p gtk-update-icon-cache 2> /dev/null)" |
| 127 |
|
| 128 |
if [[ ! -x "${updater}" ]] ; then |
| 129 |
debug-print "${updater} is not executable" |
| 130 |
return |
| 131 |
fi |
| 132 |
|
| 133 |
if [[ -z "${GNOME2_ECLASS_ICONS}" ]]; then |
| 134 |
return |
| 135 |
fi |
| 136 |
|
| 137 |
|
| 138 |
ebegin "Updating icons cache" |
| 139 |
|
| 140 |
local retval=0 |
| 141 |
local fails=( ) |
| 142 |
|
| 143 |
for dir in ${GNOME2_ECLASS_ICONS} |
| 144 |
do |
| 145 |
if [[ -f "${ROOT}${dir}/index.theme" ]] ; then |
| 146 |
local rv=0 |
| 147 |
|
| 148 |
"${updater}" -qf "${ROOT}${dir}" |
| 149 |
rv=$? |
| 150 |
|
| 151 |
if [[ ! $rv -eq 0 ]] ; then |
| 152 |
debug-print "Updating cache failed on ${ROOT}${dir}" |
| 153 |
|
| 154 |
# Add to the list of failures |
| 155 |
fails[$(( ${#fails[@]} + 1 ))]="${ROOT}${dir}" |
| 156 |
|
| 157 |
retval=2 |
| 158 |
fi |
| 159 |
fi |
| 160 |
done |
| 161 |
|
| 162 |
eend ${retval} |
| 163 |
|
| 164 |
for f in "${fails[@]}" ; do |
| 165 |
eerror "Failed to update cache with icon $f" |
| 166 |
done |
| 167 |
} |
| 168 |
|
| 169 |
|
| 170 |
# Workaround applied to Makefile rules in order to remove redundant |
| 171 |
# calls to scrollkeeper-update and sandbox violations. |
| 172 |
gnome2_omf_fix() { |
| 173 |
local omf_makefiles filename |
| 174 |
|
| 175 |
omf_makefiles="$@" |
| 176 |
|
| 177 |
if [[ -f ${S}/omf.make ]] ; then |
| 178 |
omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 179 |
fi |
| 180 |
|
| 181 |
# testing fixing of all makefiles found |
| 182 |
for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am") ; do |
| 183 |
omf_makefiles="${omf_makefiles} ${filename}" |
| 184 |
done |
| 185 |
|
| 186 |
ebegin "Fixing OMF Makefiles" |
| 187 |
|
| 188 |
local retval=0 |
| 189 |
local fails=( ) |
| 190 |
|
| 191 |
for omf in ${omf_makefiles} ; do |
| 192 |
local rv=0 |
| 193 |
|
| 194 |
sed -i -e 's:scrollkeeper-update:true:' "${omf}" |
| 195 |
retval=$? |
| 196 |
|
| 197 |
if [[ ! $rv -eq 0 ]] ; then |
| 198 |
debug-print "updating of ${omf} failed" |
| 199 |
|
| 200 |
# Add to the list of failures |
| 201 |
fails[$(( ${#fails[@]} + 1 ))]=$omf |
| 202 |
|
| 203 |
retval=2 |
| 204 |
fi |
| 205 |
done |
| 206 |
|
| 207 |
eend $retval |
| 208 |
|
| 209 |
for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
| 210 |
### HACK!! This is needed until bash 3.1 is unmasked. |
| 211 |
## The current stable version of bash lists the sizeof fails to be 1 |
| 212 |
## when there are no elements in the list because it is declared local. |
| 213 |
## In order to prevent the declaration from being in global scope, we |
| 214 |
## this hack to prevent an empty error message being printed for stable |
| 215 |
## users. -- compnerd && allanonjl |
| 216 |
if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then |
| 217 |
eerror "Failed to update OMF Makefile ${fails[i]}" |
| 218 |
fi |
| 219 |
done |
| 220 |
} |
| 221 |
|
| 222 |
|
| 223 |
# Updates the global scrollkeeper database. |
| 224 |
gnome2_scrollkeeper_update() { |
| 225 |
if [[ -x "${SCROLLKEEPER_UPDATE_BIN}" ]]; then |
| 226 |
einfo "Updating scrollkeeper database ..." |
| 227 |
"${SCROLLKEEPER_UPDATE_BIN}" -q -p "${SCROLLKEEPER_DIR}" |
| 228 |
fi |
| 229 |
} |