diff options
author | 2004-05-28 20:58:52 +0000 | |
---|---|---|
committer | 2004-05-28 20:58:52 +0000 | |
commit | 04d95a8f90b698e260912ac872512647a4f45ef1 (patch) | |
tree | 7d43652c3d15e5bd2295cd8c3f94fa135c8249fc /eclass | |
parent | version bump and cleanups (diff) | |
download | historical-04d95a8f90b698e260912ac872512647a4f45ef1.tar.gz historical-04d95a8f90b698e260912ac872512647a4f45ef1.tar.bz2 historical-04d95a8f90b698e260912ac872512647a4f45ef1.zip |
require perl 5.8.2 to get a proper >=6.11 makemaker
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-module.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 4deac206fb55..23f5ba238024 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.61 2004/05/10 21:10:50 rac Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.62 2004/05/28 20:58:52 rac Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -22,8 +22,13 @@ EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ # carries. in the meantime, since we have dumped support for MakeMaker # <6.11 and the associated broken DESTDIR handling, block here to save # people from sandbox trouble. +# +# 2004.05.25 rac +# for the same reasons, make the perl dep >=5.8.2 to get everybody +# with 5.8.0 and its 6.03 makemaker up to a version that can +# understand DESTDIR -DEPEND="dev-lang/perl !<dev-perl/ExtUtils-MakeMaker-6.17" +DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" SRC_PREP="no" SRC_TEST="skip" |