| 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.60 2004/05/01 22:03:12 rac Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.112 2008/09/30 08:28:44 robbat2 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. |
|
|
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 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 | # 2007.08.19 ian |
|
|
85 | # Added ${myconf} - bug #176818 |
|
|
86 | # |
|
|
87 | # 2007.10.17 robbat2 |
|
|
88 | # Added the 'MODULE_AUTHOR' variable. Set it before inheriting the eclass |
|
|
89 | # and it will set your HOMEPAGE and SRC_URI correctly for a CPAN package. |
|
|
90 | # |
|
|
91 | # 2008.09.30 robbat2 |
|
|
92 | # MODULE_A enables variations other than .tar.gz easily. Also Use MY_P if set |
|
|
93 | # for MODULE_A and MY_PN in HOMEPAGE, as suggested by tove. |
| 18 | |
94 | |
| 19 | DEPEND="dev-lang/perl" |
95 | [ -z "${SRC_URI}" -a -z "${MODULE_A}" ] && MODULE_A="${MY_P:-${P}}.tar.gz" |
|
|
96 | [ -z "${SRC_URI}" -a -n "${MODULE_AUTHOR}" ] && \ |
|
|
97 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}" |
|
|
98 | [ -z "${HOMEPAGE}" ] && \ |
|
|
99 | HOMEPAGE="http://search.cpan.org/search?query=${MY_PN:-${PN}}&mode=dist" |
|
|
100 | |
| 20 | SRC_PREP="no" |
101 | SRC_PREP="no" |
| 21 | SRC_TEST="skip" |
102 | SRC_TEST="skip" |
|
|
103 | PREFER_BUILDPL="yes" |
| 22 | |
104 | |
| 23 | PERL_VERSION="" |
105 | PERL_VERSION="" |
| 24 | SITE_ARCH="" |
106 | SITE_ARCH="" |
| 25 | SITE_LIB="" |
107 | SITE_LIB="" |
|
|
108 | VENDOR_LIB="" |
|
|
109 | VENDOR_ARCH="" |
| 26 | ARCH_LIB="" |
110 | ARCH_LIB="" |
| 27 | POD_DIR="" |
111 | POD_DIR="" |
|
|
112 | BUILDER_VER="" |
|
|
113 | pm_echovar="" |
|
|
114 | |
|
|
115 | perl-module_src_unpack() { |
|
|
116 | if [[ -n ${PATCHES} ]]; then |
|
|
117 | base_src_unpack unpack |
|
|
118 | base_src_unpack autopatch |
|
|
119 | else |
|
|
120 | base_src_unpack unpack |
|
|
121 | fi |
|
|
122 | } |
| 28 | |
123 | |
| 29 | perl-module_src_prep() { |
124 | perl-module_src_prep() { |
| 30 | |
125 | |
| 31 | perlinfo |
126 | perlinfo |
| 32 | |
127 | |
|
|
128 | export PERL_MM_USE_DEFAULT=1 |
|
|
129 | # Disable ExtUtils::AutoInstall from prompting |
|
|
130 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
|
|
131 | |
|
|
132 | |
| 33 | SRC_PREP="yes" |
133 | SRC_PREP="yes" |
| 34 | if [ "${style}" == "builder" ]; then |
134 | find ${S} -type d -name "\.svn" -exec /bin/rm -rf {} \; 2>/dev/null |
| 35 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
135 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
| 36 | else |
136 | einfo "Using Module::Build" |
| 37 | perl Makefile.PL ${myconf} \ |
137 | echo "$pm_echovar" | perl Build.PL ${myconf} --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 38 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
138 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
|
|
139 | einfo "Using ExtUtils::MakeMaker" |
|
|
140 | echo "$pm_echovar" | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
|
|
141 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
142 | fi |
|
|
143 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
|
|
144 | einfo "No Make or Build file detected..." |
|
|
145 | return |
| 39 | fi |
146 | fi |
| 40 | } |
147 | } |
| 41 | |
148 | |
| 42 | perl-module_src_compile() { |
149 | perl-module_src_compile() { |
| 43 | |
150 | |
|
|
151 | perlinfo |
| 44 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
152 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 45 | if [ "${style}" != "builder" ]; then |
153 | if [ -f Makefile ]; then |
| 46 | make ${mymake} || die "compilation failed" |
154 | make ${mymake} || die "compilation failed" |
|
|
155 | elif [ -f Build ]; then |
|
|
156 | perl Build build || die "compilation failed" |
| 47 | fi |
157 | fi |
|
|
158 | fixlocalpod |
| 48 | |
159 | |
|
|
160 | } |
|
|
161 | |
|
|
162 | perl-module_src_test() { |
| 49 | if [ "${SRC_TEST}" == "do" ]; then |
163 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
164 | perlinfo |
|
|
165 | if [ -f Makefile ]; then |
|
|
166 | make test || die "test failed" |
|
|
167 | elif [ -f Build ]; then |
| 50 | perl-module_src_test || die "test failed" |
168 | perl Build test || die "test failed" |
| 51 | SRC_TEST="done" |
|
|
| 52 | fi |
169 | fi |
| 53 | } |
|
|
| 54 | |
|
|
| 55 | perl-module_src_test() { |
|
|
| 56 | if [ "${style}" == "builder" ]; then |
|
|
| 57 | perl ${S}/Build test |
|
|
| 58 | else |
|
|
| 59 | make test |
|
|
| 60 | fi |
170 | fi |
| 61 | } |
171 | } |
| 62 | |
172 | |
| 63 | perl-module_src_install() { |
173 | perl-module_src_install() { |
| 64 | |
174 | |
| 65 | perlinfo |
175 | perlinfo |
| 66 | dodir ${POD_DIR} |
176 | |
| 67 | |
|
|
| 68 | test -z ${mytargets} && mytargets="install" |
177 | test -z ${mytargets} && mytargets="install" |
| 69 | |
178 | |
| 70 | if [ "${style}" == "builder" ]; then |
179 | if [ -f Makefile ]; then |
|
|
180 | make ${myinst} ${mytargets} || die |
|
|
181 | elif [ -f Build ]; then |
| 71 | perl ${S}/Build install |
182 | perl ${S}/Build install |
| 72 | else |
|
|
| 73 | make ${myinst} ${mytargets} || die |
|
|
| 74 | fi |
183 | fi |
| 75 | |
184 | |
| 76 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
| 77 | then |
|
|
| 78 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 79 | sed -e "s:${D}::g" \ |
|
|
| 80 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 81 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 82 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 83 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 84 | fi |
|
|
| 85 | |
|
|
| 86 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 87 | then |
|
|
| 88 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 89 | sed -e "s:${D}::g" \ |
|
|
| 90 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 91 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 92 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 93 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 94 | fi |
|
|
| 95 | |
185 | |
|
|
186 | einfo "Cleaning out stray man files" |
| 96 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
187 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
| 97 | sed -i -e "s:${D}:/:g" ${FILE} |
188 | rm -rf ${FILE} |
| 98 | done |
189 | done |
|
|
190 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
| 99 | |
191 | |
|
|
192 | fixlocalpod |
|
|
193 | |
|
|
194 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
195 | STAT=`file $FILE| grep -i " text"` |
|
|
196 | if [ "${STAT}x" != "x" ]; then |
|
|
197 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
198 | fi |
|
|
199 | done |
|
|
200 | |
| 100 | for doc in Change* MANIFEST* README*; do |
201 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 101 | [ -s "$doc" ] && dodoc $doc |
202 | [ -s "$doc" ] && dodoc $doc |
| 102 | done |
203 | done |
| 103 | dodoc ${mydoc} |
|
|
| 104 | } |
204 | } |
| 105 | |
205 | |
| 106 | |
206 | |
| 107 | perl-module_pkg_setup() { |
207 | perl-module_pkg_setup() { |
| 108 | |
208 | |
| 109 | perlinfo |
209 | perlinfo |
| 110 | } |
210 | } |
| 111 | |
211 | |
| 112 | |
212 | |
| 113 | perl-module_pkg_preinst() { |
213 | perl-module_pkg_preinst() { |
| 114 | |
214 | |
| 115 | perlinfo |
215 | perlinfo |
| 116 | } |
216 | } |
| 117 | |
217 | |
| 118 | perl-module_pkg_postinst() { |
218 | perl-module_pkg_postinst() { |
| 119 | |
219 | |
|
|
220 | einfo "Man pages are not installed for most modules now." |
|
|
221 | einfo "Please use perldoc instead." |
| 120 | updatepod |
222 | updatepod |
| 121 | } |
223 | } |
| 122 | |
224 | |
| 123 | perl-module_pkg_prerm() { |
225 | perl-module_pkg_prerm() { |
| 124 | |
226 | |
| 125 | updatepod |
227 | updatepod |
| 126 | } |
228 | } |
| 127 | |
229 | |
| 128 | perl-module_pkg_postrm() { |
230 | perl-module_pkg_postrm() { |
| 129 | |
231 | |
| 130 | updatepod |
232 | updatepod |
| 131 | } |
233 | } |
| 132 | |
234 | |
| 133 | perlinfo() { |
235 | perlinfo() { |
| 134 | |
236 | |
| 135 | if [ -f /usr/bin/perl ] |
237 | local version |
| 136 | then |
|
|
| 137 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 138 | fi |
|
|
| 139 | eval `perl '-V:version'` |
238 | eval `perl '-V:version'` |
| 140 | PERL_VERSION=${version} |
239 | PERL_VERSION=${version} |
|
|
240 | |
|
|
241 | local installsitearch |
| 141 | eval `perl '-V:installsitearch'` |
242 | eval `perl '-V:installsitearch'` |
| 142 | SITE_ARCH=${installsitearch} |
243 | SITE_ARCH=${installsitearch} |
|
|
244 | |
|
|
245 | local installsitelib |
|
|
246 | eval `perl '-V:installsitelib'` |
|
|
247 | SITE_LIB=${installsitelib} |
|
|
248 | |
|
|
249 | local installarchlib |
| 143 | eval `perl '-V:installarchlib'` |
250 | eval `perl '-V:installarchlib'` |
| 144 | ARCH_LIB=${installarchlib} |
251 | ARCH_LIB=${installarchlib} |
|
|
252 | |
|
|
253 | local installvendorlib |
| 145 | eval `perl '-V:installarchlib'` |
254 | eval `perl '-V:installvendorlib'` |
| 146 | ARCH_LIB=${installarchlib} |
255 | VENDOR_LIB=${installvendorlib} |
|
|
256 | |
|
|
257 | local installvendorarch |
| 147 | eval `perl '-V:installsitearch'` |
258 | eval `perl '-V:installvendorarch'` |
| 148 | SITE_LIB=${installsitearch} |
259 | VENDOR_ARCH=${installvendorarch} |
|
|
260 | |
|
|
261 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
|
|
262 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
|
|
263 | if [ -f ${S}/Build.PL ]; then |
|
|
264 | if [ ${PN} == "module-build" ]; then |
|
|
265 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
266 | else |
|
|
267 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
268 | fi |
|
|
269 | fi |
|
|
270 | fi |
|
|
271 | fi |
|
|
272 | |
|
|
273 | if [ -f /usr/bin/perl ] |
|
|
274 | then |
|
|
275 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
276 | fi |
|
|
277 | } |
|
|
278 | |
|
|
279 | fixlocalpod() { |
|
|
280 | perlinfo |
|
|
281 | |
|
|
282 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
283 | then |
|
|
284 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
285 | fi |
|
|
286 | |
|
|
287 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
288 | then |
|
|
289 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
290 | fi |
|
|
291 | |
|
|
292 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
293 | then |
|
|
294 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
295 | fi |
| 149 | } |
296 | } |
| 150 | |
297 | |
| 151 | updatepod() { |
298 | updatepod() { |
| 152 | perlinfo |
299 | perlinfo |
| 153 | |
300 | |
| 154 | if [ -d "${POD_DIR}" ] |
301 | if [ -d "${POD_DIR}" ] |
| 155 | then |
302 | then |
| 156 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
303 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
| 157 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
304 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
| 158 | rm -f ${FILE} |
305 | rm -f ${FILE} |
| 159 | done |
306 | done |
| 160 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
307 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 161 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
308 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 162 | rm -f ${FILE} |
309 | rm -f ${FILE} |
| 163 | done |
310 | done |
|
|
311 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
312 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
313 | rm -f ${FILE} |
|
|
314 | done |
| 164 | fi |
315 | fi |
| 165 | } |
316 | } |