| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.69 2006/04/18 20:49:04 dang Exp $
|
| 4 |
|
| 5 |
# GNOME 2 ECLASS
|
| 6 |
inherit libtool gnome.org debug fdo-mime eutils
|
| 7 |
|
| 8 |
# Extra configure opts passed to econf
|
| 9 |
G2CONF=${G2CONF:=""}
|
| 10 |
|
| 11 |
# Extra options passed to elibtoolize
|
| 12 |
ELTCONF=${ELTCONF:=""}
|
| 13 |
|
| 14 |
# Should we use EINSTALL instead of DESTDIR
|
| 15 |
USE_EINSTALL=${USE_EINSTALL:=""}
|
| 16 |
|
| 17 |
# Run scrollkeeper for this package?
|
| 18 |
SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"}
|
| 19 |
|
| 20 |
# Where to put scrollkeeper data lives
|
| 21 |
SCROLLKEEPER_DIR=${SCROLLKEEPER_DIR:="/var/lib/scrollkeeper"}
|
| 22 |
|
| 23 |
# Path to scrollkeeper-update
|
| 24 |
SCROLLKEEPER_UPDATE_BIN=${SCROLLKEEPER_UPDATE_BIN:="${ROOT}/usr/bin/scrollkeeper-update"}
|
| 25 |
|
| 26 |
# Path to gconftool-2
|
| 27 |
GCONFTOOL_BIN=${GCONFTOOL_BIN:="${ROOT}/usr/bin/gconftool-2"}
|
| 28 |
|
| 29 |
IUSE="debug"
|
| 30 |
|
| 31 |
DEPEND=">=sys-apps/sed-4"
|
| 32 |
|
| 33 |
gnome2_src_unpack() {
|
| 34 |
unpack ${A}
|
| 35 |
cd ${S}
|
| 36 |
|
| 37 |
# Prevent scrollkeeper access violations
|
| 38 |
gnome2_omf_fix
|
| 39 |
}
|
| 40 |
|
| 41 |
gnome2_src_configure() {
|
| 42 |
# Update the GNOME configuration options
|
| 43 |
use debug && G2CONF="${G2CONF} --enable-debug=yes"
|
| 44 |
G2CONF="${G2CONF} $(use_enable doc gtk-doc)"
|
| 45 |
|
| 46 |
# Run libtoolize
|
| 47 |
elibtoolize ${ELTCONF}
|
| 48 |
|
| 49 |
# Do not remove the addwrite. bug #128289
|
| 50 |
addwrite "${ROOT}/root/.gnome2"
|
| 51 |
|
| 52 |
# GST_REGISTRY is to work around gst-inspect trying to read/write /root
|
| 53 |
GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed"
|
| 54 |
}
|
| 55 |
|
| 56 |
gnome2_src_compile() {
|
| 57 |
gnome2_src_configure "$@"
|
| 58 |
emake || die "compile failure"
|
| 59 |
}
|
| 60 |
|
| 61 |
gnome2_src_install() {
|
| 62 |
# if this is not present, scrollkeeper-update may segfault and
|
| 63 |
# create bogus directories in /var/lib/
|
| 64 |
dodir "${SCROLLKEEPER_DIR}"
|
| 65 |
|
| 66 |
# we must delay gconf schema installation due to sandbox
|
| 67 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"
|
| 68 |
|
| 69 |
debug-print "You are testing with DESTDIR by default - AllanonJL"
|
| 70 |
if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then
|
| 71 |
make DESTDIR=${D} "scrollkeeper_localstate_dir=${D}${SCROLLKEEPER_DIR} " "$@" install || die "install failed"
|
| 72 |
else
|
| 73 |
einstall "scrollkeeper_localstate_dir=${D}${SCROLLKEEPER_DIR} " "$@" || die "einstall failed"
|
| 74 |
fi
|
| 75 |
|
| 76 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
| 77 |
|
| 78 |
# Manual document installation
|
| 79 |
[[ -n "${DOCS}" ]] && dodoc ${DOCS}
|
| 80 |
|
| 81 |
# Do not keep /var/lib/scrollkeeper because:
|
| 82 |
# 1. scrollkeeper will get regenerated at pkg_postinst()
|
| 83 |
# 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg
|
| 84 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason.
|
| 85 |
|
| 86 |
if [[ -z "$(find ${D} -name '*.omf')" ]]; then
|
| 87 |
export SCROLLKEEPER_UPDATE="0"
|
| 88 |
fi
|
| 89 |
|
| 90 |
# Regenerate these in pkg_postinst()
|
| 91 |
rm -rf "${D}${SCROLLKEEPER_DIR}"
|
| 92 |
|
| 93 |
# Make sure this one doesn't get in the portage db
|
| 94 |
rm -fr "${D}/usr/share/applications/mimeinfo.cache"
|
| 95 |
}
|
| 96 |
|
| 97 |
|
| 98 |
gnome2_gconf_install() {
|
| 99 |
if [[ -x ${GCONFTOOL_BIN} ]]; then
|
| 100 |
# We are ready to install the GCONF Scheme now
|
| 101 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
| 102 |
export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source)
|
| 103 |
|
| 104 |
einfo "Installing GNOME 2 GConf schemas"
|
| 105 |
|
| 106 |
local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS"
|
| 107 |
|
| 108 |
for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do
|
| 109 |
if [[ -e "${F}" ]]; then
|
| 110 |
# echo "DEBUG::gconf install ${F}"
|
| 111 |
${GCONFTOOL_BIN} --makefile-install-rule ${F} 1>/dev/null
|
| 112 |
fi
|
| 113 |
done
|
| 114 |
fi
|
| 115 |
}
|
| 116 |
|
| 117 |
gnome2_gconf_uninstall() {
|
| 118 |
if [[ -x ${GCONFTOOL_BIN} ]]; then
|
| 119 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
| 120 |
export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source)
|
| 121 |
|
| 122 |
einfo "Uninstalling GNOME 2 GConf schemas"
|
| 123 |
|
| 124 |
local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS"
|
| 125 |
|
| 126 |
for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do
|
| 127 |
# echo "DEBUG::gconf install ${F}"
|
| 128 |
${GCONFTOOL_BIN} --makefile-uninstall-rule ${F} 1>/dev/null
|
| 129 |
done
|
| 130 |
fi
|
| 131 |
}
|
| 132 |
|
| 133 |
gnome2_icon_cache_update() {
|
| 134 |
local updater=$(type -p gtk-update-icon-cache 2> /dev/null)
|
| 135 |
|
| 136 |
ebegin "Updating icons cache"
|
| 137 |
|
| 138 |
if [[ ! -x ${updater} ]] ; then
|
| 139 |
debug-print "${updater} is not executable"
|
| 140 |
|
| 141 |
# We failed to run
|
| 142 |
eend 1
|
| 143 |
|
| 144 |
return
|
| 145 |
fi
|
| 146 |
|
| 147 |
if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS
|
| 148 |
then
|
| 149 |
debug-print "No items to update"
|
| 150 |
|
| 151 |
# We are done successfully
|
| 152 |
eend 0
|
| 153 |
|
| 154 |
return
|
| 155 |
fi
|
| 156 |
|
| 157 |
local retval=0
|
| 158 |
local fails=( )
|
| 159 |
|
| 160 |
for dir in $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d)
|
| 161 |
do
|
| 162 |
if [[ -f "${dir}/index.theme" ]] ; then
|
| 163 |
local rv=0
|
| 164 |
|
| 165 |
${updater} -qf ${dir}
|
| 166 |
rv=$?
|
| 167 |
|
| 168 |
if [[ ! $rv -eq 0 ]] ; then
|
| 169 |
debug-print "Updating cache failed on ${dir}"
|
| 170 |
|
| 171 |
# Add to the list of failures
|
| 172 |
fails[$(( ${#fails[@]} + 1 ))]=$dir
|
| 173 |
|
| 174 |
retval=2
|
| 175 |
fi
|
| 176 |
fi
|
| 177 |
done
|
| 178 |
|
| 179 |
eend ${retval}
|
| 180 |
|
| 181 |
for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do
|
| 182 |
### HACK!! This is needed until bash 3.1 is unmasked.
|
| 183 |
## The current stable version of bash lists the sizeof fails to be 1
|
| 184 |
## when there are no elements in the list because it is declared local.
|
| 185 |
## In order to prevent the declaration from being in global scope, we
|
| 186 |
## this hack to prevent an empty error message being printed for stable
|
| 187 |
## users. -- compnerd && allanonjl
|
| 188 |
if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then
|
| 189 |
eerror "Failed to update cache with icon ${fails[i]}"
|
| 190 |
fi
|
| 191 |
done
|
| 192 |
}
|
| 193 |
|
| 194 |
gnome2_omf_fix() {
|
| 195 |
# workaround/patch against omf.make or omf-install/Makefile.in
|
| 196 |
# in order to remove redundant scrollkeeper-updates.
|
| 197 |
# - <liquidx@gentoo.org>
|
| 198 |
|
| 199 |
local omf_makefiles filename
|
| 200 |
|
| 201 |
omf_makefiles="$@"
|
| 202 |
|
| 203 |
if [[ -f ${S}/omf-install/Makefile.in ]] ; then
|
| 204 |
omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in"
|
| 205 |
fi
|
| 206 |
|
| 207 |
# FIXME: does this really work? because omf.make only gets included
|
| 208 |
# when autoconf/automake is run. You should directly patch
|
| 209 |
# the Makefile.in's
|
| 210 |
|
| 211 |
if [[ -f ${S}/omf.make ]] ; then
|
| 212 |
omf_makefiles="${omf_makefiles} ${S}/omf.make"
|
| 213 |
fi
|
| 214 |
|
| 215 |
# testing fixing of all makefiles found
|
| 216 |
for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am") ; do
|
| 217 |
omf_makefiles="${omf_makefiles} ${filename}"
|
| 218 |
done
|
| 219 |
|
| 220 |
ebegin "Fixing OMF Makefiles"
|
| 221 |
|
| 222 |
local retval=0
|
| 223 |
local fails=( )
|
| 224 |
|
| 225 |
for omf in ${omf_makefiles} ; do
|
| 226 |
local rv=0
|
| 227 |
|
| 228 |
sed -i -e 's:scrollkeeper-update:true:' ${omf}
|
| 229 |
retval=$?
|
| 230 |
|
| 231 |
if [[ ! $rv -eq 0 ]] ; then
|
| 232 |
debug-print "updating of ${omf} failed"
|
| 233 |
|
| 234 |
# Add to the list of failures
|
| 235 |
fails[$(( ${#fails[@]} + 1 ))]=$omf
|
| 236 |
|
| 237 |
retval=2
|
| 238 |
fi
|
| 239 |
done
|
| 240 |
|
| 241 |
eend $retval
|
| 242 |
|
| 243 |
for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do
|
| 244 |
### HACK!! This is needed until bash 3.1 is unmasked.
|
| 245 |
## The current stable version of bash lists the sizeof fails to be 1
|
| 246 |
## when there are no elements in the list because it is declared local.
|
| 247 |
## In order to prevent the declaration from being in global scope, we
|
| 248 |
## this hack to prevent an empty error message being printed for stable
|
| 249 |
## users. -- compnerd && allanonjl
|
| 250 |
if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then
|
| 251 |
eerror "Failed to update OMF Makefile ${fails[i]}"
|
| 252 |
fi
|
| 253 |
done
|
| 254 |
}
|
| 255 |
|
| 256 |
gnome2_scrollkeeper_update() {
|
| 257 |
if [[ -x ${SCROLLKEEPER_UPDATE_BIN} && "${SCROLLKEEPER_UPDATE}" = "1" ]]
|
| 258 |
then
|
| 259 |
einfo "Updating scrollkeeper database ..."
|
| 260 |
${SCROLLKEEPER_UPDATE_BIN} -q -p ${ROOT}${SCROLLKEEPER_DIR}
|
| 261 |
fi
|
| 262 |
}
|
| 263 |
|
| 264 |
gnome2_pkg_postinst() {
|
| 265 |
gnome2_gconf_install
|
| 266 |
gnome2_scrollkeeper_update
|
| 267 |
fdo-mime_desktop_database_update
|
| 268 |
fdo-mime_mime_database_update
|
| 269 |
gnome2_icon_cache_update
|
| 270 |
}
|
| 271 |
|
| 272 |
#gnome2_pkg_prerm() {
|
| 273 |
# gnome2_gconf_uninstall
|
| 274 |
#}
|
| 275 |
|
| 276 |
gnome2_pkg_postrm() {
|
| 277 |
gnome2_scrollkeeper_update
|
| 278 |
fdo-mime_desktop_database_update
|
| 279 |
fdo-mime_mime_database_update
|
| 280 |
gnome2_icon_cache_update
|
| 281 |
}
|
| 282 |
|
| 283 |
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm
|