| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.98 2006/06/24 21:54:02 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.99 2006/07/08 16:46:19 mcummings Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # Maintained by the Perl herd <perl@gentoo.org> |
6 | # Maintained by the Perl herd <perl@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # The perl-module eclass is designed to allow easier installation of perl |
8 | # The perl-module eclass is designed to allow easier installation of perl |
| … | |
… | |
| 79 | # overriding, use it; otherwise use the Makefile.PL; otherwise return (maybe we |
79 | # overriding, use it; otherwise use the Makefile.PL; otherwise return (maybe we |
| 80 | # want all the functionality of the perl-module eclass without needing to |
80 | # want all the functionality of the perl-module eclass without needing to |
| 81 | # compile??). |
81 | # compile??). |
| 82 | |
82 | |
| 83 | |
83 | |
| 84 | IUSE="minimal" |
84 | IUSE="perl minimal" |
| 85 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
85 | DEPEND="perl? ( dev-lang/perl )" |
| 86 | RDEPEND="!minimal? ( ${DEPEND} )" |
86 | RDEPEND="!minimal? ( ${DEPEND} )" |
| 87 | SRC_PREP="no" |
87 | SRC_PREP="no" |
| 88 | SRC_TEST="skip" |
88 | SRC_TEST="skip" |
| 89 | PREFER_BUILDPL="yes" |
89 | PREFER_BUILDPL="yes" |
| 90 | |
90 | |