| 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.33 2011/05/01 11:46:49 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 |
| … | |
… | |
| 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 [[ -n $EINTLTOOLIZE ]]; then |
82 | if [[ -n $EINTLTOOLIZE ]]; then |
| 83 | intltoolize --force --copy --automake || die |
83 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
84 | ebegin "Running ${_intltoolize}" |
|
|
85 | ${_intltoolize} || die |
|
|
86 | eend $? |
| 84 | fi |
87 | fi |
| 85 | |
88 | |
| 86 | if [[ -n $EAUTORECONF ]]; then |
89 | if [[ -n $EAUTORECONF ]]; then |
| 87 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
90 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 88 | else |
91 | else |