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