| 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.48 2003/07/25 21:08:44 rac Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.61 2004/05/10 21:10:50 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 | DEPEND="dev-lang/perl !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 19 | SRC_PREP="no" |
27 | SRC_PREP="no" |
|
|
28 | SRC_TEST="skip" |
| 20 | |
29 | |
|
|
30 | PERL_VERSION="" |
|
|
31 | SITE_ARCH="" |
| 21 | SITE_LIB="" |
32 | SITE_LIB="" |
| 22 | ARCH_LIB="" |
33 | ARCH_LIB="" |
| 23 | POD_DIR="" |
34 | POD_DIR="" |
| 24 | |
35 | |
| 25 | perl-module_src_prep() { |
36 | perl-module_src_prep() { |
| 26 | |
37 | |
|
|
38 | perlinfo |
|
|
39 | |
| 27 | SRC_PREP="yes" |
40 | SRC_PREP="yes" |
| 28 | if [ "${style}" == "builder" ]; then |
41 | if [ "${style}" == "builder" ]; then |
| 29 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
42 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
| 30 | else |
43 | else |
| 31 | perl Makefile.PL INSTALLDIRS=vendor ${myconf} \ |
44 | perl Makefile.PL ${myconf} \ |
| 32 | PREFIX=${D}/usr |
45 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 33 | fi |
46 | fi |
| 34 | |
|
|
| 35 | } |
47 | } |
| 36 | |
48 | |
| 37 | perl-module_src_compile() { |
49 | perl-module_src_compile() { |
| 38 | |
50 | |
| 39 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
51 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 40 | if [ "${style}" != "builder" ]; then |
52 | if [ "${style}" != "builder" ]; then |
| 41 | make ${mymake} || die "compilation failed" |
53 | make ${mymake} || die "compilation failed" |
| 42 | fi |
54 | fi |
| 43 | |
55 | |
|
|
56 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
57 | perl-module_src_test || die "test failed" |
|
|
58 | SRC_TEST="done" |
|
|
59 | fi |
| 44 | } |
60 | } |
| 45 | |
61 | |
| 46 | perl-module_src_test() { |
62 | perl-module_src_test() { |
| 47 | if [ "${style}" == "builder" ]; then |
63 | if [ "${style}" == "builder" ]; then |
| 48 | perl ${S}/Build test |
64 | perl ${S}/Build test |
| 49 | else |
65 | else |
| 50 | make test |
66 | make test |
| 51 | fi |
67 | fi |
| 52 | |
|
|
| 53 | } |
68 | } |
| 54 | |
69 | |
| 55 | perl-module_src_install() { |
70 | perl-module_src_install() { |
| 56 | |
71 | |
| 57 | perlinfo |
72 | perlinfo |
| 58 | dodir ${POD_DIR} |
73 | dodir ${POD_DIR} |
| 59 | |
74 | |
| 60 | test -z ${mytargets} && mytargets="install" |
75 | test -z ${mytargets} && mytargets="install" |
| 61 | eval `perl '-V:installsitearch'` |
|
|
| 62 | SITE_ARCH=${installsitearch} |
|
|
| 63 | eval `perl '-V:installarchlib'` |
|
|
| 64 | ARCH_LIB=${installarchlib} |
|
|
| 65 | |
76 | |
| 66 | if [ "${style}" == "builder" ]; then |
77 | if [ "${style}" == "builder" ]; then |
| 67 | perl ${S}/Build install |
78 | perl ${S}/Build install |
| 68 | else |
79 | else |
| 69 | make \ |
80 | 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 |
81 | fi |
| 92 | |
82 | |
| 93 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
83 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 94 | then |
84 | then |
| 95 | touch ${D}/${POD_DIR}/${P}.pod |
85 | touch ${D}/${POD_DIR}/${P}.pod |
| … | |
… | |
| 112 | |
102 | |
| 113 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
103 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
| 114 | sed -i -e "s:${D}:/:g" ${FILE} |
104 | sed -i -e "s:${D}:/:g" ${FILE} |
| 115 | done |
105 | done |
| 116 | |
106 | |
| 117 | dodoc Change* MANIFEST* README* ${mydoc} |
107 | for doc in Change* MANIFEST* README*; do |
|
|
108 | [ -s "$doc" ] && dodoc $doc |
|
|
109 | done |
|
|
110 | dodoc ${mydoc} |
| 118 | } |
111 | } |
| 119 | |
112 | |
| 120 | |
113 | |
| 121 | perl-module_pkg_setup() { |
114 | perl-module_pkg_setup() { |
| 122 | |
115 | |
| … | |
… | |
| 146 | |
139 | |
| 147 | perlinfo() { |
140 | perlinfo() { |
| 148 | |
141 | |
| 149 | if [ -f /usr/bin/perl ] |
142 | if [ -f /usr/bin/perl ] |
| 150 | then |
143 | 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}" |
144 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 158 | fi |
145 | fi |
| 159 | |
146 | eval `perl '-V:version'` |
|
|
147 | PERL_VERSION=${version} |
|
|
148 | eval `perl '-V:installsitearch'` |
|
|
149 | SITE_ARCH=${installsitearch} |
|
|
150 | eval `perl '-V:installarchlib'` |
|
|
151 | ARCH_LIB=${installarchlib} |
|
|
152 | eval `perl '-V:installarchlib'` |
|
|
153 | ARCH_LIB=${installarchlib} |
|
|
154 | eval `perl '-V:installsitearch'` |
|
|
155 | SITE_LIB=${installsitearch} |
| 160 | } |
156 | } |
| 161 | |
157 | |
| 162 | updatepod() { |
158 | updatepod() { |
| 163 | perlinfo |
159 | perlinfo |
| 164 | |
160 | |