| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 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.48 2003/07/25 21:08:44 rac Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.64 2004/08/02 18:45:37 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 | # 2004.05.10 rac |
| 18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
19 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
20 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
21 | # ebuild should block versions of MakeMaker older than the one it |
|
|
22 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
23 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
24 | # people from sandbox trouble. |
|
|
25 | # |
|
|
26 | # 2004.05.25 rac |
|
|
27 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
28 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
29 | # understand DESTDIR |
|
|
30 | |
|
|
31 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 19 | SRC_PREP="no" |
32 | SRC_PREP="no" |
|
|
33 | SRC_TEST="skip" |
| 20 | |
34 | |
|
|
35 | PERL_VERSION="" |
|
|
36 | SITE_ARCH="" |
| 21 | SITE_LIB="" |
37 | SITE_LIB="" |
| 22 | ARCH_LIB="" |
38 | ARCH_LIB="" |
| 23 | POD_DIR="" |
39 | POD_DIR="" |
| 24 | |
40 | |
| 25 | perl-module_src_prep() { |
41 | perl-module_src_prep() { |
| 26 | |
42 | |
|
|
43 | perlinfo |
|
|
44 | |
|
|
45 | export PERL_MM_USE_DEFAULT=1 |
|
|
46 | |
| 27 | SRC_PREP="yes" |
47 | SRC_PREP="yes" |
| 28 | if [ "${style}" == "builder" ]; then |
48 | if [ "${style}" == "builder" ]; then |
| 29 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
49 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
| 30 | else |
50 | else |
| 31 | perl Makefile.PL INSTALLDIRS=vendor ${myconf} \ |
51 | perl Makefile.PL ${myconf} \ |
| 32 | PREFIX=${D}/usr |
52 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 33 | fi |
53 | fi |
| 34 | |
|
|
| 35 | } |
54 | } |
| 36 | |
55 | |
| 37 | perl-module_src_compile() { |
56 | perl-module_src_compile() { |
| 38 | |
57 | |
| 39 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
58 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 40 | if [ "${style}" != "builder" ]; then |
59 | if [ "${style}" != "builder" ]; then |
| 41 | make ${mymake} || die "compilation failed" |
60 | make ${mymake} || die "compilation failed" |
| 42 | fi |
61 | fi |
| 43 | |
62 | |
|
|
63 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
64 | perl-module_src_test || die "test failed" |
|
|
65 | SRC_TEST="done" |
|
|
66 | fi |
| 44 | } |
67 | } |
| 45 | |
68 | |
| 46 | perl-module_src_test() { |
69 | perl-module_src_test() { |
| 47 | if [ "${style}" == "builder" ]; then |
70 | if [ "${style}" == "builder" ]; then |
| 48 | perl ${S}/Build test |
71 | perl ${S}/Build test |
| 49 | else |
72 | else |
| 50 | make test |
73 | make test |
| 51 | fi |
74 | fi |
| 52 | |
|
|
| 53 | } |
75 | } |
| 54 | |
76 | |
| 55 | perl-module_src_install() { |
77 | perl-module_src_install() { |
| 56 | |
78 | |
| 57 | perlinfo |
79 | perlinfo |
| 58 | dodir ${POD_DIR} |
80 | dodir ${POD_DIR} |
| 59 | |
81 | |
| 60 | test -z ${mytargets} && mytargets="install" |
82 | test -z ${mytargets} && mytargets="install" |
| 61 | eval `perl '-V:installsitearch'` |
|
|
| 62 | SITE_ARCH=${installsitearch} |
|
|
| 63 | eval `perl '-V:installarchlib'` |
|
|
| 64 | ARCH_LIB=${installarchlib} |
|
|
| 65 | |
83 | |
| 66 | if [ "${style}" == "builder" ]; then |
84 | if [ "${style}" == "builder" ]; then |
| 67 | perl ${S}/Build install |
85 | perl ${S}/Build install |
| 68 | else |
86 | else |
| 69 | make \ |
87 | make ${myinst} ${mytargets} || die |
| 70 | PREFIX=${D}/usr \ |
|
|
| 71 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 72 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 73 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 74 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 75 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 76 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 77 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 78 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 79 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 80 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 81 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 82 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 83 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 84 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 85 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 86 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 87 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 88 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 89 | ${myinst} \ |
|
|
| 90 | ${mytargets} || die |
|
|
| 91 | fi |
88 | fi |
| 92 | |
89 | |
| 93 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
90 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 94 | then |
91 | then |
| 95 | touch ${D}/${POD_DIR}/${P}.pod |
92 | touch ${D}/${POD_DIR}/${P}.pod |
| … | |
… | |
| 112 | |
109 | |
| 113 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
110 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
| 114 | sed -i -e "s:${D}:/:g" ${FILE} |
111 | sed -i -e "s:${D}:/:g" ${FILE} |
| 115 | done |
112 | done |
| 116 | |
113 | |
| 117 | dodoc Change* MANIFEST* README* ${mydoc} |
114 | for doc in Change* MANIFEST* README*; do |
|
|
115 | [ -s "$doc" ] && dodoc $doc |
|
|
116 | done |
|
|
117 | dodoc ${mydoc} |
| 118 | } |
118 | } |
| 119 | |
119 | |
| 120 | |
120 | |
| 121 | perl-module_pkg_setup() { |
121 | perl-module_pkg_setup() { |
| 122 | |
122 | |
| … | |
… | |
| 146 | |
146 | |
| 147 | perlinfo() { |
147 | perlinfo() { |
| 148 | |
148 | |
| 149 | if [ -f /usr/bin/perl ] |
149 | if [ -f /usr/bin/perl ] |
| 150 | then |
150 | then |
| 151 | eval `perl '-V:installarchlib'` |
|
|
| 152 | eval `perl '-V:installsitearch'` |
|
|
| 153 | ARCH_LIB=${installarchlib} |
|
|
| 154 | SITE_LIB=${installsitearch} |
|
|
| 155 | |
|
|
| 156 | eval `perl '-V:version'` |
|
|
| 157 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
151 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 158 | fi |
152 | fi |
| 159 | |
153 | eval `perl '-V:version'` |
|
|
154 | PERL_VERSION=${version} |
|
|
155 | eval `perl '-V:installsitearch'` |
|
|
156 | SITE_ARCH=${installsitearch} |
|
|
157 | eval `perl '-V:installarchlib'` |
|
|
158 | ARCH_LIB=${installarchlib} |
|
|
159 | eval `perl '-V:installarchlib'` |
|
|
160 | ARCH_LIB=${installarchlib} |
|
|
161 | eval `perl '-V:installsitearch'` |
|
|
162 | SITE_LIB=${installsitearch} |
| 160 | } |
163 | } |
| 161 | |
164 | |
| 162 | updatepod() { |
165 | updatepod() { |
| 163 | perlinfo |
166 | perlinfo |
| 164 | |
167 | |