diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-11-08 07:24:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-11-08 07:24:41 +0000 |
commit | f4d95107808614487ea63206cc2a1f343f558c5b (patch) | |
tree | e915d93481b1440dac49104a0197235203698a16 /eclass | |
parent | stable x86, bug #154176 (diff) | |
download | historical-f4d95107808614487ea63206cc2a1f343f558c5b.tar.gz historical-f4d95107808614487ea63206cc2a1f343f558c5b.tar.bz2 historical-f4d95107808614487ea63206cc2a1f343f558c5b.zip |
allow ebuilds to force autotool regen
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index 099ce7e66943..0aa0b71abd1c 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.67 2006/11/04 10:14:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.68 2006/11/08 07:24:41 vapier Exp $ # # Author: vapier@gentoo.org @@ -44,15 +44,19 @@ if [[ ${PV/9999} != ${PV} ]] ; then fi ECVS_SERVER=${E17_ECVS_SERVER:-${ECVS_SERVER:-${E17_DEFAULT_CVS}}} ECVS_STATE="live" - WANT_AUTOCONF=${E17_WANT_AUTOCONF:-latest} - WANT_AUTOMAKE=${E17_WANT_AUTOMAKE:-latest} - inherit cvs autotools + WANT_AUTOTOOLS="yes" + inherit cvs elif [[ ${PV/.200[3-9][0-1][0-9][0-3][0-9]/} != ${PV} ]] ; then ECVS_STATE="snap" elif [[ ${PV%%.[0-9][0-9][0-9]} != ${PV} ]] ; then ECVS_STATE="snap" EURI_STATE="release" fi +if [[ ${WANT_AUTOTOOLS} == "yes" ]] ; then + WANT_AUTOCONF=${E17_WANT_AUTOCONF:-latest} + WANT_AUTOMAKE=${E17_WANT_AUTOMAKE:-latest} + inherit autotools +fi DESCRIPTION="A DR17 production" HOMEPAGE="http://www.enlightenment.org/" @@ -143,6 +147,8 @@ enlightenment_src_compile() { rm -f ${x} touch ${x} done + elif [[ ${WANT_AUTOTOOLS} == "yes" ]] ; then + eautoreconf fi epunt_cxx elibtoolize |