| 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.eclass,v 1.78 2006/12/13 02:27:48 leonardop Exp $
|
| 4 |
|
| 5 |
#
|
| 6 |
# gnome2.eclass
|
| 7 |
#
|
| 8 |
# Exports portage base functions used by ebuilds written for packages using the
|
| 9 |
# GNOME framework. For additional functions, see gnome2-utils.eclass.
|
| 10 |
#
|
| 11 |
# Maintained by Gentoo's GNOME herd <gnome@gentoo.org>
|
| 12 |
#
|
| 13 |
|
| 14 |
|
| 15 |
inherit debug fdo-mime libtool gnome.org gnome2-utils
|
| 16 |
|
| 17 |
|
| 18 |
# Extra configure opts passed to econf
|
| 19 |
G2CONF=${G2CONF:=""}
|
| 20 |
|
| 21 |
# Extra options passed to elibtoolize
|
| 22 |
ELTCONF=${ELTCONF:=""}
|
| 23 |
|
| 24 |
# Should we use EINSTALL instead of DESTDIR
|
| 25 |
USE_EINSTALL=${USE_EINSTALL:=""}
|
| 26 |
|
| 27 |
# Run scrollkeeper for this package?
|
| 28 |
SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"}
|
| 29 |
|
| 30 |
|
| 31 |
|
| 32 |
if [[ ${GCONF_DEBUG} != "no" ]]; then
|
| 33 |
IUSE="debug"
|
| 34 |
fi
|
| 35 |
|
| 36 |
|
| 37 |
|
| 38 |
gnome2_src_unpack() {
|
| 39 |
unpack ${A}
|
| 40 |
cd ${S}
|
| 41 |
|
| 42 |
# Prevent scrollkeeper access violations
|
| 43 |
gnome2_omf_fix
|
| 44 |
}
|
| 45 |
|
| 46 |
gnome2_src_configure() {
|
| 47 |
# Update the GNOME configuration options
|
| 48 |
if [[ ${GCONF_DEBUG} != 'no' ]] ; then
|
| 49 |
if use debug ; then
|
| 50 |
G2CONF="${G2CONF} --enable-debug=yes"
|
| 51 |
fi
|
| 52 |
fi
|
| 53 |
|
| 54 |
# Prevent a QA warning
|
| 55 |
if hasq doc ${IUSE} ; then
|
| 56 |
G2CONF="${G2CONF} $(use_enable doc gtk-doc)"
|
| 57 |
fi
|
| 58 |
|
| 59 |
# Run libtoolize
|
| 60 |
elibtoolize ${ELTCONF}
|
| 61 |
|
| 62 |
# Avoid sandbox violations caused by misbehaving packages (bug #128289)
|
| 63 |
addwrite "${ROOT}root/.gnome2"
|
| 64 |
|
| 65 |
# GST_REGISTRY is to work around gst-inspect trying to read/write /root
|
| 66 |
GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed"
|
| 67 |
}
|
| 68 |
|
| 69 |
gnome2_src_compile() {
|
| 70 |
gnome2_src_configure "$@"
|
| 71 |
emake || die "compile failure"
|
| 72 |
}
|
| 73 |
|
| 74 |
gnome2_src_install() {
|
| 75 |
# if this is not present, scrollkeeper-update may segfault and
|
| 76 |
# create bogus directories in /var/lib/
|
| 77 |
local sk_tmp_dir="/var/lib/scrollkeeper"
|
| 78 |
dodir "${sk_tmp_dir}"
|
| 79 |
|
| 80 |
# we must delay gconf schema installation due to sandbox
|
| 81 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"
|
| 82 |
|
| 83 |
if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then
|
| 84 |
debug-print "Installing with 'make install'"
|
| 85 |
make DESTDIR=${D} "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed"
|
| 86 |
else
|
| 87 |
debug-print "Installing with 'einstall'"
|
| 88 |
einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed"
|
| 89 |
fi
|
| 90 |
|
| 91 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
| 92 |
|
| 93 |
# Manual document installation
|
| 94 |
[[ -n "${DOCS}" ]] && dodoc ${DOCS}
|
| 95 |
|
| 96 |
# Do not keep /var/lib/scrollkeeper because:
|
| 97 |
# 1. The scrollkeeper database is regenerated at pkg_postinst()
|
| 98 |
# 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg
|
| 99 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason.
|
| 100 |
if [[ -z "$(find ${D} -name '*.omf')" ]]; then
|
| 101 |
export SCROLLKEEPER_UPDATE="0"
|
| 102 |
fi
|
| 103 |
rm -rf "${D}${sk_tmp_dir}"
|
| 104 |
|
| 105 |
# Make sure this one doesn't get in the portage db
|
| 106 |
rm -fr "${D}/usr/share/applications/mimeinfo.cache"
|
| 107 |
}
|
| 108 |
|
| 109 |
gnome2_pkg_postinst() {
|
| 110 |
gnome2_gconf_install
|
| 111 |
fdo-mime_desktop_database_update
|
| 112 |
fdo-mime_mime_database_update
|
| 113 |
gnome2_icon_cache_update
|
| 114 |
|
| 115 |
if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then
|
| 116 |
gnome2_scrollkeeper_update
|
| 117 |
fi
|
| 118 |
}
|
| 119 |
|
| 120 |
#gnome2_pkg_prerm() {
|
| 121 |
# gnome2_gconf_uninstall
|
| 122 |
#}
|
| 123 |
|
| 124 |
gnome2_pkg_postrm() {
|
| 125 |
fdo-mime_desktop_database_update
|
| 126 |
fdo-mime_mime_database_update
|
| 127 |
gnome2_icon_cache_update
|
| 128 |
|
| 129 |
if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then
|
| 130 |
gnome2_scrollkeeper_update
|
| 131 |
fi
|
| 132 |
}
|
| 133 |
|
| 134 |
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm
|