| 1 |
# Copyright 1999-2011 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.91 2011/04/09 13:14:06 eva Exp $
|
| 4 |
|
| 5 |
# @ECLASS: gnome2.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# gnome@gentoo.org
|
| 8 |
# @BLURB:
|
| 9 |
# @DESCRIPTION:
|
| 10 |
# Exports portage base functions used by ebuilds written for packages using the
|
| 11 |
# GNOME framework. For additional functions, see gnome2-utils.eclass.
|
| 12 |
|
| 13 |
inherit fdo-mime libtool gnome.org gnome2-utils
|
| 14 |
|
| 15 |
case "${EAPI:-0}" in
|
| 16 |
0|1)
|
| 17 |
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm
|
| 18 |
;;
|
| 19 |
2|3)
|
| 20 |
EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm
|
| 21 |
;;
|
| 22 |
*) die "EAPI=${EAPI} is not supported" ;;
|
| 23 |
esac
|
| 24 |
|
| 25 |
# @ECLASS-VARIABLE: G2CONF
|
| 26 |
# @DEFAULT-UNSET
|
| 27 |
# @DESCRIPTION:
|
| 28 |
# Extra configure opts passed to econf
|
| 29 |
G2CONF=${G2CONF:-""}
|
| 30 |
|
| 31 |
# @ECLASS-VARIABLE: ELTCONF
|
| 32 |
# @DEFAULT-UNSET
|
| 33 |
# @DESCRIPTION:
|
| 34 |
# Extra options passed to elibtoolize
|
| 35 |
ELTCONF=${ELTCONF:-""}
|
| 36 |
|
| 37 |
# @ECLASS-VARIABLE: USE_EINSTALL
|
| 38 |
# @DEFAULT-UNSET
|
| 39 |
# @DEPRECATED
|
| 40 |
# @DESCRIPTION:
|
| 41 |
# Should we use EINSTALL instead of DESTDIR
|
| 42 |
USE_EINSTALL=${USE_EINSTALL:-""}
|
| 43 |
|
| 44 |
# @ECLASS-VARIABLE: USE_EINSTALL
|
| 45 |
# @DEPRECATED
|
| 46 |
# @DESCRIPTION:
|
| 47 |
# Whether to run scrollkeeper for this package or not.
|
| 48 |
SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"}
|
| 49 |
|
| 50 |
# @ECLASS-VARIABLE: DOCS
|
| 51 |
# @DEFAULT-UNSET
|
| 52 |
# @DESCRIPTION:
|
| 53 |
# String containing documents passed to dodoc command.
|
| 54 |
|
| 55 |
# @ECLASS-VARIABLE: GCONF_DEBUG
|
| 56 |
# @DEFAULT_UNSET
|
| 57 |
# @DESCRIPTION:
|
| 58 |
# Whether to handle debug or not.
|
| 59 |
# Some gnome applications support various levels of debugging (yes, no, minimum,
|
| 60 |
# etc), but using --disable-debug also removes g_assert which makes debugging
|
| 61 |
# harder. This variable should be set to yes for such packages for the eclass
|
| 62 |
# to handle it properly. It will enable minimal debug with USE=-debug.
|
| 63 |
# Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK.
|
| 64 |
|
| 65 |
|
| 66 |
if [[ ${GCONF_DEBUG} != "no" ]]; then
|
| 67 |
IUSE="debug"
|
| 68 |
fi
|
| 69 |
|
| 70 |
|
| 71 |
# @FUNCTION: gnome2_src_unpack
|
| 72 |
# @DESCRIPTION:
|
| 73 |
# Stub function for old EAPI.
|
| 74 |
gnome2_src_unpack() {
|
| 75 |
unpack ${A}
|
| 76 |
cd "${S}"
|
| 77 |
has ${EAPI:-0} 0 1 && gnome2_src_prepare
|
| 78 |
}
|
| 79 |
|
| 80 |
# @FUNCTION: gnome2_src_prepare
|
| 81 |
# @DESCRIPTION:
|
| 82 |
# Fix build of scrollkeeper documentation and run elibtoolize.
|
| 83 |
gnome2_src_prepare() {
|
| 84 |
# Prevent scrollkeeper access violations
|
| 85 |
gnome2_omf_fix
|
| 86 |
|
| 87 |
# Run libtoolize
|
| 88 |
elibtoolize ${ELTCONF}
|
| 89 |
}
|
| 90 |
|
| 91 |
# @FUNCTION: gnome2_src_configure
|
| 92 |
# @DESCRIPTION:
|
| 93 |
# Gnome specific configure handling
|
| 94 |
gnome2_src_configure() {
|
| 95 |
# Update the GNOME configuration options
|
| 96 |
if [[ ${GCONF_DEBUG} != 'no' ]] ; then
|
| 97 |
if use debug ; then
|
| 98 |
G2CONF="${G2CONF} --enable-debug=yes"
|
| 99 |
fi
|
| 100 |
fi
|
| 101 |
|
| 102 |
# Prevent a QA warning
|
| 103 |
if hasq doc ${IUSE} ; then
|
| 104 |
G2CONF="${G2CONF} $(use_enable doc gtk-doc)"
|
| 105 |
fi
|
| 106 |
|
| 107 |
# Avoid sandbox violations caused by misbehaving packages (bug #128289)
|
| 108 |
addwrite "/root/.gnome2"
|
| 109 |
|
| 110 |
# GST_REGISTRY is to work around gst-inspect trying to read/write /root
|
| 111 |
GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF}
|
| 112 |
}
|
| 113 |
|
| 114 |
# @FUNCTION: gnome2_src_compile
|
| 115 |
# @DESCRIPTION:
|
| 116 |
# Stub function for old EAPI.
|
| 117 |
gnome2_src_compile() {
|
| 118 |
has ${EAPI:-0} 0 1 && gnome2_src_configure "$@"
|
| 119 |
emake || die "compile failure"
|
| 120 |
}
|
| 121 |
|
| 122 |
# @FUNCTION: gnome2_src_install
|
| 123 |
# @DESCRIPTION:
|
| 124 |
# Gnome specific install. Handles typical GConf and scrollkeeper setup
|
| 125 |
# in packages.
|
| 126 |
gnome2_src_install() {
|
| 127 |
has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}"
|
| 128 |
# if this is not present, scrollkeeper-update may segfault and
|
| 129 |
# create bogus directories in /var/lib/
|
| 130 |
local sk_tmp_dir="/var/lib/scrollkeeper"
|
| 131 |
dodir "${sk_tmp_dir}" || die "dodir failed"
|
| 132 |
|
| 133 |
# we must delay gconf schema installation due to sandbox
|
| 134 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"
|
| 135 |
|
| 136 |
if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then
|
| 137 |
debug-print "Installing with 'make install'"
|
| 138 |
emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed"
|
| 139 |
else
|
| 140 |
debug-print "Installing with 'einstall'"
|
| 141 |
einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed"
|
| 142 |
fi
|
| 143 |
|
| 144 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
| 145 |
|
| 146 |
# Manual document installation
|
| 147 |
if [[ -n "${DOCS}" ]]; then
|
| 148 |
dodoc ${DOCS} || die "dodoc failed"
|
| 149 |
fi
|
| 150 |
|
| 151 |
# Do not keep /var/lib/scrollkeeper because:
|
| 152 |
# 1. The scrollkeeper database is regenerated at pkg_postinst()
|
| 153 |
# 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg
|
| 154 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason.
|
| 155 |
if [[ -z "$(find "${D}" -name '*.omf')" ]]; then
|
| 156 |
export SCROLLKEEPER_UPDATE="0"
|
| 157 |
fi
|
| 158 |
rm -rf "${ED}${sk_tmp_dir}"
|
| 159 |
|
| 160 |
# Make sure this one doesn't get in the portage db
|
| 161 |
rm -fr "${ED}/usr/share/applications/mimeinfo.cache"
|
| 162 |
}
|
| 163 |
|
| 164 |
# @FUNCTION: gnome2_pkg_preinst
|
| 165 |
# @DESCRIPTION:
|
| 166 |
# Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst
|
| 167 |
gnome2_pkg_preinst() {
|
| 168 |
gnome2_gconf_savelist
|
| 169 |
gnome2_icon_savelist
|
| 170 |
gnome2_schemas_savelist
|
| 171 |
}
|
| 172 |
|
| 173 |
# @FUNCTION: gnome2_pkg_postinst
|
| 174 |
# @DESCRIPTION:
|
| 175 |
# Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime
|
| 176 |
# database updates.
|
| 177 |
gnome2_pkg_postinst() {
|
| 178 |
gnome2_gconf_install
|
| 179 |
fdo-mime_desktop_database_update
|
| 180 |
fdo-mime_mime_database_update
|
| 181 |
gnome2_icon_cache_update
|
| 182 |
gnome2_schemas_update
|
| 183 |
|
| 184 |
if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then
|
| 185 |
gnome2_scrollkeeper_update
|
| 186 |
fi
|
| 187 |
}
|
| 188 |
|
| 189 |
# @#FUNCTION: gnome2_pkg_prerm
|
| 190 |
# @#DESCRIPTION:
|
| 191 |
# # FIXME Handle GConf schemas removal
|
| 192 |
#gnome2_pkg_prerm() {
|
| 193 |
# gnome2_gconf_uninstall
|
| 194 |
#}
|
| 195 |
|
| 196 |
# @FUNCTION: gnome2_pkg_postrm
|
| 197 |
# @DESCRIPTION:
|
| 198 |
# Handle scrollkeeper, GSettings, Icons, desktop and mime database updates.
|
| 199 |
gnome2_pkg_postrm() {
|
| 200 |
fdo-mime_desktop_database_update
|
| 201 |
fdo-mime_mime_database_update
|
| 202 |
gnome2_icon_cache_update
|
| 203 |
gnome2_schemas_update --uninstall
|
| 204 |
|
| 205 |
if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then
|
| 206 |
gnome2_scrollkeeper_update
|
| 207 |
fi
|
| 208 |
}
|