| 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.4 2010/01/03 19:10:49 scarabeus 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 |
| … | |
… | |
| 35 | MY_P=${P} |
35 | MY_P=${P} |
| 36 | else |
36 | else |
| 37 | S=${WORKDIR}/${MY_P} |
37 | S=${WORKDIR}/${MY_P} |
| 38 | fi |
38 | fi |
| 39 | |
39 | |
| 40 | SRC_URI="mirror://xfce/xfce-${PV}/src/${MY_P}.tar.bz2" |
40 | SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
| 41 | |
41 | |
| 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}" |
| … | |
… | |
| 54 | unset _xfce4_intltool |
54 | unset _xfce4_intltool |
| 55 | unset _xfce4_m4 |
55 | unset _xfce4_m4 |
| 56 | |
56 | |
| 57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
| 58 | case ${EAPI:-0} in |
58 | case ${EAPI:-0} in |
| 59 | 2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
59 | 3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
| 60 | 1|0) ;; |
60 | 1|0) ;; |
| 61 | *) die "Unknown EAPI." ;; |
61 | *) die "Unknown EAPI." ;; |
| 62 | esac |
62 | esac |
| 63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
| 64 | |
64 | |
| … | |
… | |
| 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 | |