diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-07-12 15:24:36 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-07-12 15:24:36 +0000 |
commit | 6691dd88aad937d51582817a48d306f236def654 (patch) | |
tree | ba7fc040500ee0713ab4953836c186027b3ce108 /eclass/perl-post.eclass | |
parent | add mirrors for ftp.kde.org, used by kde.org.eclass (diff) | |
download | historical-6691dd88aad937d51582817a48d306f236def654.tar.gz historical-6691dd88aad937d51582817a48d306f236def654.tar.bz2 historical-6691dd88aad937d51582817a48d306f236def654.zip |
add INHERITED variable to all eclasses. this keeps track of what eclasses were inherited. e.g. INHERITED='kde-base kde base'. this will allow drobbins to take eclass mtime changes into account when deciding whether to refresh ebuild cache.
Diffstat (limited to 'eclass/perl-post.eclass')
-rw-r--r-- | eclass/perl-post.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/perl-post.eclass b/eclass/perl-post.eclass index 065afe55cd0c..bd43fc331e48 100644 --- a/eclass/perl-post.eclass +++ b/eclass/perl-post.eclass @@ -1,11 +1,13 @@ # Copyright 2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 # Author: Seemant Kulleen <seemant@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-post.eclass,v 1.4 2002/05/06 14:34:55 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-post.eclass,v 1.5 2002/07/12 15:24:36 danarmak Exp $ # The perl-post eclass is designed to allow the ${installarchdir}/perllocal.pod # file to be updated cleanly after perl and/or perl-modules are installed # or removed. ECLASS=perl +INHERITED="$INHERITED $ECLASS" + EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ perlinfo updatepod |