diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-02-07 00:58:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-02-07 00:58:02 +0000 |
commit | c619cc7e7a06a0107cae3c2ef0b81d3b68de8aa0 (patch) | |
tree | 3c5fdbaab1d093dd0ff60d00ce656396f36caa89 /eclass/enlightenment.eclass | |
parent | fix cross compile and clean up #80698 (diff) | |
download | gentoo-2-c619cc7e7a06a0107cae3c2ef0b81d3b68de8aa0.tar.gz gentoo-2-c619cc7e7a06a0107cae3c2ef0b81d3b68de8aa0.tar.bz2 gentoo-2-c619cc7e7a06a0107cae3c2ef0b81d3b68de8aa0.zip |
style updates
Diffstat (limited to 'eclass/enlightenment.eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index 83298e897aab..9004367270e4 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.40 2005/01/10 19:49:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.41 2005/02/07 00:58:02 vapier Exp $ # # Author: vapier@gentoo.org @@ -14,14 +14,14 @@ EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst ECVS_STATE="release" if [[ ${PV/9999} != ${PV} ]] ; then if [[ -z ${ECVS_MODULE} ]] ; then - ECVS_MODULE="${PN}" + ECVS_MODULE=${PN} if [[ ${CATEGORY/libs} != ${CATEGORY} ]] ; then ECVS_MODULE="e17/libs/${PN}" else ECVS_MODULE="e17/apps/${PN}" fi fi - ECVS_SERVER="${ECVS_SERVER:-cvs.sourceforge.net:/cvsroot/enlightenment}" + ECVS_SERVER=${ECVS_SERVER:-cvs.sourceforge.net:/cvsroot/enlightenment} ECVS_STATE="live" inherit cvs elif [[ ${PV/.200?????/} != ${PV} ]] || [[ ${PV/2003????} != ${PV} ]] ; then @@ -97,7 +97,7 @@ enlightenment_src_unpack() { enlightenment_src_compile() { if [[ ${ECVS_STATE} != "release" ]] ; then [[ ! -z ${EHACKAUTOGEN} ]] && sed -i 's:.*configure.*::' autogen.sh - export WANT_AUTOMAKE="${EAUTOMAKE:-1.8}" + export WANT_AUTOMAKE=${EAUTOMAKE:-1.8} env \ PATH="${T}:${PATH}" \ NOCONFIGURE=yes \ |