diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-10-01 13:54:38 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-10-01 13:54:38 +0000 |
commit | 59c21a1dd45215879de844d5db13cd09ddc266bc (patch) | |
tree | 9d652b014281cc1c96b3cc4cf41bcbd2d2d6069e /eclass/inherit.eclass | |
parent | eclasses v3. read the gentoo-dev announcement, and news.txt and howto.* (diff) | |
download | gentoo-2-59c21a1dd45215879de844d5db13cd09ddc266bc.tar.gz gentoo-2-59c21a1dd45215879de844d5db13cd09ddc266bc.tar.bz2 gentoo-2-59c21a1dd45215879de844d5db13cd09ddc266bc.zip |
eclasses v3.1
added debug.eclass and fixed many bugs
Diffstat (limited to 'eclass/inherit.eclass')
-rw-r--r-- | eclass/inherit.eclass | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/eclass/inherit.eclass b/eclass/inherit.eclass index 74cd051737b9..925d7dd22c71 100644 --- a/eclass/inherit.eclass +++ b/eclass/inherit.eclass @@ -1,15 +1,22 @@ -# $Header: /var/cvsroot/gentoo-x86/eclass/inherit.eclass,v 1.4 2001/09/29 12:35:38 danarmak Exp $ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Dan Armak <danarmak@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/eclass/inherit.eclass,v 1.5 2001/10/01 13:54:38 danarmak Exp $ # This eclass provides the inherit() function. In the future it will be placed in ebuild.sh, but for now drobbins # doesn't want to make a new portage just for my testing, so every eclass/ebuild will source this file manually and -# then inherit(). This way whn the tmie comes for this to move into stable ebuild.sh, we can just delete the source lines. +# then inherit(). This way when the tmie comes for this to move into stable ebuild.sh, we can just delete the source lines. ECLASSDIR=/usr/portage/eclass inherit() { while [ "$1" ]; do - source ${ECLASSDIR}/${1}.eclass + location="${ECLASSDIR}/${1}.eclass" + # someday we'll do this the right way. + . ${ECLASSDIR}/debug.eclass + debug-print "inherit: $1 -> $location" + source "$location" shift done -}
\ No newline at end of file +} |