| 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.25 2011/04/09 09:15:51 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.35 2011/06/06 14:38:46 angelos 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 set "yes" |
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 set "yes" |
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 | # Define 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 | # Define 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 | # Define options 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 ! [[ ${MY_P} ]]; then |
|
|
| 35 | MY_P=${P} |
|
|
| 36 | else |
|
|
| 37 | S=${WORKDIR}/${MY_P} |
|
|
| 38 | fi |
|
|
| 39 | |
|
|
| 40 | SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
|
|
| 41 | |
|
|
| 42 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
34 | if [[ -n $EINTLTOOLIZE ]]; then |
| 43 | _xfce4_intltool="dev-util/intltool" |
35 | _xfce4_intltool="dev-util/intltool" |
| 44 | fi |
36 | fi |
| 45 | |
37 | |
| 46 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
38 | if [[ -n $EAUTORECONF ]]; then |
| 47 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
39 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
| 48 | fi |
40 | fi |
| 49 | |
41 | |
| 50 | RDEPEND="" |
42 | RDEPEND="" |
| 51 | DEPEND="${_xfce4_intltool} |
43 | DEPEND="${_xfce4_intltool} |
| … | |
… | |
| 62 | 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 |
| 63 | |
55 | |
| 64 | # @FUNCTION: xfconf_use_debug |
56 | # @FUNCTION: xfconf_use_debug |
| 65 | # @DESCRIPTION: |
57 | # @DESCRIPTION: |
| 66 | # If IUSE has debug, return --enable-debug=minimum. |
58 | # If IUSE has debug, return --enable-debug=minimum. |
| 67 | # 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. |
| 68 | # 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. |
| 69 | xfconf_use_debug() { |
61 | xfconf_use_debug() { |
| 70 | if has debug ${IUSE}; then |
62 | if has debug ${IUSE}; then |
| 71 | if use debug; then |
63 | if use debug; then |
| 72 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 73 | echo "--enable-debug=full" |
65 | echo "--enable-debug=full" |
| … | |
… | |
| 75 | echo "--enable-debug" |
67 | echo "--enable-debug" |
| 76 | fi |
68 | fi |
| 77 | else |
69 | else |
| 78 | echo "--enable-debug=minimum" |
70 | echo "--enable-debug=minimum" |
| 79 | fi |
71 | fi |
|
|
72 | else |
|
|
73 | ewarn "${FUNCNAME} called without debug in IUSE" |
| 80 | fi |
74 | fi |
| 81 | } |
75 | } |
| 82 | |
76 | |
| 83 | # @FUNCTION: xfconf_src_prepare |
77 | # @FUNCTION: xfconf_src_prepare |
| 84 | # @DESCRIPTION: |
78 | # @DESCRIPTION: |
| 85 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
79 | # Run base_src_prepare and eautoreconf or elibtoolize |
| 86 | xfconf_src_prepare() { |
80 | xfconf_src_prepare() { |
| 87 | debug-print-function ${FUNCNAME} "$@" |
81 | debug-print-function ${FUNCNAME} "$@" |
| 88 | base_src_prepare |
82 | base_src_prepare |
| 89 | |
83 | |
| 90 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
84 | if [[ -n $EINTLTOOLIZE ]]; then |
| 91 | intltoolize --force --copy --automake || die |
85 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
86 | ebegin "Running ${_intltoolize}" |
|
|
87 | ${_intltoolize} || die |
|
|
88 | eend $? |
| 92 | fi |
89 | fi |
| 93 | |
90 | |
| 94 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
91 | if [[ -n $EAUTORECONF ]]; then |
| 95 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
92 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 96 | else |
93 | else |
| 97 | elibtoolize |
94 | elibtoolize |
| 98 | fi |
95 | fi |
| 99 | } |
96 | } |
| 100 | |
97 | |
| 101 | # @FUNCTION: xfconf_src_configure |
98 | # @FUNCTION: xfconf_src_configure |
| 102 | # @DESCRIPTION: |
99 | # @DESCRIPTION: |
| 103 | # Run econf with opts in XFCONF array |
100 | # Run econf with opts from the XFCONF array |
| 104 | xfconf_src_configure() { |
101 | xfconf_src_configure() { |
| 105 | debug-print-function ${FUNCNAME} "$@" |
102 | debug-print-function ${FUNCNAME} "$@" |
| 106 | |
|
|
| 107 | # Convert XFCONF to an array, see base.eclass for original code |
|
|
| 108 | if [[ "$(declare -p XFCONF 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
| 109 | XFCONF=( ${XFCONF} ) |
|
|
| 110 | fi |
|
|
| 111 | |
|
|
| 112 | econf ${XFCONF[@]} |
103 | econf "${XFCONF[@]}" |
| 113 | } |
104 | } |
| 114 | |
105 | |
| 115 | # @FUNCTION: xfconf_src_install |
106 | # @FUNCTION: xfconf_src_install |
| 116 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 117 | # Run emake install and install documentation in DOCS variable |
108 | # Run emake install and install documentation in the DOCS array |
| 118 | xfconf_src_install() { |
109 | xfconf_src_install() { |
| 119 | debug-print-function ${FUNCNAME} "$@" |
110 | debug-print-function ${FUNCNAME} "$@" |
| 120 | emake DESTDIR="${D}" "$@" install || die |
111 | emake DESTDIR="${D}" "$@" install || die |
| 121 | |
112 | |
| 122 | if [[ -n ${DOCS} ]]; then |
113 | [[ -n ${DOCS[@]} ]] && dodoc "${DOCS[@]}" |
| 123 | dodoc ${DOCS} || die |
|
|
| 124 | fi |
|
|
| 125 | |
114 | |
| 126 | find "${ED}" -name '*.la' -exec rm -f {} + |
115 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 127 | |
116 | |
| 128 | validate_desktop_entries |
117 | validate_desktop_entries |
| 129 | } |
118 | } |