diff options
author | Michael Cummings <mcummings@gentoo.org> | 2006-07-08 16:46:19 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2006-07-08 16:46:19 +0000 |
commit | 2bef51215584a9eed0a9f18fe009f36bbdddd91e (patch) | |
tree | c6d56926733eb30940af305a254ded76d74172b1 | |
parent | Added a fix for bug #139469. (diff) | |
download | gentoo-2-2bef51215584a9eed0a9f18fe009f36bbdddd91e.tar.gz gentoo-2-2bef51215584a9eed0a9f18fe009f36bbdddd91e.tar.bz2 gentoo-2-2bef51215584a9eed0a9f18fe009f36bbdddd91e.zip |
Bug 94112. Seems a touch backwards to have a DEP flag of perl? for the Perl
eclass, but the logic is that perl can be an optional dep for a package
inheriting this eclass, in which case the user may not need to have perl
installed. Also cleaned up the dep line since there is no EU::MM ebuild any
more, and any version of dev-lang/perl will suffice these days.
-rw-r--r-- | eclass/perl-module.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 3637627da2d4..f0487700da83 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.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/perl-module.eclass,v 1.98 2006/06/24 21:54:02 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.99 2006/07/08 16:46:19 mcummings Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -81,8 +81,8 @@ EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_com # compile??). -IUSE="minimal" -DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" +IUSE="perl minimal" +DEPEND="perl? ( dev-lang/perl )" RDEPEND="!minimal? ( ${DEPEND} )" SRC_PREP="no" SRC_TEST="skip" |