| 1 |
ssuominen |
1.1 |
# Copyright 1999-2009 Gentoo Foundation
|
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
ssuominen |
1.27 |
# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.26 2011/04/09 17:58:05 ssuominen Exp $
|
| 4 |
ssuominen |
1.1 |
|
| 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 set "yes"
|
| 15 |
|
|
|
| 16 |
|
|
# @ECLASS-VARIABLE: EINTLTOOLIZE
|
| 17 |
|
|
# @DESCRIPTION:
|
| 18 |
|
|
# Run intltoolize --force --copy --automake if set "yes"
|
| 19 |
|
|
|
| 20 |
|
|
# @ECLASS-VARIABLE: DOCS
|
| 21 |
|
|
# @DESCRIPTION:
|
| 22 |
|
|
# Define documentation to install
|
| 23 |
|
|
|
| 24 |
|
|
# @ECLASS-VARIABLE: PATCHES
|
| 25 |
|
|
# @DESCRIPTION:
|
| 26 |
|
|
# Define patches to apply
|
| 27 |
|
|
|
| 28 |
|
|
# @ECLASS-VARIABLE: XFCONF
|
| 29 |
|
|
# @DESCRIPTION:
|
| 30 |
|
|
# Define options for econf
|
| 31 |
|
|
|
| 32 |
ssuominen |
1.18 |
inherit autotools base eutils fdo-mime gnome2-utils libtool
|
| 33 |
ssuominen |
1.1 |
|
| 34 |
|
|
if [[ "${EINTLTOOLIZE}" == "yes" ]]; then
|
| 35 |
|
|
_xfce4_intltool="dev-util/intltool"
|
| 36 |
|
|
fi
|
| 37 |
|
|
|
| 38 |
|
|
if [[ "${EAUTORECONF}" == "yes" ]]; then
|
| 39 |
ssuominen |
1.24 |
_xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0"
|
| 40 |
ssuominen |
1.1 |
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 |
ssuominen |
1.23 |
4|3) ;;
|
| 51 |
ssuominen |
1.1 |
*) die "Unknown EAPI." ;;
|
| 52 |
|
|
esac
|
| 53 |
ssuominen |
1.23 |
|
| 54 |
|
|
EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm
|
| 55 |
ssuominen |
1.1 |
|
| 56 |
ssuominen |
1.11 |
# @FUNCTION: xfconf_use_debug
|
| 57 |
ssuominen |
1.14 |
# @DESCRIPTION:
|
| 58 |
ssuominen |
1.25 |
# If IUSE has debug, return --enable-debug=minimum.
|
| 59 |
|
|
# If USE debug is enabled, return --enable-debug which is same as --enable-debug=yes.
|
| 60 |
|
|
# If USE debug is enabled and XFCONF_FULL_DEBUG variable is set, return --enable-debug=full.
|
| 61 |
ssuominen |
1.11 |
xfconf_use_debug() {
|
| 62 |
ssuominen |
1.12 |
if has debug ${IUSE}; then
|
| 63 |
|
|
if use debug; then
|
| 64 |
ssuominen |
1.13 |
if [[ -n $XFCONF_FULL_DEBUG ]]; then
|
| 65 |
ssuominen |
1.12 |
echo "--enable-debug=full"
|
| 66 |
|
|
else
|
| 67 |
|
|
echo "--enable-debug"
|
| 68 |
|
|
fi
|
| 69 |
ssuominen |
1.11 |
else
|
| 70 |
ssuominen |
1.25 |
echo "--enable-debug=minimum"
|
| 71 |
ssuominen |
1.11 |
fi
|
| 72 |
|
|
fi
|
| 73 |
|
|
}
|
| 74 |
|
|
|
| 75 |
ssuominen |
1.1 |
# @FUNCTION: xfconf_src_prepare
|
| 76 |
|
|
# @DESCRIPTION:
|
| 77 |
|
|
# Run base_src_util autopatch and eautoreconf or elibtoolize
|
| 78 |
|
|
xfconf_src_prepare() {
|
| 79 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@"
|
| 80 |
scarabeus |
1.4 |
base_src_prepare
|
| 81 |
ssuominen |
1.1 |
|
| 82 |
|
|
if [[ "${EINTLTOOLIZE}" == "yes" ]]; then
|
| 83 |
ssuominen |
1.22 |
intltoolize --force --copy --automake || die
|
| 84 |
ssuominen |
1.1 |
fi
|
| 85 |
|
|
|
| 86 |
|
|
if [[ "${EAUTORECONF}" == "yes" ]]; then
|
| 87 |
darkside |
1.8 |
AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf
|
| 88 |
ssuominen |
1.1 |
else
|
| 89 |
|
|
elibtoolize
|
| 90 |
|
|
fi
|
| 91 |
|
|
}
|
| 92 |
|
|
|
| 93 |
|
|
# @FUNCTION: xfconf_src_configure
|
| 94 |
|
|
# @DESCRIPTION:
|
| 95 |
ssuominen |
1.20 |
# Run econf with opts in XFCONF array
|
| 96 |
ssuominen |
1.1 |
xfconf_src_configure() {
|
| 97 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@"
|
| 98 |
ssuominen |
1.19 |
econf ${XFCONF[@]}
|
| 99 |
ssuominen |
1.1 |
}
|
| 100 |
|
|
|
| 101 |
|
|
# @FUNCTION: xfconf_src_install
|
| 102 |
|
|
# @DESCRIPTION:
|
| 103 |
|
|
# Run emake install and install documentation in DOCS variable
|
| 104 |
|
|
xfconf_src_install() {
|
| 105 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@"
|
| 106 |
ssuominen |
1.22 |
emake DESTDIR="${D}" "$@" install || die
|
| 107 |
ssuominen |
1.1 |
|
| 108 |
|
|
if [[ -n ${DOCS} ]]; then
|
| 109 |
ssuominen |
1.22 |
dodoc ${DOCS} || die
|
| 110 |
ssuominen |
1.1 |
fi
|
| 111 |
ssuominen |
1.17 |
|
| 112 |
|
|
find "${ED}" -name '*.la' -exec rm -f {} +
|
| 113 |
ssuominen |
1.18 |
|
| 114 |
|
|
validate_desktop_entries
|
| 115 |
ssuominen |
1.1 |
}
|
| 116 |
|
|
|
| 117 |
|
|
# @FUNCTION: xfconf_pkg_preinst
|
| 118 |
|
|
# @DESCRIPTION:
|
| 119 |
|
|
# Run gnome2_icon_savelist
|
| 120 |
|
|
xfconf_pkg_preinst() {
|
| 121 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@"
|
| 122 |
ssuominen |
1.1 |
gnome2_icon_savelist
|
| 123 |
|
|
}
|
| 124 |
|
|
|
| 125 |
|
|
# @FUNCTION: xfconf_pkg_postinst
|
| 126 |
|
|
# @DESCRIPTION:
|
| 127 |
|
|
# Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update
|
| 128 |
|
|
xfconf_pkg_postinst() {
|
| 129 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@"
|
| 130 |
ssuominen |
1.1 |
fdo-mime_desktop_database_update
|
| 131 |
|
|
fdo-mime_mime_database_update
|
| 132 |
|
|
gnome2_icon_cache_update
|
| 133 |
|
|
}
|
| 134 |
|
|
|
| 135 |
|
|
# @FUNCTION: xfconf_pkg_postrm
|
| 136 |
|
|
# @DESCRIPTION:
|
| 137 |
|
|
# Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update
|
| 138 |
|
|
xfconf_pkg_postrm() {
|
| 139 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@"
|
| 140 |
ssuominen |
1.1 |
fdo-mime_desktop_database_update
|
| 141 |
|
|
fdo-mime_mime_database_update
|
| 142 |
|
|
gnome2_icon_cache_update
|
| 143 |
|
|
}
|