diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-21 17:43:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-21 17:43:08 +0000 |
commit | 2d0e995e7bcd33d78c5388231fd4c64cc33f33a9 (patch) | |
tree | 07b39cd7a42e7930a273aa64888967e5f168fa7e /eclass/xfconf.eclass | |
parent | Version bump <http://my.opera.com/desktopteam/blog/2009/09/21/unite-applicati... (diff) | |
download | gentoo-2-2d0e995e7bcd33d78c5388231fd4c64cc33f33a9.tar.gz gentoo-2-2d0e995e7bcd33d78c5388231fd4c64cc33f33a9.tar.bz2 gentoo-2-2d0e995e7bcd33d78c5388231fd4c64cc33f33a9.zip |
Rename EXPF variable to XFCONF_EXPF per -dev ML discussion.
Diffstat (limited to 'eclass/xfconf.eclass')
-rw-r--r-- | eclass/xfconf.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/xfconf.eclass b/eclass/xfconf.eclass index 5fe431519ab2..b6339e098836 100644 --- a/eclass/xfconf.eclass +++ b/eclass/xfconf.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.2 2009/08/02 10:35:53 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.3 2009/09/21 17:43:08 ssuominen Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -54,13 +54,13 @@ DEPEND="${_xfce4_intltool} unset _xfce4_intltool unset _xfce4_m4 -EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" +XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" case ${EAPI:-0} in - 2) EXPF="${EXPF} src_prepare src_configure" ;; + 2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; 1|0) ;; *) die "Unknown EAPI." ;; esac -EXPORT_FUNCTIONS ${EXPF} +EXPORT_FUNCTIONS ${XFCONF_EXPF} # @FUNCTION: xfconf_src_unpack # @DESCRIPTION: @@ -68,7 +68,7 @@ EXPORT_FUNCTIONS ${EXPF} xfconf_src_unpack() { unpack ${A} cd "${S}" - has src_prepare ${EXPF} || xfconf_src_prepare + has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare } # @FUNCTION: xfconf_src_prepare @@ -99,7 +99,7 @@ xfconf_src_configure() { # @DESCRIPTION: # Run econf with opts in XFCONF variable xfconf_src_compile() { - has src_configure ${EXPF} || xfconf_src_configure + has src_configure ${XFCONF_EXPF} || xfconf_src_configure emake || die "emake failed" } |