| 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.34 2003/03/11 21:26:32 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.62 2004/05/28 20:58:52 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 | #first inherit the pkg_postinst() and pkg_postrm() functions |
11 | ECLASS=perl-module |
| 11 | inherit perl-post |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 12 | |
13 | |
| 13 | ECLASS=perl-module |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 14 | INHERITED="$INHERITED $ECLASS" |
15 | src_compile src_install src_test \ |
|
|
16 | perlinfo updatepod |
| 15 | |
17 | |
| 16 | EXPORT_FUNCTIONS src_compile src_install src_test |
18 | # 2004.05.10 rac |
|
|
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 |
| 17 | |
30 | |
| 18 | eval `perl '-V:version'` |
31 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 19 | DEPEND="dev-lang/perl |
|
|
| 20 | >=dev-perl/ExtUtils-MakeMaker-6.05-r1 |
|
|
| 21 | ${DEPEND}" |
|
|
| 22 | SRC_PREP="no" |
32 | SRC_PREP="no" |
|
|
33 | SRC_TEST="skip" |
|
|
34 | |
|
|
35 | PERL_VERSION="" |
|
|
36 | SITE_ARCH="" |
|
|
37 | SITE_LIB="" |
|
|
38 | ARCH_LIB="" |
|
|
39 | POD_DIR="" |
| 23 | |
40 | |
| 24 | perl-module_src_prep() { |
41 | perl-module_src_prep() { |
| 25 | |
42 | |
|
|
43 | perlinfo |
|
|
44 | |
| 26 | SRC_PREP="yes" |
45 | SRC_PREP="yes" |
|
|
46 | if [ "${style}" == "builder" ]; then |
|
|
47 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
48 | else |
| 27 | perl Makefile.PL ${myconf} \ |
49 | perl Makefile.PL ${myconf} \ |
| 28 | PREFIX=${D}/usr |
50 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
51 | fi |
| 29 | } |
52 | } |
| 30 | |
53 | |
| 31 | perl-module_src_compile() { |
54 | perl-module_src_compile() { |
| 32 | |
55 | |
| 33 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
56 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
57 | if [ "${style}" != "builder" ]; then |
| 34 | make ${mymake} || die "compilation failed" |
58 | make ${mymake} || die "compilation failed" |
|
|
59 | fi |
|
|
60 | |
|
|
61 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
62 | perl-module_src_test || die "test failed" |
|
|
63 | SRC_TEST="done" |
|
|
64 | fi |
| 35 | } |
65 | } |
| 36 | |
66 | |
| 37 | perl-module_src_test() { |
67 | perl-module_src_test() { |
|
|
68 | if [ "${style}" == "builder" ]; then |
|
|
69 | perl ${S}/Build test |
|
|
70 | else |
| 38 | make test |
71 | make test |
|
|
72 | fi |
| 39 | } |
73 | } |
| 40 | |
74 | |
| 41 | perl-module_src_install() { |
75 | perl-module_src_install() { |
| 42 | |
76 | |
| 43 | perl-post_perlinfo |
77 | perlinfo |
| 44 | dodir ${POD_DIR} |
78 | dodir ${POD_DIR} |
| 45 | |
79 | |
| 46 | test -z ${mytargets} && mytargets="install" |
80 | test -z ${mytargets} && mytargets="install" |
| 47 | eval `perl '-V:installsitearch'` |
|
|
| 48 | SITE_ARCH=${installsitearch} |
|
|
| 49 | eval `perl '-V:installarchlib'` |
|
|
| 50 | ARCH_LIB=${installarchlib} |
|
|
| 51 | |
81 | |
| 52 | |
82 | if [ "${style}" == "builder" ]; then |
| 53 | make \ |
83 | perl ${S}/Build install |
| 54 | PREFIX=${D}/usr \ |
84 | else |
| 55 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
85 | make ${myinst} ${mytargets} || die |
| 56 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
86 | fi |
| 57 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 58 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 59 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 60 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 61 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 62 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 63 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 64 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 65 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 66 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 67 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 68 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 69 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 70 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 71 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 72 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 73 | ${myinst} \ |
|
|
| 74 | ${mytargets} || die |
|
|
| 75 | |
|
|
| 76 | |
87 | |
| 77 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
88 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 78 | then |
89 | then |
| 79 | touch ${D}/${POD_DIR}/${P}.pod |
90 | touch ${D}/${POD_DIR}/${P}.pod |
| 80 | sed -e "s:${D}::g" \ |
91 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 92 | touch ${D}/${POD_DIR}/${P}.pod.site |
103 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 93 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
104 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 94 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
105 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 95 | fi |
106 | fi |
| 96 | |
107 | |
|
|
108 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
109 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
110 | done |
|
|
111 | |
| 97 | dodoc Change* MANIFEST* README* ${mydoc} |
112 | for doc in Change* MANIFEST* README*; do |
|
|
113 | [ -s "$doc" ] && dodoc $doc |
|
|
114 | done |
|
|
115 | dodoc ${mydoc} |
| 98 | } |
116 | } |
|
|
117 | |
|
|
118 | |
|
|
119 | perl-module_pkg_setup() { |
|
|
120 | |
|
|
121 | perlinfo |
|
|
122 | } |
|
|
123 | |
|
|
124 | |
|
|
125 | perl-module_pkg_preinst() { |
|
|
126 | |
|
|
127 | perlinfo |
|
|
128 | } |
|
|
129 | |
|
|
130 | perl-module_pkg_postinst() { |
|
|
131 | |
|
|
132 | updatepod |
|
|
133 | } |
|
|
134 | |
|
|
135 | perl-module_pkg_prerm() { |
|
|
136 | |
|
|
137 | updatepod |
|
|
138 | } |
|
|
139 | |
|
|
140 | perl-module_pkg_postrm() { |
|
|
141 | |
|
|
142 | updatepod |
|
|
143 | } |
|
|
144 | |
|
|
145 | perlinfo() { |
|
|
146 | |
|
|
147 | if [ -f /usr/bin/perl ] |
|
|
148 | then |
|
|
149 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
150 | fi |
|
|
151 | eval `perl '-V:version'` |
|
|
152 | PERL_VERSION=${version} |
|
|
153 | eval `perl '-V:installsitearch'` |
|
|
154 | SITE_ARCH=${installsitearch} |
|
|
155 | eval `perl '-V:installarchlib'` |
|
|
156 | ARCH_LIB=${installarchlib} |
|
|
157 | eval `perl '-V:installarchlib'` |
|
|
158 | ARCH_LIB=${installarchlib} |
|
|
159 | eval `perl '-V:installsitearch'` |
|
|
160 | SITE_LIB=${installsitearch} |
|
|
161 | } |
|
|
162 | |
|
|
163 | updatepod() { |
|
|
164 | perlinfo |
|
|
165 | |
|
|
166 | if [ -d "${POD_DIR}" ] |
|
|
167 | then |
|
|
168 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
169 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
170 | rm -f ${FILE} |
|
|
171 | done |
|
|
172 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
173 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
174 | rm -f ${FILE} |
|
|
175 | done |
|
|
176 | fi |
|
|
177 | } |