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