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