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.10 2010/03/24 20:13:15 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 |
… | |
… | |
42 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
42 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
43 | _xfce4_intltool="dev-util/intltool" |
43 | _xfce4_intltool="dev-util/intltool" |
44 | fi |
44 | fi |
45 | |
45 | |
46 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
46 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
47 | _xfce4_m4="dev-util/xfce4-dev-tools" |
47 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.7.0" |
48 | fi |
48 | fi |
49 | |
49 | |
50 | RDEPEND="" |
50 | RDEPEND="" |
51 | DEPEND="${_xfce4_intltool} |
51 | DEPEND="${_xfce4_intltool} |
52 | ${_xfce4_m4}" |
52 | ${_xfce4_m4}" |
… | |
… | |
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 | |