| 1 |
# Copyright 1999-2012 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.113 2012/11/26 15:47:20 tetromino 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 eutils 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|4|5) |
| 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: GNOME2_LA_PUNT |
| 32 |
# @DESCRIPTION: |
| 33 |
# Should we delete ALL the .la files? |
| 34 |
# NOT to be used without due consideration. |
| 35 |
if has ${EAPI:-0} 0 1 2 3 4; then |
| 36 |
GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
| 37 |
else |
| 38 |
GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-""} |
| 39 |
fi |
| 40 |
|
| 41 |
# @ECLASS-VARIABLE: ELTCONF |
| 42 |
# @DEFAULT-UNSET |
| 43 |
# @DESCRIPTION: |
| 44 |
# Extra options passed to elibtoolize |
| 45 |
ELTCONF=${ELTCONF:-""} |
| 46 |
|
| 47 |
# @ECLASS-VARIABLE: USE_EINSTALL |
| 48 |
# @DEFAULT-UNSET |
| 49 |
# @DEPRECATED |
| 50 |
# @DESCRIPTION: |
| 51 |
# Should we use EINSTALL instead of DESTDIR |
| 52 |
USE_EINSTALL=${USE_EINSTALL:-""} |
| 53 |
|
| 54 |
# @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
| 55 |
# @DEPRECATED |
| 56 |
# @DESCRIPTION: |
| 57 |
# Whether to run scrollkeeper for this package or not. |
| 58 |
SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
| 59 |
|
| 60 |
# @ECLASS-VARIABLE: DOCS |
| 61 |
# @DEFAULT-UNSET |
| 62 |
# @DESCRIPTION: |
| 63 |
# String containing documents passed to dodoc command. |
| 64 |
|
| 65 |
# @ECLASS-VARIABLE: GCONF_DEBUG |
| 66 |
# @DEFAULT_UNSET |
| 67 |
# @DESCRIPTION: |
| 68 |
# Whether to handle debug or not. |
| 69 |
# Some gnome applications support various levels of debugging (yes, no, minimum, |
| 70 |
# etc), but using --disable-debug also removes g_assert which makes debugging |
| 71 |
# harder. This variable should be set to yes for such packages for the eclass |
| 72 |
# to handle it properly. It will enable minimal debug with USE=-debug. |
| 73 |
# Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
| 74 |
|
| 75 |
|
| 76 |
if [[ ${GCONF_DEBUG} != "no" ]]; then |
| 77 |
IUSE="debug" |
| 78 |
fi |
| 79 |
|
| 80 |
|
| 81 |
# @FUNCTION: gnome2_src_unpack |
| 82 |
# @DESCRIPTION: |
| 83 |
# Stub function for old EAPI. |
| 84 |
gnome2_src_unpack() { |
| 85 |
unpack ${A} |
| 86 |
cd "${S}" |
| 87 |
has ${EAPI:-0} 0 1 && gnome2_src_prepare |
| 88 |
} |
| 89 |
|
| 90 |
# @FUNCTION: gnome2_src_prepare |
| 91 |
# @DESCRIPTION: |
| 92 |
# Prepare environment for build, fix build of scrollkeeper documentation, |
| 93 |
# run elibtoolize. |
| 94 |
gnome2_src_prepare() { |
| 95 |
# Prevent assorted access violations and test failures |
| 96 |
gnome2_environment_reset |
| 97 |
|
| 98 |
# Prevent scrollkeeper access violations |
| 99 |
gnome2_omf_fix |
| 100 |
|
| 101 |
# Disable all deprecation warnings |
| 102 |
gnome2_disable_deprecation_warning |
| 103 |
|
| 104 |
# Run libtoolize |
| 105 |
if has ${EAPI:-0} 0 1 2 3; then |
| 106 |
elibtoolize ${ELTCONF} |
| 107 |
else |
| 108 |
# Everything is fatal EAPI 4 onwards |
| 109 |
nonfatal elibtoolize ${ELTCONF} |
| 110 |
fi |
| 111 |
|
| 112 |
} |
| 113 |
|
| 114 |
# @FUNCTION: gnome2_src_configure |
| 115 |
# @DESCRIPTION: |
| 116 |
# Gnome specific configure handling |
| 117 |
gnome2_src_configure() { |
| 118 |
# Update the GNOME configuration options |
| 119 |
if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 120 |
if use debug ; then |
| 121 |
G2CONF="${G2CONF} --enable-debug=yes" |
| 122 |
fi |
| 123 |
fi |
| 124 |
|
| 125 |
# Prevent a QA warning |
| 126 |
if has doc ${IUSE} ; then |
| 127 |
grep -q "enable-gtk-doc" configure && G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
| 128 |
fi |
| 129 |
|
| 130 |
# Pass --disable-maintainer-mode when needed |
| 131 |
if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" configure.*; then |
| 132 |
G2CONF="${G2CONF} --disable-maintainer-mode" |
| 133 |
fi |
| 134 |
|
| 135 |
# Pass --disable-scrollkeeper when possible |
| 136 |
if grep -q "disable-scrollkeeper" configure; then |
| 137 |
G2CONF="${G2CONF} --disable-scrollkeeper" |
| 138 |
fi |
| 139 |
|
| 140 |
# Pass --disable-silent-rules when possible (not needed for eapi5), bug #429308 |
| 141 |
if has ${EAPI:-0} 0 1 2 3 4; then |
| 142 |
if grep -q "disable-silent-rules" configure; then |
| 143 |
G2CONF="${G2CONF} --disable-silent-rules" |
| 144 |
fi |
| 145 |
fi |
| 146 |
|
| 147 |
# Pass --disable-schemas-install when possible |
| 148 |
if grep -q "disable-schemas-install" configure; then |
| 149 |
G2CONF="${G2CONF} --disable-schemas-install" |
| 150 |
fi |
| 151 |
|
| 152 |
# Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
| 153 |
addwrite "$(unset HOME; echo ~)/.gnome2" |
| 154 |
|
| 155 |
econf "$@" ${G2CONF} |
| 156 |
} |
| 157 |
|
| 158 |
# @FUNCTION: gnome2_src_compile |
| 159 |
# @DESCRIPTION: |
| 160 |
# Stub function for old EAPI. |
| 161 |
gnome2_src_compile() { |
| 162 |
has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 163 |
emake || die "compile failure" |
| 164 |
} |
| 165 |
|
| 166 |
# @FUNCTION: gnome2_src_install |
| 167 |
# @DESCRIPTION: |
| 168 |
# Gnome specific install. Handles typical GConf and scrollkeeper setup |
| 169 |
# in packages and removal of .la files if requested |
| 170 |
gnome2_src_install() { |
| 171 |
has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 172 |
# if this is not present, scrollkeeper-update may segfault and |
| 173 |
# create bogus directories in /var/lib/ |
| 174 |
local sk_tmp_dir="/var/lib/scrollkeeper" |
| 175 |
dodir "${sk_tmp_dir}" || die "dodir failed" |
| 176 |
|
| 177 |
# we must delay gconf schema installation due to sandbox |
| 178 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 179 |
|
| 180 |
if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 181 |
debug-print "Installing with 'make install'" |
| 182 |
emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 183 |
else |
| 184 |
debug-print "Installing with 'einstall'" |
| 185 |
einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 186 |
fi |
| 187 |
|
| 188 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 189 |
|
| 190 |
# Handle documentation as 'default' for eapi5 and newer, bug #373131 |
| 191 |
if has ${EAPI:-0} 0 1 2 3 4; then |
| 192 |
# Manual document installation |
| 193 |
if [[ -n "${DOCS}" ]]; then |
| 194 |
dodoc ${DOCS} || die "dodoc failed" |
| 195 |
fi |
| 196 |
else |
| 197 |
if ! declare -p DOCS >/dev/null 2>&1 ; then |
| 198 |
local d |
| 199 |
for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \ |
| 200 |
FAQ CREDITS CHANGELOG ; do |
| 201 |
[[ -s "${d}" ]] && dodoc "${d}" |
| 202 |
done |
| 203 |
elif declare -p DOCS | grep -q '^declare -a' ; then |
| 204 |
dodoc "${DOCS[@]}" |
| 205 |
else |
| 206 |
dodoc ${DOCS} |
| 207 |
fi |
| 208 |
fi |
| 209 |
|
| 210 |
# Do not keep /var/lib/scrollkeeper because: |
| 211 |
# 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 212 |
# 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
| 213 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 214 |
rm -rf "${ED}${sk_tmp_dir}" |
| 215 |
rmdir "${ED}/var/lib" 2>/dev/null |
| 216 |
rmdir "${ED}/var" 2>/dev/null |
| 217 |
|
| 218 |
# Make sure this one doesn't get in the portage db |
| 219 |
rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 220 |
|
| 221 |
# Delete all .la files |
| 222 |
if has ${EAPI:-0} 0 1 2 3 4; then |
| 223 |
if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
| 224 |
ebegin "Removing .la files" |
| 225 |
if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
| 226 |
find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
| 227 |
fi |
| 228 |
eend |
| 229 |
fi |
| 230 |
else |
| 231 |
case "${GNOME2_LA_PUNT}" in |
| 232 |
yes) prune_libtool_files --modules;; |
| 233 |
no) ;; |
| 234 |
*) prune_libtool_files;; |
| 235 |
esac |
| 236 |
fi |
| 237 |
} |
| 238 |
|
| 239 |
# @FUNCTION: gnome2_pkg_preinst |
| 240 |
# @DESCRIPTION: |
| 241 |
# Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 242 |
gnome2_pkg_preinst() { |
| 243 |
gnome2_gconf_savelist |
| 244 |
gnome2_icon_savelist |
| 245 |
gnome2_schemas_savelist |
| 246 |
gnome2_scrollkeeper_savelist |
| 247 |
} |
| 248 |
|
| 249 |
# @FUNCTION: gnome2_pkg_postinst |
| 250 |
# @DESCRIPTION: |
| 251 |
# Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
| 252 |
# database updates. |
| 253 |
gnome2_pkg_postinst() { |
| 254 |
gnome2_gconf_install |
| 255 |
fdo-mime_desktop_database_update |
| 256 |
fdo-mime_mime_database_update |
| 257 |
gnome2_icon_cache_update |
| 258 |
gnome2_schemas_update |
| 259 |
gnome2_scrollkeeper_update |
| 260 |
} |
| 261 |
|
| 262 |
# @#FUNCTION: gnome2_pkg_prerm |
| 263 |
# @#DESCRIPTION: |
| 264 |
# # FIXME Handle GConf schemas removal |
| 265 |
#gnome2_pkg_prerm() { |
| 266 |
# gnome2_gconf_uninstall |
| 267 |
#} |
| 268 |
|
| 269 |
# @FUNCTION: gnome2_pkg_postrm |
| 270 |
# @DESCRIPTION: |
| 271 |
# Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 272 |
gnome2_pkg_postrm() { |
| 273 |
fdo-mime_desktop_database_update |
| 274 |
fdo-mime_mime_database_update |
| 275 |
gnome2_icon_cache_update |
| 276 |
gnome2_schemas_update |
| 277 |
gnome2_scrollkeeper_update |
| 278 |
} |