| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 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.95 2006/06/07 21:15:08 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.132 2012/04/15 20:15:39 vapier Exp $ |
| 4 | # |
4 | |
|
|
5 | # @ECLASS: perl-module.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # perl@gentoo.org |
|
|
8 | # @AUTHOR: |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
9 | # Seemant Kulleen <seemant@gentoo.org> |
| 6 | # Maintained by the Perl herd <perl@gentoo.org> |
10 | # @BLURB: eclass for perl modules |
| 7 | # |
11 | # @DESCRIPTION: |
| 8 | # The perl-module eclass is designed to allow easier installation of perl |
12 | # The perl-module eclass is designed to allow easier installation of perl |
| 9 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
| 10 | |
14 | |
|
|
15 | inherit eutils base |
|
|
16 | [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives |
| 11 | |
17 | |
| 12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test |
18 | PERL_EXPF="src_unpack src_compile src_test src_install" |
| 13 | |
19 | |
| 14 | # 2005.04.28 mcummings |
20 | case "${EAPI:-0}" in |
| 15 | # Mounting problems with src_test functions has forced me to make the |
21 | 0|1) |
| 16 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
22 | PERL_EXPF+=" pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
| 17 | # is generally necessary. I've left a block to make sure we still need to set |
23 | ;; |
| 18 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
24 | 2|3|4) |
| 19 | # as many bug reports as we have lately. |
25 | PERL_EXPF+=" src_prepare src_configure" |
|
|
26 | [[ ${CATEGORY} == "perl-core" ]] && \ |
|
|
27 | PERL_EXPF+=" pkg_postinst pkg_postrm" |
| 20 | |
28 | |
| 21 | # 2004.05.10 rac |
29 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
| 22 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
30 | yes) |
| 23 | # actuality, this should be handled in the perl ebuild, so every perl |
31 | DEPEND="dev-lang/perl[-build]" |
| 24 | # ebuild should block versions of MakeMaker older than the one it |
32 | RDEPEND="${DEPEND}" |
| 25 | # carries. in the meantime, since we have dumped support for MakeMaker |
33 | ;; |
| 26 | # <6.11 and the associated broken DESTDIR handling, block here to save |
34 | esac |
| 27 | # people from sandbox trouble. |
35 | ;; |
| 28 | # |
36 | *) |
| 29 | # 2004.05.25 rac |
37 | die "EAPI=${EAPI} is not supported by perl-module.eclass" |
| 30 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
38 | ;; |
| 31 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
39 | esac |
| 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 | |
40 | |
|
|
41 | case "${PERL_EXPORT_PHASE_FUNCTIONS:-yes}" in |
|
|
42 | yes) |
|
|
43 | EXPORT_FUNCTIONS ${PERL_EXPF} |
|
|
44 | ;; |
|
|
45 | no) |
|
|
46 | debug-print "PERL_EXPORT_PHASE_FUNCTIONS=no" |
|
|
47 | ;; |
|
|
48 | *) |
|
|
49 | die "PERL_EXPORT_PHASE_FUNCTIONS=${PERL_EXPORT_PHASE_FUNCTIONS} is not supported by perl-module.eclass" |
|
|
50 | ;; |
|
|
51 | esac |
| 73 | |
52 | |
| 74 | IUSE="minimal" |
53 | DESCRIPTION="Based on the $ECLASS eclass" |
| 75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
54 | |
| 76 | RDEPEND="!minimal? ( ${DEPEND} )" |
55 | LICENSE="${LICENSE:-|| ( Artistic GPL-1 GPL-2 GPL-3 )}" |
|
|
56 | |
|
|
57 | if [[ -n ${MY_PN} || -n ${MY_PV} || -n ${MODULE_VERSION} ]] ; then |
|
|
58 | : ${MY_P:=${MY_PN:-${PN}}-${MY_PV:-${MODULE_VERSION:-${PV}}}} |
|
|
59 | S=${MY_S:-${WORKDIR}/${MY_P}} |
|
|
60 | fi |
|
|
61 | |
|
|
62 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && \ |
|
|
63 | MODULE_A="${MY_P:-${P}}.${MODULE_A_EXT:-tar.gz}" |
|
|
64 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
|
|
65 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION:+${MODULE_SECTION}/}${MODULE_A}" |
|
|
66 | [[ -z "${HOMEPAGE}" ]] && \ |
|
|
67 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" |
|
|
68 | |
| 77 | SRC_PREP="no" |
69 | SRC_PREP="no" |
| 78 | SRC_TEST="skip" |
70 | SRC_TEST="skip" |
| 79 | USE_BUILDER="yes" |
71 | PREFER_BUILDPL="yes" |
| 80 | |
72 | |
| 81 | PERL_VERSION="" |
73 | pm_echovar="" |
| 82 | SITE_ARCH="" |
74 | perlinfo_done=false |
| 83 | SITE_LIB="" |
75 | |
| 84 | VENDOR_LIB="" |
76 | perl-module_src_unpack() { |
| 85 | VENDOR_ARCH="" |
77 | debug-print-function $FUNCNAME "$@" |
| 86 | ARCH_LIB="" |
78 | base_src_unpack |
| 87 | POD_DIR="" |
79 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
| 88 | BUILDER_VER="" |
80 | } |
|
|
81 | |
|
|
82 | perl-module_src_prepare() { |
|
|
83 | debug-print-function $FUNCNAME "$@" |
|
|
84 | has src_prepare ${PERL_EXPF} && base_src_prepare |
|
|
85 | perl_fix_osx_extra |
|
|
86 | esvn_clean |
|
|
87 | } |
|
|
88 | |
|
|
89 | perl-module_src_configure() { |
|
|
90 | debug-print-function $FUNCNAME "$@" |
|
|
91 | perl-module_src_prep |
|
|
92 | } |
| 89 | |
93 | |
| 90 | perl-module_src_prep() { |
94 | perl-module_src_prep() { |
|
|
95 | debug-print-function $FUNCNAME "$@" |
|
|
96 | [[ ${SRC_PREP} = yes ]] && return 0 |
|
|
97 | SRC_PREP="yes" |
| 91 | |
98 | |
| 92 | perlinfo |
99 | perl_set_version |
|
|
100 | perl_set_eprefix |
| 93 | |
101 | |
| 94 | export PERL_MM_USE_DEFAULT=1 |
102 | [[ -z ${pm_echovar} ]] && export PERL_MM_USE_DEFAULT=1 |
| 95 | # Disable ExtUtils::AutoInstall from prompting |
103 | # Disable ExtUtils::AutoInstall from prompting |
| 96 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
104 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 97 | |
105 | |
|
|
106 | if [[ $(declare -p myconf 2>&-) != "declare -a myconf="* ]]; then |
|
|
107 | local myconf_local=(${myconf}) |
|
|
108 | else |
|
|
109 | local myconf_local=("${myconf[@]}") |
|
|
110 | fi |
| 98 | |
111 | |
| 99 | SRC_PREP="yes" |
112 | if [[ ( ${PREFER_BUILDPL} == yes || ! -f Makefile.PL ) && -f Build.PL ]] ; then |
| 100 | if [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
113 | einfo "Using Module::Build" |
|
|
114 | if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${PN} != Module-Build ]] ; then |
|
|
115 | eqawarn "QA Notice: The ebuild uses Module::Build but doesn't depend on it." |
|
|
116 | eqawarn " Add virtual/perl-Module-Build to DEPEND!" |
|
|
117 | if [[ -n ${PERLQAFATAL} ]]; then |
|
|
118 | eerror "Bailing out due to PERLQAFATAL=1"; |
|
|
119 | die; |
|
|
120 | fi |
|
|
121 | fi |
|
|
122 | set -- \ |
|
|
123 | --installdirs=vendor \ |
|
|
124 | --libdoc= \ |
|
|
125 | --destdir="${D}" \ |
|
|
126 | --create_packlist=0 \ |
|
|
127 | "${myconf_local[@]}" |
|
|
128 | einfo "perl Build.PL" "$@" |
|
|
129 | perl Build.PL "$@" <<< "${pm_echovar}" \ |
|
|
130 | || die "Unable to build!" |
|
|
131 | elif [[ -f Makefile.PL ]] ; then |
| 101 | einfo "Using ExtUtils::MakeMaker" |
132 | einfo "Using ExtUtils::MakeMaker" |
| 102 | #perl Makefile.PL ${myconf} \ |
133 | set -- \ |
| 103 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
134 | PREFIX=${EPREFIX}/usr \ |
| 104 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
135 | INSTALLDIRS=vendor \ |
|
|
136 | INSTALLMAN3DIR='none' \ |
|
|
137 | DESTDIR="${D}" \ |
|
|
138 | "${myconf_local[@]}" |
|
|
139 | einfo "perl Makefile.PL" "$@" |
|
|
140 | perl Makefile.PL "$@" <<< "${pm_echovar}" \ |
|
|
141 | || die "Unable to build!" |
| 105 | fi |
142 | fi |
| 106 | if [ -f Build.PL ] && [ ! -f Makefile.PL ] ; then |
|
|
| 107 | einfo "Using Module::Build" |
|
|
| 108 | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
| 109 | fi |
|
|
| 110 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
143 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
| 111 | einfo "No Make or Build file detected..." |
144 | einfo "No Make or Build file detected..." |
| 112 | return |
145 | return |
| 113 | fi |
146 | fi |
| 114 | } |
147 | } |
| 115 | |
148 | |
| 116 | perl-module_src_compile() { |
149 | perl-module_src_compile() { |
|
|
150 | debug-print-function $FUNCNAME "$@" |
|
|
151 | perl_set_version |
| 117 | |
152 | |
| 118 | perlinfo |
153 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
| 119 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
154 | |
|
|
155 | if [[ $(declare -p mymake 2>&-) != "declare -a mymake="* ]]; then |
|
|
156 | local mymake_local=(${mymake}) |
|
|
157 | else |
|
|
158 | local mymake_local=("${mymake[@]}") |
|
|
159 | fi |
|
|
160 | |
|
|
161 | if [[ -f Build ]] ; then |
|
|
162 | ./Build build \ |
|
|
163 | || die "Compilation failed" |
| 120 | if [ -f Makefile ]; then |
164 | elif [[ -f Makefile ]] ; then |
|
|
165 | set -- \ |
|
|
166 | OTHERLDFLAGS="${LDFLAGS}" \ |
|
|
167 | "${mymake_local[@]}" |
|
|
168 | einfo "emake" "$@" |
|
|
169 | emake "$@" \ |
| 121 | make ${mymake} || die "compilation failed" |
170 | || die "Compilation failed" |
| 122 | elif [ -f Build ]; then |
171 | # OPTIMIZE="${CFLAGS}" \ |
| 123 | perl Build build || die "compilation failed" |
|
|
| 124 | fi |
172 | fi |
| 125 | |
|
|
| 126 | } |
173 | } |
|
|
174 | |
|
|
175 | # For testers: |
|
|
176 | # This code attempts to work out your threadingness from MAKEOPTS |
|
|
177 | # and apply them to Test::Harness. |
|
|
178 | # |
|
|
179 | # If you want more verbose testing, set TEST_VERBOSE=1 |
|
|
180 | # in your bashrc | /etc/make.conf | ENV |
|
|
181 | # |
|
|
182 | # For ebuild writers: |
|
|
183 | # If you wish to enable default tests w/ 'make test' , |
|
|
184 | # |
|
|
185 | # SRC_TEST="do" |
|
|
186 | # |
|
|
187 | # If you wish to have threads run in parallel ( using the users makeopts ) |
|
|
188 | # all of the following have been tested to work. |
|
|
189 | # |
|
|
190 | # SRC_TEST="do parallel" |
|
|
191 | # SRC_TEST="parallel" |
|
|
192 | # SRC_TEST="parallel do" |
|
|
193 | # SRC_TEST=parallel |
|
|
194 | # |
| 127 | |
195 | |
| 128 | perl-module_src_test() { |
196 | perl-module_src_test() { |
| 129 | if [ "${SRC_TEST}" == "do" ]; then |
197 | debug-print-function $FUNCNAME "$@" |
| 130 | perlinfo |
198 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
| 131 | if [ -f Makefile ]; then |
199 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
| 132 | make test || die "test failed" |
200 | export HARNESS_OPTIONS=j$(makeopts_jobs) |
| 133 | elif [ -f Build ]; then |
201 | einfo "Test::Harness Jobs=$(makeopts_jobs)" |
| 134 | perl Build test || die "test failed" |
|
|
| 135 | fi |
202 | fi |
|
|
203 | ${perlinfo_done} || perl_set_version |
|
|
204 | if [[ -f Build ]] ; then |
|
|
205 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
|
|
206 | elif [[ -f Makefile ]] ; then |
|
|
207 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
|
|
208 | fi |
| 136 | fi |
209 | fi |
| 137 | } |
210 | } |
| 138 | |
211 | |
| 139 | perl-module_src_install() { |
212 | perl-module_src_install() { |
|
|
213 | debug-print-function $FUNCNAME "$@" |
| 140 | |
214 | |
| 141 | perlinfo |
215 | perl_set_version |
|
|
216 | perl_set_eprefix |
| 142 | |
217 | |
| 143 | test -z ${mytargets} && mytargets="install" |
218 | local f |
| 144 | |
219 | |
|
|
220 | if [[ -z ${mytargets} ]] ; then |
|
|
221 | case "${CATEGORY}" in |
|
|
222 | dev-perl|perl-core) mytargets="pure_install" ;; |
|
|
223 | *) mytargets="install" ;; |
|
|
224 | esac |
|
|
225 | fi |
|
|
226 | |
|
|
227 | if [[ $(declare -p myinst 2>&-) != "declare -a myinst="* ]]; then |
|
|
228 | local myinst_local=(${myinst}) |
|
|
229 | else |
|
|
230 | local myinst_local=("${myinst[@]}") |
|
|
231 | fi |
|
|
232 | |
|
|
233 | if [[ -f Build ]] ; then |
|
|
234 | ./Build ${mytargets} \ |
|
|
235 | || die "./Build ${mytargets} failed" |
| 145 | if [ -f Makefile ]; then |
236 | elif [[ -f Makefile ]] ; then |
| 146 | make ${myinst} ${mytargets} || die |
237 | emake "${myinst_local[@]}" ${mytargets} \ |
| 147 | elif [ -f Build ]; then |
238 | || die "emake ${myinst_local[@]} ${mytargets} failed" |
| 148 | perl ${S}/Build install |
|
|
| 149 | fi |
239 | fi |
| 150 | |
240 | |
|
|
241 | perl_delete_module_manpages |
|
|
242 | perl_delete_localpod |
|
|
243 | perl_delete_packlist |
|
|
244 | perl_remove_temppath |
|
|
245 | |
|
|
246 | for f in Change* CHANGES README* TODO FAQ ${mydoc}; do |
|
|
247 | [[ -s ${f} ]] && dodoc ${f} |
|
|
248 | done |
|
|
249 | |
|
|
250 | perl_link_duallife_scripts |
|
|
251 | } |
|
|
252 | |
|
|
253 | perl-module_pkg_setup() { |
|
|
254 | debug-print-function $FUNCNAME "$@" |
|
|
255 | perl_set_version |
|
|
256 | } |
|
|
257 | |
|
|
258 | perl-module_pkg_preinst() { |
|
|
259 | debug-print-function $FUNCNAME "$@" |
|
|
260 | perl_set_version |
|
|
261 | } |
|
|
262 | |
|
|
263 | perl-module_pkg_postinst() { |
|
|
264 | debug-print-function $FUNCNAME "$@" |
|
|
265 | perl_link_duallife_scripts |
|
|
266 | } |
|
|
267 | |
|
|
268 | perl-module_pkg_prerm() { |
|
|
269 | debug-print-function $FUNCNAME "$@" |
|
|
270 | } |
|
|
271 | |
|
|
272 | perl-module_pkg_postrm() { |
|
|
273 | debug-print-function $FUNCNAME "$@" |
|
|
274 | perl_link_duallife_scripts |
|
|
275 | } |
|
|
276 | |
|
|
277 | perlinfo() { |
|
|
278 | debug-print-function $FUNCNAME "$@" |
|
|
279 | perl_set_version |
|
|
280 | } |
|
|
281 | |
|
|
282 | perl_set_version() { |
|
|
283 | debug-print-function $FUNCNAME "$@" |
|
|
284 | debug-print "$FUNCNAME: perlinfo_done=${perlinfo_done}" |
|
|
285 | ${perlinfo_done} && return 0 |
|
|
286 | perlinfo_done=true |
|
|
287 | |
|
|
288 | local f version install{{site,vendor}{arch,lib},archlib} |
|
|
289 | eval "$(perl -V:{version,install{{site,vendor}{arch,lib},archlib}} )" |
|
|
290 | PERL_VERSION=${version} |
|
|
291 | SITE_ARCH=${installsitearch} |
|
|
292 | SITE_LIB=${installsitelib} |
|
|
293 | ARCH_LIB=${installarchlib} |
|
|
294 | VENDOR_LIB=${installvendorlib} |
|
|
295 | VENDOR_ARCH=${installvendorarch} |
|
|
296 | } |
|
|
297 | |
| 151 | fixlocalpod |
298 | fixlocalpod() { |
|
|
299 | debug-print-function $FUNCNAME "$@" |
|
|
300 | perl_delete_localpod |
|
|
301 | } |
| 152 | |
302 | |
| 153 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
303 | perl_delete_localpod() { |
| 154 | STAT=`file $FILE| grep -i " text"` |
304 | debug-print-function $FUNCNAME "$@" |
| 155 | if [ "${STAT}x" != "x" ]; then |
305 | |
|
|
306 | find "${D}" -type f -name perllocal.pod -delete |
|
|
307 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
308 | } |
|
|
309 | |
|
|
310 | perl_fix_osx_extra() { |
|
|
311 | debug-print-function $FUNCNAME "$@" |
|
|
312 | |
|
|
313 | # Remove "AppleDouble encoded Macintosh file" |
|
|
314 | local f |
|
|
315 | find "${S}" -type f -name "._*" -print0 | while read -rd '' f ; do |
|
|
316 | einfo "Removing AppleDouble encoded Macintosh file: ${f#${S}/}" |
|
|
317 | rm -f "${f}" |
|
|
318 | f=${f#${S}/} |
|
|
319 | # f=${f//\//\/} |
|
|
320 | # f=${f//\./\.} |
|
|
321 | # sed -i "/${f}/d" "${S}"/MANIFEST || die |
|
|
322 | grep -q "${f}" "${S}"/MANIFEST && \ |
|
|
323 | elog "AppleDouble encoded Macintosh file in MANIFEST: ${f#${S}/}" |
|
|
324 | done |
|
|
325 | } |
|
|
326 | |
|
|
327 | perl_delete_module_manpages() { |
|
|
328 | debug-print-function $FUNCNAME "$@" |
|
|
329 | |
|
|
330 | perl_set_eprefix |
|
|
331 | |
|
|
332 | if [[ -d "${ED}"/usr/share/man ]] ; then |
|
|
333 | # einfo "Cleaning out stray man files" |
|
|
334 | find "${ED}"/usr/share/man -type f -name "*.3pm" -delete |
|
|
335 | find "${ED}"/usr/share/man -depth -type d -empty -delete |
|
|
336 | fi |
|
|
337 | } |
|
|
338 | |
|
|
339 | |
|
|
340 | perl_delete_packlist() { |
|
|
341 | debug-print-function $FUNCNAME "$@" |
|
|
342 | perl_set_version |
|
|
343 | if [[ -d ${D}/${VENDOR_ARCH} ]] ; then |
|
|
344 | find "${D}/${VENDOR_ARCH}" -type f -a \( -name .packlist \ |
|
|
345 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
346 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
347 | fi |
|
|
348 | } |
|
|
349 | |
|
|
350 | perl_remove_temppath() { |
|
|
351 | debug-print-function $FUNCNAME "$@" |
|
|
352 | |
|
|
353 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
354 | if file "${f}" | grep -q -i " text" ; then |
|
|
355 | grep -q "${D}" "${f}" && ewarn "QA: File contains a temporary path ${f}" |
| 156 | sed -i -e "s:${D}:/:g" ${FILE} |
356 | sed -i -e "s:${D}:/:g" "${f}" |
| 157 | fi |
357 | fi |
| 158 | done |
358 | done |
|
|
359 | } |
| 159 | |
360 | |
| 160 | for doc in Change* MANIFEST* README* ${mydoc}; do |
361 | perl_link_duallife_scripts() { |
| 161 | [ -s "$doc" ] && dodoc $doc |
362 | debug-print-function $FUNCNAME "$@" |
|
|
363 | if [[ ${CATEGORY} != perl-core ]] || ! has_version ">=dev-lang/perl-5.8.8-r8" ; then |
|
|
364 | return 0 |
|
|
365 | fi |
|
|
366 | |
|
|
367 | perl_set_eprefix |
|
|
368 | |
|
|
369 | local i ff |
|
|
370 | if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then |
|
|
371 | for i in "${DUALLIFESCRIPTS[@]}" ; do |
|
|
372 | alternatives_auto_makesym "/${i}" "/${i}-[0-9]*" |
| 162 | done |
373 | done |
| 163 | } |
374 | for i in "${DUALLIFEMAN[@]}" ; do |
| 164 | |
375 | ff=`echo "${EROOT}"/${i%.1}-${PV}-${P}.1*` |
| 165 | |
376 | ff=${ff##*.1} |
| 166 | perl-module_pkg_setup() { |
377 | alternatives_auto_makesym "/${i}${ff}" "/${i%.1}-[0-9]*" |
| 167 | |
378 | done |
| 168 | perlinfo |
|
|
| 169 | } |
|
|
| 170 | |
|
|
| 171 | |
|
|
| 172 | perl-module_pkg_preinst() { |
|
|
| 173 | |
|
|
| 174 | perlinfo |
|
|
| 175 | } |
|
|
| 176 | |
|
|
| 177 | perl-module_pkg_postinst() { |
|
|
| 178 | |
|
|
| 179 | einfo "Man pages are not installed for most modules now." |
|
|
| 180 | einfo "Please use perldoc instead." |
|
|
| 181 | updatepod |
|
|
| 182 | } |
|
|
| 183 | |
|
|
| 184 | perl-module_pkg_prerm() { |
|
|
| 185 | |
|
|
| 186 | updatepod |
|
|
| 187 | } |
|
|
| 188 | |
|
|
| 189 | perl-module_pkg_postrm() { |
|
|
| 190 | |
|
|
| 191 | updatepod |
|
|
| 192 | } |
|
|
| 193 | |
|
|
| 194 | perlinfo() { |
|
|
| 195 | |
|
|
| 196 | local version |
|
|
| 197 | eval `perl '-V:version'` |
|
|
| 198 | PERL_VERSION=${version} |
|
|
| 199 | |
|
|
| 200 | local installsitearch |
|
|
| 201 | eval `perl '-V:installsitearch'` |
|
|
| 202 | SITE_ARCH=${installsitearch} |
|
|
| 203 | |
|
|
| 204 | local installsitelib |
|
|
| 205 | eval `perl '-V:installsitelib'` |
|
|
| 206 | SITE_LIB=${installsitelib} |
|
|
| 207 | |
|
|
| 208 | local installarchlib |
|
|
| 209 | eval `perl '-V:installarchlib'` |
|
|
| 210 | ARCH_LIB=${installarchlib} |
|
|
| 211 | |
|
|
| 212 | local installvendorlib |
|
|
| 213 | eval `perl '-V:installvendorlib'` |
|
|
| 214 | VENDOR_LIB=${installvendorlib} |
|
|
| 215 | |
|
|
| 216 | local installvendorarch |
|
|
| 217 | eval `perl '-V:installvendorarch'` |
|
|
| 218 | VENDOR_ARCH=${installvendorarch} |
|
|
| 219 | |
|
|
| 220 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
| 221 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; 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 |
379 | else |
| 226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
380 | pushd "${ED}" > /dev/null |
|
|
381 | for i in $(find usr/bin -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
382 | mv ${i}{,-${PV}-${P}} || die |
|
|
383 | #DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i##*/} |
|
|
384 | DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i} |
|
|
385 | done |
|
|
386 | for i in $(find usr/share/man/man1 -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
387 | mv ${i} ${i%.1}-${PV}-${P}.1 || die |
|
|
388 | DUALLIFEMAN[${#DUALLIFEMAN[*]}]=${i} |
|
|
389 | done |
|
|
390 | popd > /dev/null |
|
|
391 | fi |
|
|
392 | } |
|
|
393 | |
|
|
394 | perl_set_eprefix() { |
|
|
395 | debug-print-function $FUNCNAME "$@" |
|
|
396 | case ${EAPI:-0} in |
|
|
397 | 0|1|2) |
|
|
398 | if ! use prefix; then |
|
|
399 | EPREFIX= |
|
|
400 | ED=${D} |
|
|
401 | EROOT=${ROOT} |
| 227 | fi |
402 | fi |
| 228 | fi |
403 | ;; |
| 229 | fi |
404 | esac |
| 230 | fi |
|
|
| 231 | |
|
|
| 232 | if [ -f /usr/bin/perl ] |
|
|
| 233 | then |
|
|
| 234 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 235 | fi |
|
|
| 236 | } |
405 | } |
| 237 | |
|
|
| 238 | fixlocalpod() { |
|
|
| 239 | perlinfo |
|
|
| 240 | dodir ${POD_DIR} |
|
|
| 241 | |
|
|
| 242 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
| 243 | then |
|
|
| 244 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 245 | sed -e "s:${D}::g" \ |
|
|
| 246 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 247 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 248 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 249 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 250 | fi |
|
|
| 251 | |
|
|
| 252 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 253 | then |
|
|
| 254 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 255 | sed -e "s:${D}::g" \ |
|
|
| 256 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 257 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 258 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 259 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 260 | fi |
|
|
| 261 | |
|
|
| 262 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
| 263 | then |
|
|
| 264 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 265 | sed -e "s:${D}::g" \ |
|
|
| 266 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 267 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 268 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 269 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
| 270 | fi |
|
|
| 271 | } |
|
|
| 272 | |
|
|
| 273 | updatepod() { |
|
|
| 274 | perlinfo |
|
|
| 275 | |
|
|
| 276 | if [ -d "${POD_DIR}" ] |
|
|
| 277 | then |
|
|
| 278 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
| 279 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
| 280 | rm -f ${FILE} |
|
|
| 281 | done |
|
|
| 282 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
| 283 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
| 284 | rm -f ${FILE} |
|
|
| 285 | done |
|
|
| 286 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
| 287 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
| 288 | rm -f ${FILE} |
|
|
| 289 | done |
|
|
| 290 | fi |
|
|
| 291 | } |
|
|