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.23 2002/09/15 13:18:23 mcummings Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.28 2002/10/17 16:18:32 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 | 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-5" |
19 | DEPEND="${DEPEND} >=sys-devel/perl-5 \ |
|
|
20 | =dev-perl/ExtUtils-MakeMaker-6.03-r1" |
|
|
21 | else |
|
|
22 | DEPEND="${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" |
… | |
… | |
48 | dodir ${POD_DIR} |
41 | dodir ${POD_DIR} |
49 | |
42 | |
50 | test -z ${mytargets} && mytargets="install" |
43 | test -z ${mytargets} && mytargets="install" |
51 | |
44 | |
52 | make \ |
45 | make \ |
53 | PREFIX=${D}/usr \ |
46 | PREFIX=${D}/usr \ |
54 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
47 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
55 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
48 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
56 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
49 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
57 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
50 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
58 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
51 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
59 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
52 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
60 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
53 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
61 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
54 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
62 | ${myinst} \ |
55 | ${myinst} \ |
63 | ${mytargets} || die |
56 | ${mytargets} || die |
64 | |
57 | |
65 | |
58 | |
66 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
59 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
67 | then |
60 | then |
68 | touch ${D}/${POD_DIR}/${P}.pod |
61 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
62 | sed -e "s:${D}::g" \ |
69 | 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 |
70 | touch ${D}/${POD_DIR}/${P}.pod.arch |
64 | touch ${D}/${POD_DIR}/${P}.pod.arch |
71 | 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 |
72 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
66 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
73 | fi |
67 | fi |
74 | |
68 | |
75 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
69 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
76 | then |
70 | then |
77 | touch ${D}/${POD_DIR}/${P}.pod |
71 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
72 | sed -e "s:${D}::g" \ |
78 | 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 |
79 | touch ${D}/${POD_DIR}/${P}.pod.site |
74 | touch ${D}/${POD_DIR}/${P}.pod.site |
80 | 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 |
81 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
76 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
82 | fi |
77 | fi |
83 | |
78 | |
84 | dodoc Change* MANIFEST* README* ${mydoc} |
79 | dodoc Change* MANIFEST* README* ${mydoc} |
85 | } |
80 | } |