| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.29 2011/04/10 18:20:53 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.32 2011/04/30 07:38:34 ssuominen Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: xfconf.eclass |
5 | # @ECLASS: xfconf.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # XFCE maintainers <xfce@gentoo.org> |
7 | # XFCE maintainers <xfce@gentoo.org> |
| 8 | # @BLURB: Default XFCE ebuild layout |
8 | # @BLURB: Default XFCE ebuild layout |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # Default XFCE ebuild layout |
10 | # Default XFCE ebuild layout |
| 11 | |
11 | |
| 12 | # @ECLASS-VARIABLE: EAUTORECONF |
12 | # @ECLASS-VARIABLE: EAUTORECONF |
| 13 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
| 14 | # Run eautoreconf instead of elibtoolize if the variable is set. |
14 | # Run eautoreconf instead of elibtoolize if the variable is set |
| 15 | |
15 | |
| 16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
| 17 | # @DESCRIPTION: |
17 | # @DESCRIPTION: |
| 18 | # Run intltoolize --force --copy --automake if the variable is set. |
18 | # Run intltoolize --force --copy --automake if the variable is set |
| 19 | |
19 | |
| 20 | # @ECLASS-VARIABLE: DOCS |
20 | # @ECLASS-VARIABLE: DOCS |
| 21 | # @DESCRIPTION: |
21 | # @DESCRIPTION: |
| 22 | # This should be an variable defining documentation to install. |
22 | # This should be an array defining documentation to install |
| 23 | |
23 | |
| 24 | # @ECLASS-VARIABLE: PATCHES |
24 | # @ECLASS-VARIABLE: PATCHES |
| 25 | # @DESCRIPTION: |
25 | # @DESCRIPTION: |
| 26 | # This should be an array defining patches to apply. |
26 | # This should be an array defining patches to apply |
| 27 | |
27 | |
| 28 | # @ECLASS-VARIABLE: XFCONF |
28 | # @ECLASS-VARIABLE: XFCONF |
| 29 | # @DESCRIPTION: |
29 | # @DESCRIPTION: |
| 30 | # This should be an array defining arguments for econf. |
30 | # This should be an array defining arguments for econf |
| 31 | |
31 | |
| 32 | inherit autotools base eutils fdo-mime gnome2-utils libtool |
32 | inherit autotools base eutils fdo-mime gnome2-utils libtool |
| 33 | |
33 | |
| 34 | if [[ -n $EINTLTOOLIZE ]]; then |
34 | if [[ -n $EINTLTOOLIZE ]]; then |
| 35 | _xfce4_intltool="dev-util/intltool" |
35 | _xfce4_intltool="dev-util/intltool" |
| … | |
… | |
| 54 | EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
54 | EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
| 55 | |
55 | |
| 56 | # @FUNCTION: xfconf_use_debug |
56 | # @FUNCTION: xfconf_use_debug |
| 57 | # @DESCRIPTION: |
57 | # @DESCRIPTION: |
| 58 | # If IUSE has debug, return --enable-debug=minimum. |
58 | # If IUSE has debug, return --enable-debug=minimum. |
| 59 | # If USE debug is enabled, return --enable-debug which is same as --enable-debug=yes. |
59 | # If USE debug is enabled, return --enable-debug which is the same as --enable-debug=yes. |
| 60 | # If USE debug is enabled and XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
60 | # If USE debug is enabled and the XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
| 61 | xfconf_use_debug() { |
61 | xfconf_use_debug() { |
| 62 | if has debug ${IUSE}; then |
62 | if has debug ${IUSE}; then |
| 63 | if use debug; then |
63 | if use debug; then |
| 64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 65 | echo "--enable-debug=full" |
65 | echo "--enable-debug=full" |
| … | |
… | |
| 72 | fi |
72 | fi |
| 73 | } |
73 | } |
| 74 | |
74 | |
| 75 | # @FUNCTION: xfconf_src_prepare |
75 | # @FUNCTION: xfconf_src_prepare |
| 76 | # @DESCRIPTION: |
76 | # @DESCRIPTION: |
| 77 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
77 | # Run base_src_prepare and eautoreconf or elibtoolize |
| 78 | xfconf_src_prepare() { |
78 | xfconf_src_prepare() { |
| 79 | debug-print-function ${FUNCNAME} "$@" |
79 | debug-print-function ${FUNCNAME} "$@" |
| 80 | base_src_prepare |
80 | base_src_prepare |
| 81 | |
81 | |
| 82 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
82 | if [[ -n $EINTLTOOLIZE ]]; then |
| 83 | intltoolize --force --copy --automake || die |
83 | intltoolize --force --copy --automake || die |
| 84 | fi |
84 | fi |
| 85 | |
85 | |
| 86 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
86 | if [[ -n $EAUTORECONF ]]; then |
| 87 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
87 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 88 | else |
88 | else |
| 89 | elibtoolize |
89 | elibtoolize |
| 90 | fi |
90 | fi |
| 91 | } |
91 | } |
| 92 | |
92 | |
| 93 | # @FUNCTION: xfconf_src_configure |
93 | # @FUNCTION: xfconf_src_configure |
| 94 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 95 | # Run econf with opts in XFCONF array |
95 | # Run econf with opts from the XFCONF array |
| 96 | xfconf_src_configure() { |
96 | xfconf_src_configure() { |
| 97 | debug-print-function ${FUNCNAME} "$@" |
97 | debug-print-function ${FUNCNAME} "$@" |
| 98 | econf ${XFCONF[@]} |
98 | econf "${XFCONF[@]}" |
| 99 | } |
99 | } |
| 100 | |
100 | |
| 101 | # @FUNCTION: xfconf_src_install |
101 | # @FUNCTION: xfconf_src_install |
| 102 | # @DESCRIPTION: |
102 | # @DESCRIPTION: |
| 103 | # Run emake install and install documentation in DOCS variable |
103 | # Run emake install and install documentation in the DOCS variable |
| 104 | xfconf_src_install() { |
104 | xfconf_src_install() { |
| 105 | debug-print-function ${FUNCNAME} "$@" |
105 | debug-print-function ${FUNCNAME} "$@" |
| 106 | emake DESTDIR="${D}" "$@" install || die |
106 | emake DESTDIR="${D}" "$@" install || die |
| 107 | |
107 | |
| 108 | if [[ -n ${DOCS} ]]; then |
108 | if [[ -n ${DOCS[@]} ]]; then |
|
|
109 | if [[ $(declare -p DOCS) == "declare -a "* ]]; then |
|
|
110 | dodoc "${DOCS[@]}" || die |
|
|
111 | else |
| 109 | dodoc ${DOCS} || die |
112 | dodoc ${DOCS} || die |
|
|
113 | fi |
| 110 | fi |
114 | fi |
| 111 | |
115 | |
| 112 | find "${ED}" -name '*.la' -exec rm -f {} + |
116 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 113 | |
117 | |
| 114 | validate_desktop_entries |
118 | validate_desktop_entries |