diff options
author | 2004-12-09 14:20:13 +0000 | |
---|---|---|
committer | 2004-12-09 14:20:13 +0000 | |
commit | 6eb0172078f9ef047433d1c5abe3e11b08b6dfba (patch) | |
tree | 4bb8c5c04c15c16319fde9fe5a17326073e487ed /eclass | |
parent | Stable on sparc wrt #71760, fixed the whole sparc mess too (Manifest recommit) (diff) | |
download | gentoo-2-6eb0172078f9ef047433d1c5abe3e11b08b6dfba.tar.gz gentoo-2-6eb0172078f9ef047433d1c5abe3e11b08b6dfba.tar.bz2 gentoo-2-6eb0172078f9ef047433d1c5abe3e11b08b6dfba.zip |
add warning about live cvs ebuilds
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index e609f97c348b..c17bbc2f5d5e 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.35 2004/11/17 15:40:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.36 2004/12/09 14:20:13 vapier Exp $ # # Author: vapier@gentoo.org @@ -53,11 +53,16 @@ case ${ECVS_STATE} in esac enlightenment_warning_msg() { - if [ "${PV/200}" != "${PV}" ] ; then + if [[ ${PV/200} != ${PV} ]] ; then ewarn "Please do not contact the E team about bugs in Gentoo." ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." ewarn "Remember, this stuff is CVS only code so dont cry when" ewarn "I break you :)." + elif [[ ${PV/9999} != ${PV} ] ; then + eerror "This is a LIVE CVS ebuild." + eerror "That means there are NO promises it will work." + eerror "If it fails to build, FIX THE CODE YOURSELF" + eerror "before reporting any issues." fi } |