| 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.16 2002/07/29 17:34:12 seemant 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 |
| … | |
… | |
| 11 | ECLASS=perl-module |
11 | ECLASS=perl-module |
| 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 | newdepend ">=sys-devel/perl-5" |
16 | eval `perl '-V:version'` |
| 17 | |
17 | DEPEND="${DEPEND} |
|
|
18 | sys-devel/perl" |
| 18 | SRC_PREP="no" |
19 | SRC_PREP="no" |
| 19 | |
20 | |
| 20 | perl-module_src_prep() { |
21 | perl-module_src_prep() { |
| 21 | |
22 | |
| 22 | SRC_PREP="yes" |
23 | SRC_PREP="yes" |
| 23 | perl Makefile.PL ${myconf} |
24 | perl Makefile.PL ${myconf} \ |
|
|
25 | PREFIX=${D}/usr |
| 24 | } |
26 | } |
| 25 | |
27 | |
| 26 | perl-module_src_compile() { |
28 | perl-module_src_compile() { |
| 27 | |
29 | |
| 28 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
30 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| … | |
… | |
| 51 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
53 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 52 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
54 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
| 53 | ${myinst} \ |
55 | ${myinst} \ |
| 54 | ${mytargets} || die |
56 | ${mytargets} || die |
| 55 | |
57 | |
|
|
58 | |
|
|
59 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
60 | then |
|
|
61 | touch ${D}/${POD_DIR}/${P}.pod |
| 56 | sed -e "s:${D}::g" \ |
62 | sed -e "s:${D}::g" \ |
|
|
63 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
64 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
65 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 57 | ${D}/${ARCH_LIB}/perllocal.pod \ |
66 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 58 | > ${D}/${POD_DIR}/${P}.pod |
67 | fi |
| 59 | |
68 | |
|
|
69 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
70 | then |
|
|
71 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
72 | sed -e "s:${D}::g" \ |
|
|
73 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
74 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
75 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 60 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
76 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
77 | fi |
| 61 | |
78 | |
| 62 | dodoc Change* MANIFEST* README* ${mydoc} |
79 | dodoc Change* MANIFEST* README* ${mydoc} |
| 63 | } |
80 | } |