| 1 | # Copyright 2002 Gentoo Technologies, Inc. |
1 | # Copyright 2002 Gentoo Technologies, Inc. |
| 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 | # Author: Seemant Kulleen <seemant@gentoo.org> |
3 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.2 2002/05/05 07:00:38 seemant Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.3 2002/05/05 07:06:40 seemant Exp $ |
| 5 | # The perl-module eclass is designed to allow easier installation of perl |
5 | # The perl-module eclass is designed to allow easier installation of perl |
| 6 | # modules, and their incorporation into the Gentoo Linux system. |
6 | # modules, and their incorporation into the Gentoo Linux system. |
|
|
7 | |
|
|
8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
|
|
9 | . /usr/portage/eclass/inherit.eclass || die |
|
|
10 | inherit perl-post |
|
|
11 | |
| 7 | ECLASS=base |
12 | ECLASS=base |
| 8 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
13 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 9 | |
14 | |
| 10 | newdepend ">=sys-devel/perl-5" |
15 | newdepend ">=sys-devel/perl-5" |
| 11 | |
16 | |