| 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.53 2003/10/19 11:50:36 lanius Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.58 2004/04/02 10:22:50 mcummings 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 | newdepend ">=dev-lang/perl-5.8.0-r12" |
19 | newdepend ">=dev-lang/perl-5.8.0-r12" |
| 19 | SRC_PREP="no" |
20 | SRC_PREP="no" |
|
|
21 | SRC_TEST="skip" |
| 20 | |
22 | |
|
|
23 | PERL_VERSION="" |
|
|
24 | SITE_ARCH="" |
| 21 | SITE_LIB="" |
25 | SITE_LIB="" |
| 22 | ARCH_LIB="" |
26 | ARCH_LIB="" |
| 23 | POD_DIR="" |
27 | POD_DIR="" |
| 24 | |
28 | MMSIXELEVEN="" |
| 25 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
| 26 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION gt "6.11" )'` |
|
|
| 27 | |
29 | |
| 28 | perl-module_src_prep() { |
30 | perl-module_src_prep() { |
| 29 | |
|
|
| 30 | SRC_PREP="yes" |
31 | SRC_PREP="yes" |
| 31 | if [ "${style}" == "builder" ]; then |
32 | if [ "${style}" == "builder" ]; then |
| 32 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
33 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
| 33 | else |
34 | else |
| 34 | if [ "${MMSIXELEVEN}" ]; then |
35 | if [ "${MMSIXELEVEN}" ]; then |
| … | |
… | |
| 47 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
48 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 48 | if [ "${style}" != "builder" ]; then |
49 | if [ "${style}" != "builder" ]; then |
| 49 | make ${mymake} || die "compilation failed" |
50 | make ${mymake} || die "compilation failed" |
| 50 | fi |
51 | fi |
| 51 | |
52 | |
|
|
53 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
54 | perl-module_src_test || die "test failed" |
|
|
55 | SRC_TEST="done" |
|
|
56 | fi |
| 52 | } |
57 | } |
| 53 | |
58 | |
| 54 | perl-module_src_test() { |
59 | perl-module_src_test() { |
| 55 | if [ "${style}" == "builder" ]; then |
60 | if [ "${style}" == "builder" ]; then |
| 56 | perl ${S}/Build test |
61 | perl ${S}/Build test |
| … | |
… | |
| 64 | |
69 | |
| 65 | perlinfo |
70 | perlinfo |
| 66 | dodir ${POD_DIR} |
71 | dodir ${POD_DIR} |
| 67 | |
72 | |
| 68 | test -z ${mytargets} && mytargets="install" |
73 | test -z ${mytargets} && mytargets="install" |
| 69 | eval `perl '-V:installsitearch'` |
|
|
| 70 | SITE_ARCH=${installsitearch} |
|
|
| 71 | eval `perl '-V:installarchlib'` |
|
|
| 72 | ARCH_LIB=${installarchlib} |
|
|
| 73 | |
74 | |
| 74 | if [ "${style}" == "builder" ]; then |
75 | if [ "${style}" == "builder" ]; then |
| 75 | perl ${S}/Build install |
76 | perl ${S}/Build install |
| 76 | else |
77 | else |
| 77 | if [ "${MMSIXELEVEN}" ]; then |
78 | if [ "${MMSIXELEVEN}" ]; then |
| … | |
… | |
| 162 | |
163 | |
| 163 | perlinfo() { |
164 | perlinfo() { |
| 164 | |
165 | |
| 165 | if [ -f /usr/bin/perl ] |
166 | if [ -f /usr/bin/perl ] |
| 166 | then |
167 | then |
| 167 | eval `perl '-V:installarchlib'` |
|
|
| 168 | eval `perl '-V:installsitearch'` |
|
|
| 169 | ARCH_LIB=${installarchlib} |
|
|
| 170 | SITE_LIB=${installsitearch} |
|
|
| 171 | |
|
|
| 172 | eval `perl '-V:version'` |
|
|
| 173 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
168 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 174 | fi |
169 | fi |
|
|
170 | eval `perl '-V:version'` |
|
|
171 | PERL_VERSION=${version} |
|
|
172 | eval `perl '-V:installsitearch'` |
|
|
173 | SITE_ARCH=${installsitearch} |
|
|
174 | eval `perl '-V:installarchlib'` |
|
|
175 | ARCH_LIB=${installarchlib} |
|
|
176 | eval `perl '-V:installarchlib'` |
|
|
177 | ARCH_LIB=${installarchlib} |
|
|
178 | eval `perl '-V:installsitearch'` |
|
|
179 | SITE_LIB=${installsitearch} |
|
|
180 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
181 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` |
| 175 | |
182 | |
| 176 | } |
183 | } |
| 177 | |
184 | |
| 178 | updatepod() { |
185 | updatepod() { |
| 179 | perlinfo |
186 | perlinfo |