| 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.32 2011/04/30 07:38:34 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 |
| … | |
… | |
| 67 | echo "--enable-debug" |
67 | echo "--enable-debug" |
| 68 | fi |
68 | fi |
| 69 | else |
69 | else |
| 70 | echo "--enable-debug=minimum" |
70 | echo "--enable-debug=minimum" |
| 71 | fi |
71 | fi |
|
|
72 | else |
|
|
73 | ewarn "${FUNCNAME} called without debug in IUSE" |
| 72 | fi |
74 | fi |
| 73 | } |
75 | } |
| 74 | |
76 | |
| 75 | # @FUNCTION: xfconf_src_prepare |
77 | # @FUNCTION: xfconf_src_prepare |
| 76 | # @DESCRIPTION: |
78 | # @DESCRIPTION: |
| … | |
… | |
| 78 | xfconf_src_prepare() { |
80 | xfconf_src_prepare() { |
| 79 | debug-print-function ${FUNCNAME} "$@" |
81 | debug-print-function ${FUNCNAME} "$@" |
| 80 | base_src_prepare |
82 | base_src_prepare |
| 81 | |
83 | |
| 82 | if [[ -n $EINTLTOOLIZE ]]; then |
84 | if [[ -n $EINTLTOOLIZE ]]; then |
| 83 | intltoolize --force --copy --automake || die |
85 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
86 | ebegin "Running ${_intltoolize}" |
|
|
87 | ${_intltoolize} || die |
|
|
88 | eend $? |
| 84 | fi |
89 | fi |
| 85 | |
90 | |
| 86 | if [[ -n $EAUTORECONF ]]; then |
91 | if [[ -n $EAUTORECONF ]]; then |
| 87 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
92 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 88 | else |
93 | else |
| … | |
… | |
| 98 | econf "${XFCONF[@]}" |
103 | econf "${XFCONF[@]}" |
| 99 | } |
104 | } |
| 100 | |
105 | |
| 101 | # @FUNCTION: xfconf_src_install |
106 | # @FUNCTION: xfconf_src_install |
| 102 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 103 | # Run emake install and install documentation in the DOCS variable |
108 | # Run emake install and install documentation in the DOCS array |
| 104 | xfconf_src_install() { |
109 | xfconf_src_install() { |
| 105 | debug-print-function ${FUNCNAME} "$@" |
110 | debug-print-function ${FUNCNAME} "$@" |
| 106 | emake DESTDIR="${D}" "$@" install || die |
111 | emake DESTDIR="${D}" "$@" install || die |
| 107 | |
112 | |
| 108 | if [[ -n ${DOCS[@]} ]]; then |
113 | [[ -n ${DOCS[@]} ]] && dodoc "${DOCS[@]}" |
| 109 | if [[ $(declare -p DOCS) == "declare -a "* ]]; then |
|
|
| 110 | dodoc "${DOCS[@]}" || die |
|
|
| 111 | else |
|
|
| 112 | dodoc ${DOCS} || die |
|
|
| 113 | fi |
|
|
| 114 | fi |
|
|
| 115 | |
114 | |
| 116 | find "${ED}" -name '*.la' -exec rm -f {} + |
115 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 117 | |
116 | |
| 118 | validate_desktop_entries |
117 | validate_desktop_entries |
| 119 | } |
118 | } |