| 1 | # Copyright 1999-2004 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.58 2004/04/02 10:22:50 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.103 2006/10/14 20:27:21 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 | # Maintained by the Perl herd <perl@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # 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 |
| 9 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 10 | |
10 | |
| 11 | ECLASS=perl-module |
11 | inherit base |
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
12 | |
| 14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test src_unpack |
| 15 | src_compile src_install src_test \ |
|
|
| 16 | perlinfo updatepod |
|
|
| 17 | |
14 | |
|
|
15 | # 2005.04.28 mcummings |
|
|
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. |
| 18 | |
21 | |
| 19 | newdepend ">=dev-lang/perl-5.8.0-r12" |
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 all 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 | # 2006.02.11 mcummings |
|
|
70 | # Per a conversation with solar, adding a change to the dep/rdep lines for |
|
|
71 | # minimal. Should fix bug 68367 and bug 83622, as well as other embedded builds |
|
|
72 | # that use perl components without providing perl |
|
|
73 | # |
|
|
74 | # 2006.06.13 mcummings |
|
|
75 | # I've reordered and extended the logic on when to invoke module-build versus |
|
|
76 | # MakeMaker. The problem that has arisen is that some modules provide a |
|
|
77 | # Makefile.PL that passes all arguments on to a Build.PL - including PREFIX, |
|
|
78 | # which causes module-build to build with a target of /usr/usr/ |
|
|
79 | # (how broken is that?). Current logic is if there is a Build.PL and we aren't |
|
|
80 | # overriding, use it; otherwise use the Makefile.PL; otherwise return (maybe we |
|
|
81 | # want all the functionality of the perl-module eclass without needing to |
|
|
82 | # compile??). |
|
|
83 | |
|
|
84 | |
| 20 | SRC_PREP="no" |
85 | SRC_PREP="no" |
| 21 | SRC_TEST="skip" |
86 | SRC_TEST="skip" |
|
|
87 | PREFER_BUILDPL="yes" |
| 22 | |
88 | |
| 23 | PERL_VERSION="" |
89 | PERL_VERSION="" |
| 24 | SITE_ARCH="" |
90 | SITE_ARCH="" |
| 25 | SITE_LIB="" |
91 | SITE_LIB="" |
|
|
92 | VENDOR_LIB="" |
|
|
93 | VENDOR_ARCH="" |
| 26 | ARCH_LIB="" |
94 | ARCH_LIB="" |
| 27 | POD_DIR="" |
95 | POD_DIR="" |
| 28 | MMSIXELEVEN="" |
96 | BUILDER_VER="" |
|
|
97 | pm_echovar="" |
|
|
98 | |
|
|
99 | perl-module_src_unpack() { |
|
|
100 | if [[ -n ${PATCHES} ]]; then |
|
|
101 | base_src_unpack unpack |
|
|
102 | base_src_unpack autopatch |
|
|
103 | else |
|
|
104 | base_src_unpack unpack |
|
|
105 | fi |
|
|
106 | } |
| 29 | |
107 | |
| 30 | perl-module_src_prep() { |
108 | perl-module_src_prep() { |
|
|
109 | |
|
|
110 | perlinfo |
|
|
111 | |
|
|
112 | export PERL_MM_USE_DEFAULT=1 |
|
|
113 | # Disable ExtUtils::AutoInstall from prompting |
|
|
114 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
|
|
115 | |
|
|
116 | |
| 31 | SRC_PREP="yes" |
117 | SRC_PREP="yes" |
| 32 | if [ "${style}" == "builder" ]; then |
118 | pwd |
| 33 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
119 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
| 34 | else |
120 | einfo "Using Module::Build" |
| 35 | if [ "${MMSIXELEVEN}" ]; then |
121 | echo "$pm_echovar" | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 36 | perl Makefile.PL ${myconf} \ |
122 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 37 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
123 | einfo "Using ExtUtils::MakeMaker" |
| 38 | else |
124 | echo "$pm_echovar" | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 39 | perl Makefile.PL ${myconf} \ |
125 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
| 40 | PREFIX=${D}/usr INSTALLDIRS=vendor |
126 | fi |
|
|
127 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
|
|
128 | einfo "No Make or Build file detected..." |
|
|
129 | return |
|
|
130 | fi |
|
|
131 | } |
|
|
132 | |
|
|
133 | perl-module_src_compile() { |
|
|
134 | |
|
|
135 | perlinfo |
|
|
136 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
137 | if [ -f Makefile ]; then |
|
|
138 | make ${mymake} || die "compilation failed" |
|
|
139 | elif [ -f Build ]; then |
|
|
140 | perl Build build || die "compilation failed" |
|
|
141 | fi |
|
|
142 | |
|
|
143 | } |
|
|
144 | |
|
|
145 | perl-module_src_test() { |
|
|
146 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
147 | perlinfo |
|
|
148 | if [ -f Makefile ]; then |
|
|
149 | make test || die "test failed" |
|
|
150 | elif [ -f Build ]; then |
|
|
151 | perl Build test || die "test failed" |
| 41 | fi |
152 | fi |
| 42 | fi |
153 | fi |
| 43 | |
|
|
| 44 | } |
|
|
| 45 | |
|
|
| 46 | perl-module_src_compile() { |
|
|
| 47 | |
|
|
| 48 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
| 49 | if [ "${style}" != "builder" ]; then |
|
|
| 50 | make ${mymake} || die "compilation failed" |
|
|
| 51 | fi |
|
|
| 52 | |
|
|
| 53 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
| 54 | perl-module_src_test || die "test failed" |
|
|
| 55 | SRC_TEST="done" |
|
|
| 56 | fi |
|
|
| 57 | } |
|
|
| 58 | |
|
|
| 59 | perl-module_src_test() { |
|
|
| 60 | if [ "${style}" == "builder" ]; then |
|
|
| 61 | perl ${S}/Build test |
|
|
| 62 | else |
|
|
| 63 | make test |
|
|
| 64 | fi |
|
|
| 65 | |
|
|
| 66 | } |
154 | } |
| 67 | |
155 | |
| 68 | perl-module_src_install() { |
156 | perl-module_src_install() { |
| 69 | |
157 | |
| 70 | perlinfo |
158 | perlinfo |
| 71 | dodir ${POD_DIR} |
159 | |
| 72 | |
|
|
| 73 | test -z ${mytargets} && mytargets="install" |
160 | test -z ${mytargets} && mytargets="install" |
| 74 | |
161 | |
| 75 | if [ "${style}" == "builder" ]; then |
162 | if [ -f Makefile ]; then |
|
|
163 | make ${myinst} ${mytargets} || die |
|
|
164 | elif [ -f Build ]; then |
| 76 | perl ${S}/Build install |
165 | perl ${S}/Build install |
| 77 | else |
166 | fi |
| 78 | if [ "${MMSIXELEVEN}" ]; then |
167 | |
| 79 | make ${myinst} ${mytargets} || die |
168 | |
| 80 | else |
169 | einfo "Cleaning out stray man files" |
| 81 | make \ |
170 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
| 82 | PREFIX=${D}/usr \ |
171 | rm -rf ${FILE} |
| 83 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
172 | done |
| 84 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
173 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
| 85 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
174 | |
| 86 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
175 | fixlocalpod |
| 87 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
176 | |
| 88 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
177 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 89 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
178 | STAT=`file $FILE| grep -i " text"` |
| 90 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
179 | if [ "${STAT}x" != "x" ]; then |
| 91 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
180 | sed -i -e "s:${D}:/:g" ${FILE} |
| 92 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 93 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 94 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 95 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 96 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 97 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 98 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 99 | INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 100 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 101 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 102 | ${myinst} \ |
|
|
| 103 | ${mytargets} || die |
|
|
| 104 | fi |
181 | fi |
| 105 | fi |
|
|
| 106 | |
|
|
| 107 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
| 108 | then |
|
|
| 109 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 110 | sed -e "s:${D}::g" \ |
|
|
| 111 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 112 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 113 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 114 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 115 | fi |
|
|
| 116 | |
|
|
| 117 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 118 | then |
|
|
| 119 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 120 | sed -e "s:${D}::g" \ |
|
|
| 121 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 122 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 123 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 124 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 125 | fi |
|
|
| 126 | |
|
|
| 127 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
| 128 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
| 129 | done |
182 | done |
| 130 | |
183 | |
| 131 | for doc in Change* MANIFEST* README*; do |
184 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 132 | [ -s "$doc" ] && dodoc $doc |
185 | [ -s "$doc" ] && dodoc $doc |
| 133 | done |
186 | done |
| 134 | dodoc ${mydoc} |
|
|
| 135 | } |
187 | } |
| 136 | |
188 | |
| 137 | |
189 | |
| 138 | perl-module_pkg_setup() { |
190 | perl-module_pkg_setup() { |
| 139 | |
191 | |
| 140 | perlinfo |
192 | perlinfo |
| 141 | } |
193 | } |
| 142 | |
194 | |
| 143 | |
195 | |
| 144 | perl-module_pkg_preinst() { |
196 | perl-module_pkg_preinst() { |
| 145 | |
197 | |
| 146 | perlinfo |
198 | perlinfo |
| 147 | } |
199 | } |
| 148 | |
200 | |
| 149 | perl-module_pkg_postinst() { |
201 | perl-module_pkg_postinst() { |
| 150 | |
202 | |
|
|
203 | einfo "Man pages are not installed for most modules now." |
|
|
204 | einfo "Please use perldoc instead." |
| 151 | updatepod |
205 | updatepod |
| 152 | } |
206 | } |
| 153 | |
207 | |
| 154 | perl-module_pkg_prerm() { |
208 | perl-module_pkg_prerm() { |
| 155 | |
209 | |
| 156 | updatepod |
210 | updatepod |
| 157 | } |
211 | } |
| 158 | |
212 | |
| 159 | perl-module_pkg_postrm() { |
213 | perl-module_pkg_postrm() { |
| 160 | |
214 | |
| 161 | updatepod |
215 | updatepod |
| 162 | } |
216 | } |
| 163 | |
217 | |
| 164 | perlinfo() { |
218 | perlinfo() { |
| 165 | |
219 | |
| 166 | if [ -f /usr/bin/perl ] |
220 | local version |
| 167 | then |
|
|
| 168 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 169 | fi |
|
|
| 170 | eval `perl '-V:version'` |
221 | eval `perl '-V:version'` |
| 171 | PERL_VERSION=${version} |
222 | PERL_VERSION=${version} |
|
|
223 | |
|
|
224 | local installsitearch |
| 172 | eval `perl '-V:installsitearch'` |
225 | eval `perl '-V:installsitearch'` |
| 173 | SITE_ARCH=${installsitearch} |
226 | SITE_ARCH=${installsitearch} |
|
|
227 | |
|
|
228 | local installsitelib |
|
|
229 | eval `perl '-V:installsitelib'` |
|
|
230 | SITE_LIB=${installsitelib} |
|
|
231 | |
|
|
232 | local installarchlib |
| 174 | eval `perl '-V:installarchlib'` |
233 | eval `perl '-V:installarchlib'` |
| 175 | ARCH_LIB=${installarchlib} |
234 | ARCH_LIB=${installarchlib} |
|
|
235 | |
|
|
236 | local installvendorlib |
| 176 | eval `perl '-V:installarchlib'` |
237 | eval `perl '-V:installvendorlib'` |
| 177 | ARCH_LIB=${installarchlib} |
238 | VENDOR_LIB=${installvendorlib} |
|
|
239 | |
|
|
240 | local installvendorarch |
| 178 | eval `perl '-V:installsitearch'` |
241 | eval `perl '-V:installvendorarch'` |
| 179 | SITE_LIB=${installsitearch} |
242 | VENDOR_ARCH=${installvendorarch} |
| 180 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
| 181 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` |
|
|
| 182 | |
243 | |
|
|
244 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
|
|
245 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
|
|
246 | if [ -f ${S}/Build.PL ]; then |
|
|
247 | if [ ${PN} == "module-build" ]; then |
|
|
248 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
249 | else |
|
|
250 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
251 | fi |
|
|
252 | fi |
|
|
253 | fi |
|
|
254 | fi |
|
|
255 | |
|
|
256 | if [ -f /usr/bin/perl ] |
|
|
257 | then |
|
|
258 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
259 | fi |
|
|
260 | } |
|
|
261 | |
|
|
262 | fixlocalpod() { |
|
|
263 | perlinfo |
|
|
264 | |
|
|
265 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
266 | then |
|
|
267 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
268 | fi |
|
|
269 | |
|
|
270 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
271 | then |
|
|
272 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
273 | fi |
|
|
274 | |
|
|
275 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
276 | then |
|
|
277 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
278 | fi |
| 183 | } |
279 | } |
| 184 | |
280 | |
| 185 | updatepod() { |
281 | updatepod() { |
| 186 | perlinfo |
282 | perlinfo |
| 187 | |
283 | |
| 188 | if [ -d "${POD_DIR}" ] |
284 | if [ -d "${POD_DIR}" ] |
| 189 | then |
285 | then |
| 190 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
286 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
| 191 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
287 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
| 192 | rm -f ${FILE} |
288 | rm -f ${FILE} |
| 193 | done |
289 | done |
| 194 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
290 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 195 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
291 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 196 | rm -f ${FILE} |
292 | rm -f ${FILE} |
| 197 | done |
293 | done |
|
|
294 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
295 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
296 | rm -f ${FILE} |
|
|
297 | done |
| 198 | fi |
298 | fi |
| 199 | } |
299 | } |