diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-12-07 06:23:34 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-12-07 06:23:34 +0000 |
commit | bc6373914ddc7b0738e3540bdaa598688001d677 (patch) | |
tree | 32f044e5b1e7029c5c8923f893dc5c944f942b1a /eclass | |
parent | replace usage of type -P by variables (diff) | |
download | gentoo-2-bc6373914ddc7b0738e3540bdaa598688001d677.tar.gz gentoo-2-bc6373914ddc7b0738e3540bdaa598688001d677.tar.bz2 gentoo-2-bc6373914ddc7b0738e3540bdaa598688001d677.zip |
make sure we refer to $ROOT where needed
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2-utils.eclass | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index f9acd01e8d8f..ccf0addcffd4 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.15 2010/12/07 06:21:59 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.16 2010/12/07 06:23:34 eva Exp $ # # gnome2-utils.eclass @@ -14,13 +14,13 @@ # Path to gconftool-2 -: ${GCONFTOOL_BIN:="${ROOT}usr/bin/gconftool-2"} +: ${GCONFTOOL_BIN:="/usr/bin/gconftool-2"} # Directory where scrollkeeper-update should do its work -: ${SCROLLKEEPER_DIR:="${ROOT}var/lib/scrollkeeper"} +: ${SCROLLKEEPER_DIR:="/var/lib/scrollkeeper"} # Path to scrollkeeper-update -: ${SCROLLKEEPER_UPDATE_BIN:="${ROOT}usr/bin/scrollkeeper-update"} +: ${SCROLLKEEPER_UPDATE_BIN:="/usr/bin/scrollkeeper-update"} # Path to gtk-update-icon-cache : ${GTK_UPDATE_ICON_CACHE:="/usr/bin/gtk-update-icon-cache"} @@ -46,9 +46,10 @@ gnome2_gconf_savelist() { # Applies any schema files installed by the current ebuild to Gconf's database # using gconftool-2 gnome2_gconf_install() { + local updater="${ROOT}${GCONFTOOL_BIN}" local F - if [[ ! -x "${GCONFTOOL_BIN}" ]]; then + if [[ ! -x "${updater}" ]]; then return fi @@ -59,14 +60,14 @@ gnome2_gconf_install() { # We are ready to install the GCONF Scheme now unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL - export GCONF_CONFIG_SOURCE="$("${GCONFTOOL_BIN}" --get-default-source | sed "s;:/;:${ROOT};")" + export GCONF_CONFIG_SOURCE="$("${updater}" --get-default-source | sed "s;:/;:${ROOT};")" einfo "Installing GNOME 2 GConf schemas" for F in ${GNOME2_ECLASS_SCHEMAS}; do if [[ -e "${ROOT}${F}" ]]; then # echo "DEBUG::gconf install ${F}" - "${GCONFTOOL_BIN}" --makefile-install-rule "${ROOT}${F}" 1>/dev/null + "${updater}" --makefile-install-rule "${ROOT}${F}" 1>/dev/null fi done @@ -83,9 +84,10 @@ gnome2_gconf_install() { # Removes schema files previously installed by the current ebuild from Gconf's # database. gnome2_gconf_uninstall() { + local updater="${ROOT}${GCONFTOOL_BIN}" local F - if [[ ! -x "${GCONFTOOL_BIN}" ]]; then + if [[ ! -x "${updater}" ]]; then return fi @@ -95,14 +97,14 @@ gnome2_gconf_uninstall() { fi unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL - export GCONF_CONFIG_SOURCE="$("${GCONFTOOL_BIN}" --get-default-source | sed "s;:/;:${ROOT};")" + export GCONF_CONFIG_SOURCE="$("${updater}" --get-default-source | sed "s;:/;:${ROOT};")" einfo "Uninstalling GNOME 2 GConf schemas" for F in ${GNOME2_ECLASS_SCHEMAS}; do if [[ -e "${ROOT}${F}" ]]; then # echo "DEBUG::gconf uninstall ${F}" - "${GCONFTOOL_BIN}" --makefile-uninstall-rule "${ROOT}${F}" 1>/dev/null + "${updater}" --makefile-uninstall-rule "${ROOT}${F}" 1>/dev/null fi done @@ -222,9 +224,9 @@ gnome2_omf_fix() { # Updates the global scrollkeeper database. gnome2_scrollkeeper_update() { - if [[ -x "${SCROLLKEEPER_UPDATE_BIN}" ]]; then + if [[ -x "${ROOT}${SCROLLKEEPER_UPDATE_BIN}" ]]; then einfo "Updating scrollkeeper database ..." - "${SCROLLKEEPER_UPDATE_BIN}" -q -p "${SCROLLKEEPER_DIR}" + "${ROOT}${SCROLLKEEPER_UPDATE_BIN}" -q -p "${ROOT}${SCROLLKEEPER_DIR}" fi } |