| 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.59 2005/08/03 07:35:50 leonardop Exp $ |
| 4 |
# |
| 5 |
# Authors: |
| 6 |
# Bruce A. Locke <blocke@shivan.org> |
| 7 |
# Spidler <spider@gentoo.org> |
| 8 |
|
| 9 |
inherit libtool gnome.org debug fdo-mime |
| 10 |
|
| 11 |
# Gnome 2 ECLASS |
| 12 |
|
| 13 |
# extra configure opts passed to econf |
| 14 |
[ -z "$G2CONF" ] && G2CONF="" |
| 15 |
|
| 16 |
# extra options passed to elibtoolize |
| 17 |
[ -z "$ELTCONF" ] && ELTCONF="" |
| 18 |
|
| 19 |
# whether to run scrollkeeper for this package |
| 20 |
[ -z "$SCROLLKEEPER_UPDATE" ] && SCROLLKEEPER_UPDATE="1" |
| 21 |
|
| 22 |
# use make DESTDIR=${D} install rather than einstall |
| 23 |
[ -z "$USE_DESTDIR" ] && USE_DESTDIR="" |
| 24 |
|
| 25 |
|
| 26 |
IUSE="debug" |
| 27 |
|
| 28 |
|
| 29 |
DEPEND=">=sys-apps/sed-4" |
| 30 |
|
| 31 |
gnome2_src_configure() { |
| 32 |
|
| 33 |
# [ -n "${ELTCONF}" ] && elibtoolize ${ELTCONF} |
| 34 |
elibtoolize ${ELTCONF} |
| 35 |
|
| 36 |
use debug && G2CONF="${G2CONF} --enable-debug=yes" |
| 37 |
|
| 38 |
# doc keyword for gtk-doc |
| 39 |
G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
| 40 |
|
| 41 |
econf "$@" ${G2CONF} || die "./configure failure" |
| 42 |
|
| 43 |
} |
| 44 |
|
| 45 |
gnome2_src_compile() { |
| 46 |
|
| 47 |
gnome2_src_configure "$@" |
| 48 |
emake || die "compile failure" |
| 49 |
|
| 50 |
} |
| 51 |
|
| 52 |
gnome2_src_install() { |
| 53 |
|
| 54 |
# if this is not present, scrollkeeper-update may segfault and |
| 55 |
# create bogus directories in /var/lib/ |
| 56 |
dodir /var/lib/scrollkeeper |
| 57 |
|
| 58 |
# we must delay gconf schema installation due to sandbox |
| 59 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 60 |
|
| 61 |
if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
| 62 |
einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" || die "einstall failed" |
| 63 |
else |
| 64 |
make DESTDIR=${D} \ |
| 65 |
"$@" install || die "make DESTDIR install failed" |
| 66 |
fi |
| 67 |
|
| 68 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 69 |
|
| 70 |
# manual document installation |
| 71 |
[ -n "${DOCS}" ] && dodoc ${DOCS} |
| 72 |
|
| 73 |
# do not keep /var/lib/scrollkeeper because: |
| 74 |
# 1. scrollkeeper will get regenerated at pkg_postinst() |
| 75 |
# 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
| 76 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 77 |
|
| 78 |
if [ -z "`find ${D} -name '*.omf'`" ]; then |
| 79 |
export SCROLLKEEPER_UPDATE="0" |
| 80 |
fi |
| 81 |
|
| 82 |
# regenerate these in pkg_postinst() |
| 83 |
rm -rf ${D}/var/lib/scrollkeeper |
| 84 |
# make sure this one doesn't get in the portage db |
| 85 |
rm -fr ${D}/usr/share/applications/mimeinfo.cache |
| 86 |
|
| 87 |
} |
| 88 |
|
| 89 |
|
| 90 |
gnome2_gconf_install() { |
| 91 |
|
| 92 |
if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
| 93 |
then |
| 94 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 95 |
export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
| 96 |
einfo "Installing GNOME 2 GConf schemas" |
| 97 |
grep "obj /etc/gconf/schemas" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS | sed 's:obj \([^ ]*\) .*:\1:' | while read F; do |
| 98 |
if [ -e "${F}" ]; then |
| 99 |
# echo "DEBUG::gconf install ${F}" |
| 100 |
${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} 1>/dev/null |
| 101 |
fi |
| 102 |
done |
| 103 |
fi |
| 104 |
|
| 105 |
} |
| 106 |
|
| 107 |
gnome2_gconf_uninstall() { |
| 108 |
|
| 109 |
if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
| 110 |
then |
| 111 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 112 |
export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
| 113 |
einfo "Uninstalling GNOME 2 GConf schemas" |
| 114 |
cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
| 115 |
# echo "DEBUG::gconf install ${F}" |
| 116 |
${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
| 117 |
done |
| 118 |
fi |
| 119 |
|
| 120 |
} |
| 121 |
|
| 122 |
gnome2_icon_cache_update() { |
| 123 |
local updater=`which gtk-update-icon-cache` |
| 124 |
if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS \ |
| 125 |
|| [ ! -x "$updater" ]; then |
| 126 |
# Nothing to update |
| 127 |
return |
| 128 |
fi |
| 129 |
|
| 130 |
ebegin "Updating icons cache" |
| 131 |
|
| 132 |
local retval=0 |
| 133 |
for dir in \ |
| 134 |
$(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d); do |
| 135 |
$updater -qf $dir || retval=$? |
| 136 |
done |
| 137 |
|
| 138 |
eend $retval |
| 139 |
} |
| 140 |
|
| 141 |
gnome2_omf_fix() { |
| 142 |
|
| 143 |
# workaround/patch against omf.make or omf-install/Makefile.in |
| 144 |
# in order to remove redundant scrollkeeper-updates. |
| 145 |
# - <liquidx@gentoo.org> |
| 146 |
|
| 147 |
local omf_makefiles |
| 148 |
|
| 149 |
omf_makefiles="$@" |
| 150 |
|
| 151 |
[ -f ${S}/omf-install/Makefile.in ] \ |
| 152 |
&& omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
| 153 |
|
| 154 |
# FIXME: does this really work? because omf.make only gets included |
| 155 |
# when autoconf/automake is run. You should directly patch |
| 156 |
# the Makefile.in's |
| 157 |
|
| 158 |
[ -f ${S}/omf.make ] \ |
| 159 |
&& omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 160 |
|
| 161 |
for omf in ${omf_makefiles}; do |
| 162 |
omfbase=$(basename ${omf}) |
| 163 |
einfo "Fixing OMF Makefile: ${omf#${S}/}" |
| 164 |
sed -i -e 's:scrollkeeper-update:true:' ${omf} |
| 165 |
done |
| 166 |
|
| 167 |
} |
| 168 |
|
| 169 |
gnome2_scrollkeeper_update() { |
| 170 |
|
| 171 |
if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
| 172 |
then |
| 173 |
einfo "Updating scrollkeeper database ..." |
| 174 |
scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
| 175 |
fi |
| 176 |
|
| 177 |
} |
| 178 |
|
| 179 |
gnome2_pkg_postinst() { |
| 180 |
|
| 181 |
gnome2_gconf_install |
| 182 |
gnome2_scrollkeeper_update |
| 183 |
fdo-mime_desktop_database_update |
| 184 |
fdo-mime_mime_database_update |
| 185 |
gnome2_icon_cache_update |
| 186 |
|
| 187 |
} |
| 188 |
|
| 189 |
#gnome2_pkg_prerm() { |
| 190 |
|
| 191 |
# gnome2_gconf_uninstall |
| 192 |
|
| 193 |
#} |
| 194 |
|
| 195 |
gnome2_pkg_postrm() { |
| 196 |
|
| 197 |
gnome2_scrollkeeper_update |
| 198 |
fdo-mime_desktop_database_update |
| 199 |
fdo-mime_mime_database_update |
| 200 |
gnome2_icon_cache_update |
| 201 |
|
| 202 |
} |
| 203 |
|
| 204 |
#EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
| 205 |
EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |