| 1 |
# Copyright 1999-2009 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.31 2011/04/20 21:04:10 angelos Exp $ |
| 4 |
|
| 5 |
# @ECLASS: xfconf.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# XFCE maintainers <xfce@gentoo.org> |
| 8 |
# @BLURB: Default XFCE ebuild layout |
| 9 |
# @DESCRIPTION: |
| 10 |
# Default XFCE ebuild layout |
| 11 |
|
| 12 |
# @ECLASS-VARIABLE: EAUTORECONF |
| 13 |
# @DESCRIPTION: |
| 14 |
# Run eautoreconf instead of elibtoolize if the variable is set |
| 15 |
|
| 16 |
# @ECLASS-VARIABLE: EINTLTOOLIZE |
| 17 |
# @DESCRIPTION: |
| 18 |
# Run intltoolize --force --copy --automake if the variable is set |
| 19 |
|
| 20 |
# @ECLASS-VARIABLE: DOCS |
| 21 |
# @DESCRIPTION: |
| 22 |
# This should be an array defining documentation to install |
| 23 |
|
| 24 |
# @ECLASS-VARIABLE: PATCHES |
| 25 |
# @DESCRIPTION: |
| 26 |
# This should be an array defining patches to apply |
| 27 |
|
| 28 |
# @ECLASS-VARIABLE: XFCONF |
| 29 |
# @DESCRIPTION: |
| 30 |
# This should be an array defining arguments for econf |
| 31 |
|
| 32 |
inherit autotools base eutils fdo-mime gnome2-utils libtool |
| 33 |
|
| 34 |
if [[ -n $EINTLTOOLIZE ]]; then |
| 35 |
_xfce4_intltool="dev-util/intltool" |
| 36 |
fi |
| 37 |
|
| 38 |
if [[ -n $EAUTORECONF ]]; then |
| 39 |
_xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
| 40 |
fi |
| 41 |
|
| 42 |
RDEPEND="" |
| 43 |
DEPEND="${_xfce4_intltool} |
| 44 |
${_xfce4_m4}" |
| 45 |
|
| 46 |
unset _xfce4_intltool |
| 47 |
unset _xfce4_m4 |
| 48 |
|
| 49 |
case ${EAPI:-0} in |
| 50 |
4|3) ;; |
| 51 |
*) die "Unknown EAPI." ;; |
| 52 |
esac |
| 53 |
|
| 54 |
EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
| 55 |
|
| 56 |
# @FUNCTION: xfconf_use_debug |
| 57 |
# @DESCRIPTION: |
| 58 |
# If IUSE has debug, return --enable-debug=minimum. |
| 59 |
# If USE debug is enabled, return --enable-debug which is the same as --enable-debug=yes. |
| 60 |
# If USE debug is enabled and the XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
| 61 |
xfconf_use_debug() { |
| 62 |
if has debug ${IUSE}; then |
| 63 |
if use debug; then |
| 64 |
if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 65 |
echo "--enable-debug=full" |
| 66 |
else |
| 67 |
echo "--enable-debug" |
| 68 |
fi |
| 69 |
else |
| 70 |
echo "--enable-debug=minimum" |
| 71 |
fi |
| 72 |
fi |
| 73 |
} |
| 74 |
|
| 75 |
# @FUNCTION: xfconf_src_prepare |
| 76 |
# @DESCRIPTION: |
| 77 |
# Run base_src_prepare and eautoreconf or elibtoolize |
| 78 |
xfconf_src_prepare() { |
| 79 |
debug-print-function ${FUNCNAME} "$@" |
| 80 |
base_src_prepare |
| 81 |
|
| 82 |
if [[ -n $EINTLTOOLIZE ]]; then |
| 83 |
intltoolize --force --copy --automake || die |
| 84 |
fi |
| 85 |
|
| 86 |
if [[ -n $EAUTORECONF ]]; then |
| 87 |
AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 88 |
else |
| 89 |
elibtoolize |
| 90 |
fi |
| 91 |
} |
| 92 |
|
| 93 |
# @FUNCTION: xfconf_src_configure |
| 94 |
# @DESCRIPTION: |
| 95 |
# Run econf with opts from the XFCONF array |
| 96 |
xfconf_src_configure() { |
| 97 |
debug-print-function ${FUNCNAME} "$@" |
| 98 |
econf "${XFCONF[@]}" |
| 99 |
} |
| 100 |
|
| 101 |
# @FUNCTION: xfconf_src_install |
| 102 |
# @DESCRIPTION: |
| 103 |
# Run emake install and install documentation in the DOCS variable |
| 104 |
xfconf_src_install() { |
| 105 |
debug-print-function ${FUNCNAME} "$@" |
| 106 |
emake DESTDIR="${D}" "$@" install || die |
| 107 |
|
| 108 |
if [[ -n ${DOCS[@]} ]]; then |
| 109 |
if [[ $(declare -p DOCS) == "declare -a "* ]]; then |
| 110 |
dodoc "${DOCS[@]}" || die |
| 111 |
else |
| 112 |
dodoc ${DOCS} || die |
| 113 |
fi |
| 114 |
fi |
| 115 |
|
| 116 |
find "${ED}" -name '*.la' -exec rm -f {} + |
| 117 |
|
| 118 |
validate_desktop_entries |
| 119 |
} |
| 120 |
|
| 121 |
# @FUNCTION: xfconf_pkg_preinst |
| 122 |
# @DESCRIPTION: |
| 123 |
# Run gnome2_icon_savelist |
| 124 |
xfconf_pkg_preinst() { |
| 125 |
debug-print-function ${FUNCNAME} "$@" |
| 126 |
gnome2_icon_savelist |
| 127 |
} |
| 128 |
|
| 129 |
# @FUNCTION: xfconf_pkg_postinst |
| 130 |
# @DESCRIPTION: |
| 131 |
# Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 132 |
xfconf_pkg_postinst() { |
| 133 |
debug-print-function ${FUNCNAME} "$@" |
| 134 |
fdo-mime_desktop_database_update |
| 135 |
fdo-mime_mime_database_update |
| 136 |
gnome2_icon_cache_update |
| 137 |
} |
| 138 |
|
| 139 |
# @FUNCTION: xfconf_pkg_postrm |
| 140 |
# @DESCRIPTION: |
| 141 |
# Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 142 |
xfconf_pkg_postrm() { |
| 143 |
debug-print-function ${FUNCNAME} "$@" |
| 144 |
fdo-mime_desktop_database_update |
| 145 |
fdo-mime_mime_database_update |
| 146 |
gnome2_icon_cache_update |
| 147 |
} |