| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.42 2003/06/18 14:16:22 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.60 2004/05/01 22:03:12 rac Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
|
|
6 | # Maintained by the Perl herd <perl@gentoo.org> |
| 6 | # |
7 | # |
| 7 | # The perl-module eclass is designed to allow easier installation of perl |
8 | # The perl-module eclass is designed to allow easier installation of perl |
| 8 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 9 | |
10 | |
| 10 | ECLASS=perl-module |
11 | ECLASS=perl-module |
| … | |
… | |
| 12 | |
13 | |
| 13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 14 | src_compile src_install src_test \ |
15 | src_compile src_install src_test \ |
| 15 | perlinfo updatepod |
16 | perlinfo updatepod |
| 16 | |
17 | |
| 17 | eval `perl '-V:version'` |
18 | |
| 18 | DEPEND=">=dev-lang/perl-5.6.1-r12 |
19 | DEPEND="dev-lang/perl" |
| 19 | ${DEPEND}" |
|
|
| 20 | SRC_PREP="no" |
20 | SRC_PREP="no" |
|
|
21 | SRC_TEST="skip" |
| 21 | |
22 | |
|
|
23 | PERL_VERSION="" |
|
|
24 | SITE_ARCH="" |
| 22 | SITE_LIB="" |
25 | SITE_LIB="" |
| 23 | ARCH_LIB="" |
26 | ARCH_LIB="" |
| 24 | POD_DIR="" |
27 | POD_DIR="" |
| 25 | |
28 | |
| 26 | perl-module_src_prep() { |
29 | perl-module_src_prep() { |
| 27 | |
30 | |
|
|
31 | perlinfo |
|
|
32 | |
| 28 | SRC_PREP="yes" |
33 | SRC_PREP="yes" |
|
|
34 | if [ "${style}" == "builder" ]; then |
|
|
35 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
36 | else |
| 29 | perl Makefile.PL ${myconf} \ |
37 | perl Makefile.PL ${myconf} \ |
| 30 | PREFIX=${D}/usr |
38 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
39 | fi |
| 31 | } |
40 | } |
| 32 | |
41 | |
| 33 | perl-module_src_compile() { |
42 | perl-module_src_compile() { |
| 34 | |
43 | |
| 35 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
44 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
45 | if [ "${style}" != "builder" ]; then |
| 36 | make ${mymake} || die "compilation failed" |
46 | make ${mymake} || die "compilation failed" |
|
|
47 | fi |
|
|
48 | |
|
|
49 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
50 | perl-module_src_test || die "test failed" |
|
|
51 | SRC_TEST="done" |
|
|
52 | fi |
| 37 | } |
53 | } |
| 38 | |
54 | |
| 39 | perl-module_src_test() { |
55 | perl-module_src_test() { |
|
|
56 | if [ "${style}" == "builder" ]; then |
|
|
57 | perl ${S}/Build test |
|
|
58 | else |
| 40 | make test |
59 | make test |
|
|
60 | fi |
| 41 | } |
61 | } |
| 42 | |
62 | |
| 43 | perl-module_src_install() { |
63 | perl-module_src_install() { |
| 44 | |
64 | |
| 45 | perlinfo |
65 | perlinfo |
| 46 | dodir ${POD_DIR} |
66 | dodir ${POD_DIR} |
| 47 | |
67 | |
| 48 | test -z ${mytargets} && mytargets="install" |
68 | test -z ${mytargets} && mytargets="install" |
| 49 | eval `perl '-V:installsitearch'` |
|
|
| 50 | SITE_ARCH=${installsitearch} |
|
|
| 51 | eval `perl '-V:installarchlib'` |
|
|
| 52 | ARCH_LIB=${installarchlib} |
|
|
| 53 | |
69 | |
| 54 | |
70 | if [ "${style}" == "builder" ]; then |
| 55 | make \ |
71 | perl ${S}/Build install |
| 56 | PREFIX=${D}/usr \ |
72 | else |
| 57 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
73 | make ${myinst} ${mytargets} || die |
| 58 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
74 | fi |
| 59 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 60 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 61 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 62 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 63 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 64 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 65 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 66 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 67 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 68 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 69 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 70 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 71 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 72 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 73 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 74 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 75 | ${myinst} \ |
|
|
| 76 | ${mytargets} || die |
|
|
| 77 | |
|
|
| 78 | |
75 | |
| 79 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
76 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 80 | then |
77 | then |
| 81 | touch ${D}/${POD_DIR}/${P}.pod |
78 | touch ${D}/${POD_DIR}/${P}.pod |
| 82 | sed -e "s:${D}::g" \ |
79 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 98 | |
95 | |
| 99 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
96 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
| 100 | sed -i -e "s:${D}:/:g" ${FILE} |
97 | sed -i -e "s:${D}:/:g" ${FILE} |
| 101 | done |
98 | done |
| 102 | |
99 | |
| 103 | dodoc Change* MANIFEST* README* ${mydoc} |
100 | for doc in Change* MANIFEST* README*; do |
|
|
101 | [ -s "$doc" ] && dodoc $doc |
|
|
102 | done |
|
|
103 | dodoc ${mydoc} |
| 104 | } |
104 | } |
| 105 | |
105 | |
| 106 | |
106 | |
| 107 | perl-module_pkg_setup() { |
107 | perl-module_pkg_setup() { |
| 108 | |
108 | |
| … | |
… | |
| 132 | |
132 | |
| 133 | perlinfo() { |
133 | perlinfo() { |
| 134 | |
134 | |
| 135 | if [ -f /usr/bin/perl ] |
135 | if [ -f /usr/bin/perl ] |
| 136 | then |
136 | then |
| 137 | eval `perl '-V:installarchlib'` |
|
|
| 138 | eval `perl '-V:installsitearch'` |
|
|
| 139 | ARCH_LIB=${installarchlib} |
|
|
| 140 | SITE_LIB=${installsitearch} |
|
|
| 141 | |
|
|
| 142 | eval `perl '-V:version'` |
|
|
| 143 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
137 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 144 | fi |
138 | fi |
| 145 | |
139 | eval `perl '-V:version'` |
|
|
140 | PERL_VERSION=${version} |
|
|
141 | eval `perl '-V:installsitearch'` |
|
|
142 | SITE_ARCH=${installsitearch} |
|
|
143 | eval `perl '-V:installarchlib'` |
|
|
144 | ARCH_LIB=${installarchlib} |
|
|
145 | eval `perl '-V:installarchlib'` |
|
|
146 | ARCH_LIB=${installarchlib} |
|
|
147 | eval `perl '-V:installsitearch'` |
|
|
148 | SITE_LIB=${installsitearch} |
| 146 | } |
149 | } |
| 147 | |
150 | |
| 148 | updatepod() { |
151 | updatepod() { |
| 149 | perlinfo |
152 | perlinfo |
| 150 | |
153 | |
| … | |
… | |
| 156 | done |
159 | done |
| 157 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
160 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 158 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
161 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 159 | rm -f ${FILE} |
162 | rm -f ${FILE} |
| 160 | done |
163 | done |
| 161 | |
|
|
| 162 | #cat ${POD_DIR}/*.pod.arch >> ${ARCH_LIB}/perllocal.pod |
|
|
| 163 | #cat ${POD_DIR}/*.pod.site >> ${SITE_LIB}/perllocal.pod |
|
|
| 164 | #rm -f ${POD_DIR}/*.pod.site |
|
|
| 165 | #rm -f ${POD_DIR}/*.pod.site |
|
|
| 166 | fi |
164 | fi |
| 167 | } |
165 | } |