| 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.8 2002/05/06 14:34:55 seemant Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.22 2002/09/14 21:32:20 mcummings 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 |
|
|
| 10 | inherit perl-post |
9 | inherit perl-post |
| 11 | |
10 | |
| 12 | ECLASS=base |
11 | ECLASS=perl-module |
|
|
12 | INHERITED="$INHERITED $ECLASS" |
|
|
13 | |
| 13 | EXPORT_FUNCTIONS src_compile src_install src_test |
14 | EXPORT_FUNCTIONS src_compile src_install src_test |
| 14 | |
15 | |
| 15 | newdepend ">=sys-devel/perl-5" |
16 | eval `perl '-V:version'` |
|
|
17 | if [ ${version} == '5.6.1' ]; |
|
|
18 | then |
|
|
19 | DEPEND="${DEPEND} >=sys-devel/perl-5 \ |
|
|
20 | dev-perl/ExtUtils-MakeMaker" |
|
|
21 | else |
|
|
22 | DEPEND="${DEPEND} >=sys-devel/perl-5" |
|
|
23 | fi |
| 16 | |
24 | |
| 17 | base_src_compile() { |
|
|
| 18 | |
25 | |
|
|
26 | SRC_PREP="no" |
|
|
27 | |
|
|
28 | perl-module_src_prep() { |
|
|
29 | |
|
|
30 | SRC_PREP="yes" |
| 19 | perl Makefile.PL ${myconf} |
31 | perl Makefile.PL ${myconf} \ |
|
|
32 | PREFIX=${D}/usr |
|
|
33 | } |
|
|
34 | |
|
|
35 | perl-module_src_compile() { |
|
|
36 | |
|
|
37 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 20 | make ${mymake} || die "compilation failed" |
38 | make ${mymake} || die "compilation failed" |
| 21 | } |
39 | } |
| 22 | |
40 | |
| 23 | base_src_test() { |
41 | perl-module_src_test() { |
| 24 | |
42 | make test |
| 25 | make test || die |
|
|
| 26 | } |
43 | } |
| 27 | |
44 | |
| 28 | base_src_install() { |
45 | perl-module_src_install() { |
| 29 | |
46 | |
|
|
47 | perl-post_perlinfo |
| 30 | dodir ${POD_DIR} |
48 | dodir ${POD_DIR} |
| 31 | |
49 | |
|
|
50 | test -z ${mytargets} && mytargets="install" |
|
|
51 | |
| 32 | make \ |
52 | make \ |
| 33 | PREFIX=${D}/usr \ |
53 | PREFIX=${D}/usr \ |
| 34 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
54 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 35 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
55 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 36 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
56 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| 37 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
57 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
| 38 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
58 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
| 39 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
59 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
| 40 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
60 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 41 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
61 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
| 42 | ${myinst} \ |
62 | ${myinst} \ |
| 43 | install || die |
63 | ${mytargets} || die |
| 44 | |
64 | |
| 45 | sed -e "s:${D}::g" \ |
65 | |
|
|
66 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
67 | then |
|
|
68 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
69 | sed -e "s:${D}::g" ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
70 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
71 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 46 | ${D}/${ARCH_LIB}/perllocal.pod \ |
72 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 47 | > ${D}/${POD_DIR}/${P}.pod |
73 | fi |
| 48 | |
74 | |
|
|
75 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
76 | then |
|
|
77 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
78 | sed -e "s:${D}::g" ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
79 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
80 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 49 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
81 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
82 | fi |
| 50 | |
83 | |
| 51 | dodoc Change* MANIFEST README* ${mydoc} |
84 | dodoc Change* MANIFEST* README* ${mydoc} |
| 52 | } |
85 | } |