| 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.35 2003/05/30 08:13:44 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.83 2006/02/28 02:56:48 vapier 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 src_compile src_install src_test perlinfo fixlocalpod updatepod |
| 14 | src_compile src_install src_test |
|
|
| 15 | |
13 | |
| 16 | eval `perl '-V:version'` |
14 | # 2005.04.28 mcummings |
| 17 | DEPEND="dev-lang/perl |
15 | # Mounting problems with src_test functions has forced me to make the |
| 18 | >=dev-perl/ExtUtils-MakeMaker-6.05-r1 |
16 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
| 19 | ${DEPEND}" |
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. |
|
|
20 | |
|
|
21 | # 2004.05.10 rac |
|
|
22 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
23 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
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} )" |
| 20 | SRC_PREP="no" |
77 | SRC_PREP="no" |
|
|
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
| 21 | |
80 | |
|
|
81 | PERL_VERSION="" |
|
|
82 | SITE_ARCH="" |
| 22 | SITE_LIB="" |
83 | SITE_LIB="" |
|
|
84 | VENDOR_LIB="" |
|
|
85 | VENDOR_ARCH="" |
| 23 | ARCH_LIB="" |
86 | ARCH_LIB="" |
| 24 | POD_DIR="" |
87 | POD_DIR="" |
|
|
88 | BUILDER_VER="" |
| 25 | |
89 | |
| 26 | perl-module_src_prep() { |
90 | perl-module_src_prep() { |
| 27 | |
91 | |
|
|
92 | perlinfo |
|
|
93 | |
|
|
94 | export PERL_MM_USE_DEFAULT=1 |
|
|
95 | |
|
|
96 | |
| 28 | SRC_PREP="yes" |
97 | SRC_PREP="yes" |
|
|
98 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
|
|
99 | einfo "Using Module::Build" |
|
|
100 | if [ -z ${BUILDER_VER} ]; then |
|
|
101 | eerror |
|
|
102 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
103 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
104 | eerror "on dev-perl/module-build" |
|
|
105 | eerror "${BUILDER_VER}" |
|
|
106 | eerror |
|
|
107 | die |
|
|
108 | else |
|
|
109 | perl ${S}/Build.PL installdirs=vendor destdir=${D} libdoc= |
|
|
110 | fi |
|
|
111 | else |
|
|
112 | einfo "Using ExtUtils::MakeMaker" |
| 29 | perl Makefile.PL ${myconf} \ |
113 | #perl Makefile.PL ${myconf} \ |
| 30 | PREFIX=${D}/usr |
114 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
|
|
115 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
116 | fi |
| 31 | } |
117 | } |
| 32 | |
118 | |
| 33 | perl-module_src_compile() { |
119 | perl-module_src_compile() { |
| 34 | |
120 | |
|
|
121 | perlinfo |
| 35 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
122 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
123 | if [ -z ${BUILDER_VER} ]; then |
| 36 | make ${mymake} || die "compilation failed" |
124 | make ${mymake} || die "compilation failed" |
|
|
125 | else |
|
|
126 | perl ${S}/Build build |
|
|
127 | fi |
|
|
128 | |
| 37 | } |
129 | } |
| 38 | |
130 | |
| 39 | perl-module_src_test() { |
131 | perl-module_src_test() { |
| 40 | make test |
132 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
133 | perlinfo |
|
|
134 | if [ -z ${BUILDER_VER} ]; then |
|
|
135 | make test || die "test failed" |
|
|
136 | else |
|
|
137 | perl ${S}/Build test || die "test failed" |
|
|
138 | fi |
|
|
139 | fi |
| 41 | } |
140 | } |
| 42 | |
141 | |
| 43 | perl-module_src_install() { |
142 | perl-module_src_install() { |
| 44 | |
143 | |
| 45 | perlinfo |
144 | perlinfo |
| 46 | dodir ${POD_DIR} |
145 | |
| 47 | |
|
|
| 48 | test -z ${mytargets} && mytargets="install" |
146 | test -z ${mytargets} && mytargets="install" |
|
|
147 | |
|
|
148 | if [ -z ${BUILDER_VER} ]; then |
|
|
149 | make ${myinst} ${mytargets} || die |
|
|
150 | else |
|
|
151 | perl ${S}/Build install |
|
|
152 | fi |
|
|
153 | |
|
|
154 | fixlocalpod |
|
|
155 | |
|
|
156 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
157 | STAT=`file $FILE| grep -i " text"` |
|
|
158 | if [ "${STAT}x" != "x" ]; then |
|
|
159 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
160 | fi |
|
|
161 | done |
|
|
162 | |
|
|
163 | for doc in Change* MANIFEST* README* ${mydoc}; do |
|
|
164 | [ -s "$doc" ] && dodoc $doc |
|
|
165 | done |
|
|
166 | } |
|
|
167 | |
|
|
168 | |
|
|
169 | perl-module_pkg_setup() { |
|
|
170 | |
|
|
171 | perlinfo |
|
|
172 | } |
|
|
173 | |
|
|
174 | |
|
|
175 | perl-module_pkg_preinst() { |
|
|
176 | |
|
|
177 | perlinfo |
|
|
178 | } |
|
|
179 | |
|
|
180 | perl-module_pkg_postinst() { |
|
|
181 | |
|
|
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 |
| 49 | eval `perl '-V:installsitearch'` |
202 | eval `perl '-V:installsitearch'` |
| 50 | SITE_ARCH=${installsitearch} |
203 | SITE_ARCH=${installsitearch} |
|
|
204 | |
|
|
205 | local installsitelib |
|
|
206 | eval `perl '-V:installsitelib'` |
|
|
207 | SITE_LIB=${installsitelib} |
|
|
208 | |
|
|
209 | local installarchlib |
| 51 | eval `perl '-V:installarchlib'` |
210 | eval `perl '-V:installarchlib'` |
| 52 | ARCH_LIB=${installarchlib} |
211 | ARCH_LIB=${installarchlib} |
| 53 | |
|
|
| 54 | |
|
|
| 55 | make \ |
|
|
| 56 | PREFIX=${D}/usr \ |
|
|
| 57 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 58 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 59 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 60 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 61 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 62 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 63 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 64 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 65 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 66 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 67 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 68 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 69 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 70 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 71 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 72 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 73 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 74 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 75 | ${myinst} \ |
|
|
| 76 | ${mytargets} || die |
|
|
| 77 | |
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}/Build.PL ]; then |
|
|
223 | if [ ${PN} == "module-build" ]; then |
|
|
224 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
225 | else |
|
|
226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
227 | fi |
|
|
228 | fi |
|
|
229 | fi |
|
|
230 | |
|
|
231 | if [ -f /usr/bin/perl ] |
|
|
232 | then |
|
|
233 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
234 | fi |
|
|
235 | } |
|
|
236 | |
|
|
237 | fixlocalpod() { |
|
|
238 | perlinfo |
|
|
239 | dodir ${POD_DIR} |
| 78 | |
240 | |
| 79 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
241 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 80 | then |
242 | then |
| 81 | touch ${D}/${POD_DIR}/${P}.pod |
243 | touch ${D}/${POD_DIR}/${P}.pod |
| 82 | sed -e "s:${D}::g" \ |
244 | sed -e "s:${D}::g" \ |
| 83 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
245 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 84 | touch ${D}/${POD_DIR}/${P}.pod.arch |
246 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 85 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
247 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 86 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
248 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 87 | fi |
249 | fi |
| 88 | |
250 | |
| 89 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
251 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 90 | then |
252 | then |
| 91 | touch ${D}/${POD_DIR}/${P}.pod |
253 | touch ${D}/${POD_DIR}/${P}.pod |
| 92 | sed -e "s:${D}::g" \ |
254 | sed -e "s:${D}::g" \ |
| 93 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
255 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 94 | touch ${D}/${POD_DIR}/${P}.pod.site |
256 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 95 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
257 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 96 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
258 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 97 | fi |
259 | fi |
| 98 | |
260 | |
| 99 | dodoc Change* MANIFEST* README* ${mydoc} |
261 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 100 | } |
|
|
| 101 | |
|
|
| 102 | |
|
|
| 103 | perl-module_pkg_setup() { |
|
|
| 104 | |
|
|
| 105 | perlinfo |
|
|
| 106 | } |
|
|
| 107 | |
|
|
| 108 | |
|
|
| 109 | perl-module_pkg_preinst() { |
|
|
| 110 | |
|
|
| 111 | perlinfo |
|
|
| 112 | } |
|
|
| 113 | |
|
|
| 114 | perl-module_pkg_postinst() { |
|
|
| 115 | |
|
|
| 116 | updatepod |
|
|
| 117 | } |
|
|
| 118 | |
|
|
| 119 | perl-module_pkg_prerm() { |
|
|
| 120 | |
|
|
| 121 | updatepod |
|
|
| 122 | } |
|
|
| 123 | |
|
|
| 124 | perl-module_pkg_postrm() { |
|
|
| 125 | |
|
|
| 126 | updatepod |
|
|
| 127 | } |
|
|
| 128 | |
|
|
| 129 | perlinfo() { |
|
|
| 130 | |
|
|
| 131 | if [ -f /usr/bin/perl ] |
|
|
| 132 | then |
262 | then |
| 133 | eval `perl '-V:installarchlib'` |
263 | touch ${D}/${POD_DIR}/${P}.pod |
| 134 | eval `perl '-V:installsitearch'` |
264 | sed -e "s:${D}::g" \ |
| 135 | ARCH_LIB=${installarchlib} |
265 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 136 | SITE_LIB=${installsitearch} |
266 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 137 | |
267 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
| 138 | eval `perl '-V:version'` |
268 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 139 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 140 | fi |
269 | fi |
| 141 | |
|
|
| 142 | } |
270 | } |
| 143 | |
271 | |
| 144 | updatepod() { |
272 | updatepod() { |
| 145 | perlinfo |
273 | perlinfo |
| 146 | |
274 | |
| … | |
… | |
| 152 | done |
280 | done |
| 153 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
281 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 154 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
282 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 155 | rm -f ${FILE} |
283 | rm -f ${FILE} |
| 156 | done |
284 | done |
| 157 | |
285 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
| 158 | #cat ${POD_DIR}/*.pod.arch >> ${ARCH_LIB}/perllocal.pod |
286 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
| 159 | #cat ${POD_DIR}/*.pod.site >> ${SITE_LIB}/perllocal.pod |
287 | rm -f ${FILE} |
| 160 | #rm -f ${POD_DIR}/*.pod.site |
288 | done |
| 161 | #rm -f ${POD_DIR}/*.pod.site |
|
|
| 162 | fi |
289 | fi |
| 163 | } |
290 | } |