| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.65 2004/10/01 21:32:07 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.86 2006/04/03 11:16:52 mcummings 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 |
|
|
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
11 | |
| 14 | 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 |
| 15 | src_compile src_install src_test \ |
13 | |
| 16 | perlinfo updatepod |
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 | # 2004.05.10 rac |
21 | # 2004.05.10 rac |
| 19 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
22 | # 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 |
23 | # actuality, this should be handled in the perl ebuild, so every perl |
| 21 | # ebuild should block versions of MakeMaker older than the one it |
24 | # ebuild should block versions of MakeMaker older than the one it |
| … | |
… | |
| 28 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
31 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
| 29 | # understand DESTDIR |
32 | # understand DESTDIR |
| 30 | # |
33 | # |
| 31 | # 2004.10.01 mcummings |
34 | # 2004.10.01 mcummings |
| 32 | # noticed a discrepancy in how we were sed fixing references to ${D} |
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 |
| 33 | |
72 | |
|
|
73 | |
|
|
74 | IUSE="minimal" |
| 34 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
76 | RDEPEND="!minimal? ( ${DEPEND} )" |
| 35 | SRC_PREP="no" |
77 | SRC_PREP="no" |
| 36 | SRC_TEST="skip" |
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
| 37 | |
80 | |
| 38 | PERL_VERSION="" |
81 | PERL_VERSION="" |
| 39 | SITE_ARCH="" |
82 | SITE_ARCH="" |
| 40 | SITE_LIB="" |
83 | SITE_LIB="" |
| 41 | VENDOR_LIB="" |
84 | VENDOR_LIB="" |
| 42 | VENDOR_ARCH="" |
85 | VENDOR_ARCH="" |
| 43 | ARCH_LIB="" |
86 | ARCH_LIB="" |
| 44 | POD_DIR="" |
87 | POD_DIR="" |
|
|
88 | BUILDER_VER="" |
| 45 | |
89 | |
| 46 | perl-module_src_prep() { |
90 | perl-module_src_prep() { |
| 47 | |
91 | |
| 48 | perlinfo |
92 | perlinfo |
| 49 | |
93 | |
| 50 | export PERL_MM_USE_DEFAULT=1 |
94 | export PERL_MM_USE_DEFAULT=1 |
| 51 | |
95 | |
|
|
96 | |
| 52 | SRC_PREP="yes" |
97 | SRC_PREP="yes" |
| 53 | if [ "${style}" == "builder" ]; then |
98 | if [ -f Makefile.PL ]; then |
|
|
99 | einfo "Using ExtUtils::MakeMaker" |
|
|
100 | #perl Makefile.PL ${myconf} \ |
|
|
101 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
|
|
102 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
103 | elif [ -f Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
|
|
104 | einfo "Using Module::Build" |
|
|
105 | if [ -z ${BUILDER_VER} ]; then |
|
|
106 | eerror |
|
|
107 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
108 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
109 | eerror "on dev-perl/module-build" |
|
|
110 | eerror "${BUILDER_VER}" |
|
|
111 | eerror |
|
|
112 | die |
|
|
113 | else |
| 54 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
114 | perl Build.PL installdirs=vendor destdir=${D} libdoc= |
|
|
115 | fi |
| 55 | else |
116 | else |
| 56 | perl Makefile.PL ${myconf} \ |
117 | einfo "No Make or Build file detect..." |
| 57 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
118 | return |
| 58 | fi |
119 | fi |
| 59 | } |
120 | } |
| 60 | |
121 | |
| 61 | perl-module_src_compile() { |
122 | perl-module_src_compile() { |
| 62 | |
123 | |
|
|
124 | perlinfo |
| 63 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
125 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 64 | if [ "${style}" != "builder" ]; then |
126 | if [ -z ${BUILDER_VER} ]; then |
| 65 | make ${mymake} || die "compilation failed" |
127 | make ${mymake} || die "compilation failed" |
|
|
128 | else |
|
|
129 | perl ${S}/Build build |
| 66 | fi |
130 | fi |
| 67 | |
131 | |
|
|
132 | } |
|
|
133 | |
|
|
134 | perl-module_src_test() { |
| 68 | if [ "${SRC_TEST}" == "do" ]; then |
135 | if [ "${SRC_TEST}" == "do" ]; then |
| 69 | perl-module_src_test || die "test failed" |
136 | perlinfo |
| 70 | SRC_TEST="done" |
137 | if [ -z ${BUILDER_VER} ]; then |
|
|
138 | make test || die "test failed" |
|
|
139 | else |
|
|
140 | perl ${S}/Build test || die "test failed" |
| 71 | fi |
141 | fi |
|
|
142 | fi |
| 72 | } |
143 | } |
| 73 | |
144 | |
| 74 | perl-module_src_test() { |
145 | perl-module_src_install() { |
| 75 | if [ "${style}" == "builder" ]; then |
146 | |
| 76 | perl ${S}/Build test |
147 | perlinfo |
|
|
148 | |
|
|
149 | test -z ${mytargets} && mytargets="install" |
|
|
150 | |
|
|
151 | if [ -z ${BUILDER_VER} ]; then |
|
|
152 | make ${myinst} ${mytargets} || die |
| 77 | else |
153 | else |
| 78 | make test |
154 | perl ${S}/Build install |
|
|
155 | fi |
|
|
156 | |
|
|
157 | fixlocalpod |
|
|
158 | |
|
|
159 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
160 | STAT=`file $FILE| grep -i " text"` |
|
|
161 | if [ "${STAT}x" != "x" ]; then |
|
|
162 | sed -i -e "s:${D}:/:g" ${FILE} |
| 79 | fi |
163 | fi |
| 80 | } |
164 | done |
| 81 | |
165 | |
|
|
166 | for doc in Change* MANIFEST* README* ${mydoc}; do |
|
|
167 | [ -s "$doc" ] && dodoc $doc |
|
|
168 | done |
|
|
169 | } |
|
|
170 | |
|
|
171 | |
|
|
172 | perl-module_pkg_setup() { |
|
|
173 | |
|
|
174 | perlinfo |
|
|
175 | } |
|
|
176 | |
|
|
177 | |
| 82 | perl-module_src_install() { |
178 | perl-module_pkg_preinst() { |
| 83 | |
179 | |
|
|
180 | perlinfo |
|
|
181 | } |
|
|
182 | |
|
|
183 | perl-module_pkg_postinst() { |
|
|
184 | |
|
|
185 | einfo "Man pages are not installed for most modules now." |
|
|
186 | einfo "Please use perldoc instad." |
|
|
187 | updatepod |
|
|
188 | } |
|
|
189 | |
|
|
190 | perl-module_pkg_prerm() { |
|
|
191 | |
|
|
192 | updatepod |
|
|
193 | } |
|
|
194 | |
|
|
195 | perl-module_pkg_postrm() { |
|
|
196 | |
|
|
197 | updatepod |
|
|
198 | } |
|
|
199 | |
|
|
200 | perlinfo() { |
|
|
201 | |
|
|
202 | local version |
|
|
203 | eval `perl '-V:version'` |
|
|
204 | PERL_VERSION=${version} |
|
|
205 | |
|
|
206 | local installsitearch |
|
|
207 | eval `perl '-V:installsitearch'` |
|
|
208 | SITE_ARCH=${installsitearch} |
|
|
209 | |
|
|
210 | local installsitelib |
|
|
211 | eval `perl '-V:installsitelib'` |
|
|
212 | SITE_LIB=${installsitelib} |
|
|
213 | |
|
|
214 | local installarchlib |
|
|
215 | eval `perl '-V:installarchlib'` |
|
|
216 | ARCH_LIB=${installarchlib} |
|
|
217 | |
|
|
218 | local installvendorlib |
|
|
219 | eval `perl '-V:installvendorlib'` |
|
|
220 | VENDOR_LIB=${installvendorlib} |
|
|
221 | |
|
|
222 | local installvendorarch |
|
|
223 | eval `perl '-V:installvendorarch'` |
|
|
224 | VENDOR_ARCH=${installvendorarch} |
|
|
225 | |
|
|
226 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
227 | if [ ! -f ${S}/Makefile.PL ]; then |
|
|
228 | if [ -f ${S}/Build.PL ]; then |
|
|
229 | if [ ${PN} == "module-build" ]; then |
|
|
230 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
231 | else |
|
|
232 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
233 | fi |
|
|
234 | fi |
|
|
235 | fi |
|
|
236 | fi |
|
|
237 | |
|
|
238 | if [ -f /usr/bin/perl ] |
|
|
239 | then |
|
|
240 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
241 | fi |
|
|
242 | } |
|
|
243 | |
|
|
244 | fixlocalpod() { |
| 84 | perlinfo |
245 | perlinfo |
| 85 | dodir ${POD_DIR} |
246 | dodir ${POD_DIR} |
| 86 | |
|
|
| 87 | test -z ${mytargets} && mytargets="install" |
|
|
| 88 | |
|
|
| 89 | if [ "${style}" == "builder" ]; then |
|
|
| 90 | perl ${S}/Build install |
|
|
| 91 | else |
|
|
| 92 | make ${myinst} ${mytargets} || die |
|
|
| 93 | fi |
|
|
| 94 | |
247 | |
| 95 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
248 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 96 | then |
249 | then |
| 97 | touch ${D}/${POD_DIR}/${P}.pod |
250 | touch ${D}/${POD_DIR}/${P}.pod |
| 98 | sed -e "s:${D}::g" \ |
251 | sed -e "s:${D}::g" \ |
| 99 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
252 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 100 | touch ${D}/${POD_DIR}/${P}.pod.arch |
253 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 101 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
254 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 102 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
255 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 103 | fi |
256 | fi |
| 104 | |
257 | |
| 105 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
258 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 106 | then |
259 | then |
| 107 | touch ${D}/${POD_DIR}/${P}.pod |
260 | touch ${D}/${POD_DIR}/${P}.pod |
| 108 | sed -e "s:${D}::g" \ |
261 | sed -e "s:${D}::g" \ |
| 109 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
262 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 110 | touch ${D}/${POD_DIR}/${P}.pod.site |
263 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 111 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
264 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 112 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
265 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 113 | fi |
266 | fi |
| 114 | |
267 | |
| 115 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
268 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 116 | then |
269 | then |
| 117 | touch ${D}/${POD_DIR}/${P}.pod |
270 | touch ${D}/${POD_DIR}/${P}.pod |
| 118 | sed -e "s:${D}::g" \ |
271 | sed -e "s:${D}::g" \ |
| 119 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
272 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 120 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
273 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 121 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
274 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
| 122 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
275 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 123 | fi |
|
|
| 124 | |
|
|
| 125 | |
|
|
| 126 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
| 127 | STAT=`file $FILE| grep -i " text"` |
|
|
| 128 | if [ "${STAT}x" != "x" ]; then |
|
|
| 129 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
| 130 | fi |
|
|
| 131 | done |
|
|
| 132 | |
|
|
| 133 | for doc in Change* MANIFEST* README*; do |
|
|
| 134 | [ -s "$doc" ] && dodoc $doc |
|
|
| 135 | done |
|
|
| 136 | dodoc ${mydoc} |
|
|
| 137 | } |
|
|
| 138 | |
|
|
| 139 | |
|
|
| 140 | perl-module_pkg_setup() { |
|
|
| 141 | |
|
|
| 142 | perlinfo |
|
|
| 143 | } |
|
|
| 144 | |
|
|
| 145 | |
|
|
| 146 | perl-module_pkg_preinst() { |
|
|
| 147 | |
|
|
| 148 | perlinfo |
|
|
| 149 | } |
|
|
| 150 | |
|
|
| 151 | perl-module_pkg_postinst() { |
|
|
| 152 | |
|
|
| 153 | updatepod |
|
|
| 154 | } |
|
|
| 155 | |
|
|
| 156 | perl-module_pkg_prerm() { |
|
|
| 157 | |
|
|
| 158 | updatepod |
|
|
| 159 | } |
|
|
| 160 | |
|
|
| 161 | perl-module_pkg_postrm() { |
|
|
| 162 | |
|
|
| 163 | updatepod |
|
|
| 164 | } |
|
|
| 165 | |
|
|
| 166 | perlinfo() { |
|
|
| 167 | |
|
|
| 168 | eval `perl '-V:version'` |
|
|
| 169 | PERL_VERSION=${version} |
|
|
| 170 | |
|
|
| 171 | eval `perl '-V:installsitearch'` |
|
|
| 172 | SITE_ARCH=${installsitearch} |
|
|
| 173 | |
|
|
| 174 | eval `perl '-V:installsitearch'` |
|
|
| 175 | SITE_LIB=${installsitearch} |
|
|
| 176 | |
|
|
| 177 | eval `perl '-V:installarchlib'` |
|
|
| 178 | ARCH_LIB=${installarchlib} |
|
|
| 179 | |
|
|
| 180 | eval `perl '-V:installvendorlib'` |
|
|
| 181 | VENDOR_LIB=${installvendorlib} |
|
|
| 182 | |
|
|
| 183 | eval `perl '-V:installvendorarch'` |
|
|
| 184 | VENDOR_ARCH=${installvendorarch} |
|
|
| 185 | |
|
|
| 186 | if [ -f /usr/bin/perl ] |
|
|
| 187 | then |
|
|
| 188 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 189 | fi |
276 | fi |
| 190 | } |
277 | } |
| 191 | |
278 | |
| 192 | updatepod() { |
279 | updatepod() { |
| 193 | perlinfo |
280 | perlinfo |