diff options
author | 2014-10-15 17:51:03 +0000 | |
---|---|---|
committer | 2014-10-15 17:51:03 +0000 | |
commit | 3b7a6438908f97e04cf2c7d31095819cb2ab7929 (patch) | |
tree | ef65abf5cccf2b10c31cef45d81878d9a884a523 /eclass | |
parent | Add upstream metadata. (diff) | |
download | historical-3b7a6438908f97e04cf2c7d31095819cb2ab7929.tar.gz historical-3b7a6438908f97e04cf2c7d31095819cb2ab7929.tar.bz2 historical-3b7a6438908f97e04cf2c7d31095819cb2ab7929.zip |
Allow ebuild to override GENTOO_DEPEND_ON_PERL_SUBSLOT in perl-app.eclass if necessary
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/perl-app.eclass | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 4c8fa219effc..033805e3d761 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1385 2014/10/15 13:44:24 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1386 2014/10/15 17:51:03 axs Exp $ + + 15 Oct 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> perl-app.eclass: + Allow ebuild to override GENTOO_DEPEND_ON_PERL_SUBSLOT in perl-app.eclass if + necessary 15 Oct 2014; Michael Palimaka <kensington@gentoo.org> cmake-utils.eclass: Introduce comment_add_subdirectory function. Make EAPI check more technically diff --git a/eclass/perl-app.eclass b/eclass/perl-app.eclass index 433cbda9f779..a0ce4f01d455 100644 --- a/eclass/perl-app.eclass +++ b/eclass/perl-app.eclass @@ -1,11 +1,12 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.13 2013/12/29 21:39:51 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.14 2014/10/15 17:51:03 axs Exp $ # Author: Michael Cummings <mcummings@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> -GENTOO_DEPEND_ON_PERL_SUBSLOT="no" +# If the ebuild doesn't override this, ensure we do not depend on the perl subslot value +: ${GENTOO_DEPEND_ON_PERL_SUBSLOT:="no"} inherit perl-module case "${EAPI:-0}" in |