| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 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 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.35 2003/05/30 08:13:44 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.48 2003/07/25 21:08:44 rac Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # The perl-module eclass is designed to allow easier installation of perl |
7 | # The perl-module eclass is designed to allow easier installation of perl |
| 8 | # modules, and their incorporation into the Gentoo Linux system. |
8 | # modules, and their incorporation into the Gentoo Linux system. |
| 9 | |
9 | |
| 10 | ECLASS=perl-module |
10 | ECLASS=perl-module |
| 11 | INHERITED="${INHERITED} ${ECLASS}" |
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 12 | |
12 | |
| 13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 14 | src_compile src_install src_test |
14 | src_compile src_install src_test \ |
|
|
15 | perlinfo updatepod |
| 15 | |
16 | |
| 16 | eval `perl '-V:version'` |
17 | eval `perl '-V:version'` |
| 17 | DEPEND="dev-lang/perl |
18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
| 18 | >=dev-perl/ExtUtils-MakeMaker-6.05-r1 |
|
|
| 19 | ${DEPEND}" |
|
|
| 20 | SRC_PREP="no" |
19 | SRC_PREP="no" |
| 21 | |
20 | |
| 22 | SITE_LIB="" |
21 | SITE_LIB="" |
| 23 | ARCH_LIB="" |
22 | ARCH_LIB="" |
| 24 | POD_DIR="" |
23 | POD_DIR="" |
| 25 | |
24 | |
| 26 | perl-module_src_prep() { |
25 | perl-module_src_prep() { |
| 27 | |
26 | |
| 28 | SRC_PREP="yes" |
27 | SRC_PREP="yes" |
| 29 | perl Makefile.PL ${myconf} \ |
28 | if [ "${style}" == "builder" ]; then |
|
|
29 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
30 | else |
|
|
31 | perl Makefile.PL INSTALLDIRS=vendor ${myconf} \ |
| 30 | PREFIX=${D}/usr |
32 | PREFIX=${D}/usr |
|
|
33 | fi |
|
|
34 | |
| 31 | } |
35 | } |
| 32 | |
36 | |
| 33 | perl-module_src_compile() { |
37 | perl-module_src_compile() { |
| 34 | |
38 | |
| 35 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
39 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
40 | if [ "${style}" != "builder" ]; then |
| 36 | make ${mymake} || die "compilation failed" |
41 | make ${mymake} || die "compilation failed" |
|
|
42 | fi |
|
|
43 | |
| 37 | } |
44 | } |
| 38 | |
45 | |
| 39 | perl-module_src_test() { |
46 | perl-module_src_test() { |
|
|
47 | if [ "${style}" == "builder" ]; then |
|
|
48 | perl ${S}/Build test |
|
|
49 | else |
| 40 | make test |
50 | make test |
|
|
51 | fi |
|
|
52 | |
| 41 | } |
53 | } |
| 42 | |
54 | |
| 43 | perl-module_src_install() { |
55 | perl-module_src_install() { |
| 44 | |
56 | |
| 45 | perlinfo |
57 | perlinfo |
| … | |
… | |
| 49 | eval `perl '-V:installsitearch'` |
61 | eval `perl '-V:installsitearch'` |
| 50 | SITE_ARCH=${installsitearch} |
62 | SITE_ARCH=${installsitearch} |
| 51 | eval `perl '-V:installarchlib'` |
63 | eval `perl '-V:installarchlib'` |
| 52 | ARCH_LIB=${installarchlib} |
64 | ARCH_LIB=${installarchlib} |
| 53 | |
65 | |
| 54 | |
66 | if [ "${style}" == "builder" ]; then |
|
|
67 | perl ${S}/Build install |
|
|
68 | else |
| 55 | make \ |
69 | make \ |
| 56 | PREFIX=${D}/usr \ |
70 | PREFIX=${D}/usr \ |
| 57 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
71 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 58 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
72 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 59 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
73 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| … | |
… | |
| 72 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
86 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
| 73 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
87 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
| 74 | INSTALLSCRIPT=${D}/usr/bin \ |
88 | INSTALLSCRIPT=${D}/usr/bin \ |
| 75 | ${myinst} \ |
89 | ${myinst} \ |
| 76 | ${mytargets} || die |
90 | ${mytargets} || die |
| 77 | |
91 | fi |
| 78 | |
92 | |
| 79 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
93 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 80 | then |
94 | then |
| 81 | touch ${D}/${POD_DIR}/${P}.pod |
95 | touch ${D}/${POD_DIR}/${P}.pod |
| 82 | sed -e "s:${D}::g" \ |
96 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 93 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
107 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 94 | touch ${D}/${POD_DIR}/${P}.pod.site |
108 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 95 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
109 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 96 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
110 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 97 | fi |
111 | fi |
|
|
112 | |
|
|
113 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
114 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
115 | done |
| 98 | |
116 | |
| 99 | dodoc Change* MANIFEST* README* ${mydoc} |
117 | dodoc Change* MANIFEST* README* ${mydoc} |
| 100 | } |
118 | } |
| 101 | |
119 | |
| 102 | |
120 | |
| … | |
… | |
| 152 | done |
170 | done |
| 153 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
171 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 154 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
172 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 155 | rm -f ${FILE} |
173 | rm -f ${FILE} |
| 156 | done |
174 | done |
| 157 | |
|
|
| 158 | #cat ${POD_DIR}/*.pod.arch >> ${ARCH_LIB}/perllocal.pod |
|
|
| 159 | #cat ${POD_DIR}/*.pod.site >> ${SITE_LIB}/perllocal.pod |
|
|
| 160 | #rm -f ${POD_DIR}/*.pod.site |
|
|
| 161 | #rm -f ${POD_DIR}/*.pod.site |
|
|
| 162 | fi |
175 | fi |
| 163 | } |
176 | } |