| 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.81 2006/01/01 01:14:59 swegener 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 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 12 | |
11 | |
| 13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 14 | src_compile src_install src_test \ |
13 | src_compile src_install src_test perlinfo fixlocalpod updatepod |
| 15 | perlinfo updatepod |
|
|
| 16 | |
14 | |
| 17 | eval `perl '-V:version'` |
15 | # 2005.04.28 mcummings |
| 18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
16 | # Mounting problems with src_test functions has forced me to make the |
|
|
17 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
|
|
18 | # is generally necessary. I've left a block to make sure we still need to set |
|
|
19 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
|
|
20 | # as many bug reports as we have lately. |
|
|
21 | |
|
|
22 | # 2004.05.10 rac |
|
|
23 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
24 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
25 | # ebuild should block versions of MakeMaker older than the one it |
|
|
26 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
27 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
28 | # people from sandbox trouble. |
|
|
29 | # |
|
|
30 | # 2004.05.25 rac |
|
|
31 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
32 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
33 | # understand DESTDIR |
|
|
34 | # |
|
|
35 | # 2004.10.01 mcummings |
|
|
36 | # noticed a discrepancy in how we were sed fixing references to ${D} |
|
|
37 | # |
|
|
38 | # 2005.03.14 mcummings |
|
|
39 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
|
|
40 | # this should avoid the conflicts we've been running into with the introduction |
|
|
41 | # of file collision features by giving us a single exportable function to deal |
|
|
42 | # with the pods. Modifications to the eclass provided by Yaakov S |
|
|
43 | # <yselkowitz@hotmail.com> in bug 83622 |
|
|
44 | # |
|
|
45 | # <later the same day> |
|
|
46 | # The long awaited (by me) fix for automagically detecting and dealing |
|
|
47 | # with module-build dependancies. I've chosen not to make it a default dep since |
|
|
48 | # this adds overhead to people that might not otherwise need it, and instead |
|
|
49 | # modified the eclass to detect the existence of a Build.PL and behave |
|
|
50 | # accordingly. This will fix issues with g-cpan builds that needs module-build |
|
|
51 | # support, as well as get rid of the (annoying) style=builder vars. I know of |
|
|
52 | # only one module that needed to be hacked for this, Class-MethodMaker-2.05, but |
|
|
53 | # that module has a bad Build.PL to begin with. Ebuilds should continue to |
|
|
54 | # DEPEND on module-build<-version> as needed, but there should be no need for |
|
|
55 | # the style directive any more (especially since it isn't in the eclass |
|
|
56 | # anymore). Enjoy! |
|
|
57 | # |
|
|
58 | # 2005.07.18 mcummings |
|
|
59 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
|
|
60 | # bombing out there |
|
|
61 | # |
|
|
62 | # 2005.07.19 mcummings |
|
|
63 | # Providing an override var for the use of Module::Build. While it is being |
|
|
64 | # incorporated in more and more modules, not module authors have working |
|
|
65 | # Build.PL's in place. The override is to allow for a fallback to the "classic" |
|
|
66 | # Makfile.PL - example is Class::MethodMaker, which provides a Build.PL that is |
|
|
67 | # severely broken. |
|
|
68 | |
|
|
69 | |
|
|
70 | |
|
|
71 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
72 | RDEPEND="${DEPEND}" |
| 19 | SRC_PREP="no" |
73 | SRC_PREP="no" |
|
|
74 | SRC_TEST="skip" |
|
|
75 | USE_BUILDER="yes" |
| 20 | |
76 | |
|
|
77 | PERL_VERSION="" |
|
|
78 | SITE_ARCH="" |
| 21 | SITE_LIB="" |
79 | SITE_LIB="" |
|
|
80 | VENDOR_LIB="" |
|
|
81 | VENDOR_ARCH="" |
| 22 | ARCH_LIB="" |
82 | ARCH_LIB="" |
| 23 | POD_DIR="" |
83 | POD_DIR="" |
|
|
84 | BUILDER_VER="" |
| 24 | |
85 | |
| 25 | perl-module_src_prep() { |
86 | perl-module_src_prep() { |
| 26 | |
87 | |
|
|
88 | perlinfo |
|
|
89 | |
|
|
90 | export PERL_MM_USE_DEFAULT=1 |
|
|
91 | |
|
|
92 | |
| 27 | SRC_PREP="yes" |
93 | SRC_PREP="yes" |
| 28 | if [ "${style}" == "builder" ]; then |
94 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
|
|
95 | einfo "Using Module::Build" |
|
|
96 | if [ -z ${BUILDER_VER} ]; then |
|
|
97 | eerror |
|
|
98 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
99 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
100 | eerror "on dev-perl/module-build" |
|
|
101 | eerror "${BUILDER_VER}" |
|
|
102 | eerror |
|
|
103 | die |
|
|
104 | else |
| 29 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
105 | perl ${S}/Build.PL installdirs=vendor destdir=${D} libdoc= |
|
|
106 | fi |
| 30 | else |
107 | else |
|
|
108 | einfo "Using ExtUtils::MakeMaker" |
| 31 | perl Makefile.PL INSTALLDIRS=vendor ${myconf} \ |
109 | #perl Makefile.PL ${myconf} \ |
| 32 | PREFIX=${D}/usr |
110 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
|
|
111 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 33 | fi |
112 | fi |
| 34 | |
|
|
| 35 | } |
113 | } |
| 36 | |
114 | |
| 37 | perl-module_src_compile() { |
115 | perl-module_src_compile() { |
| 38 | |
116 | |
|
|
117 | perlinfo |
| 39 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
118 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 40 | if [ "${style}" != "builder" ]; then |
119 | if [ -z ${BUILDER_VER} ]; then |
| 41 | make ${mymake} || die "compilation failed" |
120 | make ${mymake} || die "compilation failed" |
|
|
121 | else |
|
|
122 | perl ${S}/Build build |
| 42 | fi |
123 | fi |
| 43 | |
124 | |
| 44 | } |
125 | } |
| 45 | |
126 | |
| 46 | perl-module_src_test() { |
127 | perl-module_src_test() { |
| 47 | if [ "${style}" == "builder" ]; then |
128 | if [ "${SRC_TEST}" == "do" ]; then |
| 48 | perl ${S}/Build test |
129 | perlinfo |
|
|
130 | if [ -z ${BUILDER_VER} ]; then |
|
|
131 | make test || die "test failed" |
|
|
132 | else |
|
|
133 | perl ${S}/Build test || die "test failed" |
|
|
134 | fi |
|
|
135 | fi |
|
|
136 | } |
|
|
137 | |
|
|
138 | perl-module_src_install() { |
|
|
139 | |
|
|
140 | perlinfo |
|
|
141 | |
|
|
142 | test -z ${mytargets} && mytargets="install" |
|
|
143 | |
|
|
144 | if [ -z ${BUILDER_VER} ]; then |
|
|
145 | make ${myinst} ${mytargets} || die |
| 49 | else |
146 | else |
| 50 | make test |
147 | perl ${S}/Build install |
|
|
148 | fi |
|
|
149 | |
|
|
150 | fixlocalpod |
|
|
151 | |
|
|
152 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
153 | STAT=`file $FILE| grep -i " text"` |
|
|
154 | if [ "${STAT}x" != "x" ]; then |
|
|
155 | sed -i -e "s:${D}:/:g" ${FILE} |
| 51 | fi |
156 | fi |
|
|
157 | done |
| 52 | |
158 | |
|
|
159 | for doc in Change* MANIFEST* README* ${mydoc}; do |
|
|
160 | [ -s "$doc" ] && dodoc $doc |
|
|
161 | done |
| 53 | } |
162 | } |
| 54 | |
163 | |
|
|
164 | |
|
|
165 | perl-module_pkg_setup() { |
|
|
166 | |
|
|
167 | perlinfo |
|
|
168 | } |
|
|
169 | |
|
|
170 | |
| 55 | perl-module_src_install() { |
171 | perl-module_pkg_preinst() { |
| 56 | |
172 | |
|
|
173 | perlinfo |
|
|
174 | } |
|
|
175 | |
|
|
176 | perl-module_pkg_postinst() { |
|
|
177 | |
|
|
178 | updatepod |
|
|
179 | } |
|
|
180 | |
|
|
181 | perl-module_pkg_prerm() { |
|
|
182 | |
|
|
183 | updatepod |
|
|
184 | } |
|
|
185 | |
|
|
186 | perl-module_pkg_postrm() { |
|
|
187 | |
|
|
188 | updatepod |
|
|
189 | } |
|
|
190 | |
| 57 | perlinfo |
191 | perlinfo() { |
| 58 | dodir ${POD_DIR} |
192 | |
| 59 | |
193 | local version |
| 60 | test -z ${mytargets} && mytargets="install" |
194 | eval `perl '-V:version'` |
|
|
195 | PERL_VERSION=${version} |
|
|
196 | |
|
|
197 | local installsitearch |
| 61 | eval `perl '-V:installsitearch'` |
198 | eval `perl '-V:installsitearch'` |
| 62 | SITE_ARCH=${installsitearch} |
199 | SITE_ARCH=${installsitearch} |
|
|
200 | |
|
|
201 | local installsitelib |
|
|
202 | eval `perl '-V:installsitelib'` |
|
|
203 | SITE_LIB=${installsitelib} |
|
|
204 | |
|
|
205 | local installarchlib |
| 63 | eval `perl '-V:installarchlib'` |
206 | eval `perl '-V:installarchlib'` |
| 64 | ARCH_LIB=${installarchlib} |
207 | ARCH_LIB=${installarchlib} |
| 65 | |
208 | |
| 66 | if [ "${style}" == "builder" ]; then |
209 | local installvendorlib |
| 67 | perl ${S}/Build install |
210 | eval `perl '-V:installvendorlib'` |
|
|
211 | VENDOR_LIB=${installvendorlib} |
|
|
212 | |
|
|
213 | local installvendorarch |
|
|
214 | eval `perl '-V:installvendorarch'` |
|
|
215 | VENDOR_ARCH=${installvendorarch} |
|
|
216 | |
|
|
217 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
218 | if [ -f ${S}/Build.PL ]; then |
|
|
219 | if [ ${PN} == "module-build" ]; then |
|
|
220 | BUILDER_VER="1" # A bootstrapping if you will |
| 68 | else |
221 | else |
| 69 | make \ |
222 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 70 | PREFIX=${D}/usr \ |
223 | fi |
| 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 |
224 | fi |
|
|
225 | fi |
|
|
226 | |
|
|
227 | if [ -f /usr/bin/perl ] |
|
|
228 | then |
|
|
229 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
230 | fi |
|
|
231 | } |
|
|
232 | |
|
|
233 | fixlocalpod() { |
|
|
234 | perlinfo |
|
|
235 | dodir ${POD_DIR} |
| 92 | |
236 | |
| 93 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
237 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 94 | then |
238 | then |
| 95 | touch ${D}/${POD_DIR}/${P}.pod |
239 | touch ${D}/${POD_DIR}/${P}.pod |
| 96 | sed -e "s:${D}::g" \ |
240 | sed -e "s:${D}::g" \ |
| 97 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
241 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 98 | touch ${D}/${POD_DIR}/${P}.pod.arch |
242 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 99 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
243 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 100 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
244 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 101 | fi |
245 | fi |
| 102 | |
246 | |
| 103 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
247 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 104 | then |
248 | then |
| 105 | touch ${D}/${POD_DIR}/${P}.pod |
249 | touch ${D}/${POD_DIR}/${P}.pod |
| 106 | sed -e "s:${D}::g" \ |
250 | sed -e "s:${D}::g" \ |
| 107 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
251 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 108 | touch ${D}/${POD_DIR}/${P}.pod.site |
252 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 109 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
253 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 110 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
254 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 111 | fi |
255 | fi |
| 112 | |
256 | |
| 113 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
257 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 114 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
| 115 | done |
|
|
| 116 | |
|
|
| 117 | dodoc Change* MANIFEST* README* ${mydoc} |
|
|
| 118 | } |
|
|
| 119 | |
|
|
| 120 | |
|
|
| 121 | perl-module_pkg_setup() { |
|
|
| 122 | |
|
|
| 123 | perlinfo |
|
|
| 124 | } |
|
|
| 125 | |
|
|
| 126 | |
|
|
| 127 | perl-module_pkg_preinst() { |
|
|
| 128 | |
|
|
| 129 | perlinfo |
|
|
| 130 | } |
|
|
| 131 | |
|
|
| 132 | perl-module_pkg_postinst() { |
|
|
| 133 | |
|
|
| 134 | updatepod |
|
|
| 135 | } |
|
|
| 136 | |
|
|
| 137 | perl-module_pkg_prerm() { |
|
|
| 138 | |
|
|
| 139 | updatepod |
|
|
| 140 | } |
|
|
| 141 | |
|
|
| 142 | perl-module_pkg_postrm() { |
|
|
| 143 | |
|
|
| 144 | updatepod |
|
|
| 145 | } |
|
|
| 146 | |
|
|
| 147 | perlinfo() { |
|
|
| 148 | |
|
|
| 149 | if [ -f /usr/bin/perl ] |
|
|
| 150 | then |
258 | then |
| 151 | eval `perl '-V:installarchlib'` |
259 | touch ${D}/${POD_DIR}/${P}.pod |
| 152 | eval `perl '-V:installsitearch'` |
260 | sed -e "s:${D}::g" \ |
| 153 | ARCH_LIB=${installarchlib} |
261 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 154 | SITE_LIB=${installsitearch} |
262 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 155 | |
263 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
| 156 | eval `perl '-V:version'` |
264 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 157 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 158 | fi |
265 | fi |
| 159 | |
|
|
| 160 | } |
266 | } |
| 161 | |
267 | |
| 162 | updatepod() { |
268 | updatepod() { |
| 163 | perlinfo |
269 | perlinfo |
| 164 | |
270 | |
| … | |
… | |
| 170 | done |
276 | done |
| 171 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
277 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 172 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
278 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 173 | rm -f ${FILE} |
279 | rm -f ${FILE} |
| 174 | done |
280 | done |
|
|
281 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
282 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
283 | rm -f ${FILE} |
|
|
284 | done |
| 175 | fi |
285 | fi |
| 176 | } |
286 | } |