| 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.7 2010/01/23 17:36:34 angelos Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.9 2010/03/22 16:29:27 grobian 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 |
| … | |
… | |
| 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 | |
| 84 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
84 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
|
|
85 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 85 | AT_M4DIR="/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
86 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
| 86 | else |
87 | else |
| 87 | elibtoolize |
88 | elibtoolize |
| 88 | fi |
89 | fi |
| 89 | } |
90 | } |
| 90 | |
91 | |