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.3 2002/05/05 07:06:40 seemant Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.9 2002/05/06 22:26:36 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 | |
7 | |
8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
9 | . /usr/portage/eclass/inherit.eclass || die |
9 | . /usr/portage/eclass/inherit.eclass || die |
10 | inherit perl-post |
10 | inherit perl-post |
11 | |
11 | |
12 | ECLASS=base |
12 | ECLASS=base |
13 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
13 | EXPORT_FUNCTIONS src_compile src_install src_test |
14 | |
14 | |
15 | newdepend ">=sys-devel/perl-5" |
15 | newdepend ">=sys-devel/perl-5" |
16 | |
16 | |
17 | base_src_compile() { |
17 | base_src_compile() { |
|
|
18 | |
18 | perl Makefile.PL ${myconf} |
19 | perl Makefile.PL ${myconf} |
19 | make || die |
20 | make ${mymake} || die "compilation failed" |
|
|
21 | } |
|
|
22 | |
|
|
23 | base_src_test() { |
|
|
24 | make test |
20 | } |
25 | } |
21 | |
26 | |
22 | base_src_install() { |
27 | base_src_install() { |
|
|
28 | |
|
|
29 | dodir ${POD_DIR} |
23 | |
30 | |
24 | dodir ${POD_DIR} |
31 | test -z ${mytargets} && mytargets="install" |
25 | |
32 | |
26 | make \ |
33 | make \ |
27 | PREFIX=${D}/usr \ |
34 | PREFIX=${D}/usr \ |
28 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
35 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
29 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
36 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
… | |
… | |
31 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
38 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
32 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
39 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
33 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
40 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
34 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
41 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
35 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
42 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
36 | install || die |
43 | ${myinst} \ |
|
|
44 | ${mytargets} || die |
37 | |
45 | |
38 | eval `perl '-V:installarchlib'` |
|
|
39 | sed -e "s:${D}::g" \ |
46 | sed -e "s:${D}::g" \ |
40 | ${D}/${installarchlib}/perllocal.pod \ |
47 | ${D}/${ARCH_LIB}/perllocal.pod \ |
41 | > ${D}/${POD_DIR}/${PF}.pod |
48 | > ${D}/${POD_DIR}/${P}.pod |
42 | |
49 | |
43 | rm -f ${D}/${installarchlib}/perllocal.pod |
50 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
44 | |
51 | |
45 | dodoc ChangeLog MANIFEST NOTES README VERSIONS WARNING ToDo |
52 | dodoc Change* MANIFEST* README* ${mydoc} |
46 | } |
53 | } |