| 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.3 2009/09/21 17:43:08 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.4 2010/01/03 19:10:49 scarabeus 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 |
| … | |
… | |
| 73 | |
73 | |
| 74 | # @FUNCTION: xfconf_src_prepare |
74 | # @FUNCTION: xfconf_src_prepare |
| 75 | # @DESCRIPTION: |
75 | # @DESCRIPTION: |
| 76 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
76 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
| 77 | xfconf_src_prepare() { |
77 | xfconf_src_prepare() { |
| 78 | base_src_util autopatch |
78 | base_src_prepare |
| 79 | |
79 | |
| 80 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
80 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
| 81 | intltoolize --force --copy --automake || die "intltoolize failed" |
81 | intltoolize --force --copy --automake || die "intltoolize failed" |
| 82 | fi |
82 | fi |
| 83 | |
83 | |