1 | # Copyright 1999-2009 Gentoo Foundation |
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.119 2009/11/14 08:58:50 tove Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.135 2012/09/27 16:35:41 axs Exp $ |
4 | # |
|
|
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
|
|
6 | |
4 | |
7 | # @ECLASS: perl-module.eclass |
5 | # @ECLASS: perl-module.eclass |
8 | # @MAINTAINER: |
6 | # @MAINTAINER: |
9 | # perl@gentoo.org |
7 | # perl@gentoo.org |
|
|
8 | # @AUTHOR: |
|
|
9 | # Seemant Kulleen <seemant@gentoo.org> |
10 | # @BLURB: eclass for perl modules |
10 | # @BLURB: eclass for perl modules |
11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
12 | # 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 |
13 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
14 | |
14 | |
15 | inherit eutils base |
15 | inherit eutils base multiprocessing |
16 | [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives |
16 | [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives |
17 | |
17 | |
18 | PERL_EXPF="src_unpack src_compile src_test src_install" |
18 | PERL_EXPF="src_unpack src_compile src_test src_install" |
19 | |
19 | |
20 | case "${EAPI:-0}" in |
20 | case "${EAPI:-0}" in |
21 | 0|1) |
21 | 0|1) |
22 | PERL_EXPF="${PERL_EXPF} pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
22 | PERL_EXPF+=" pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
23 | ;; |
23 | ;; |
24 | 2) |
24 | 2|3|4|5) |
25 | PERL_EXPF="${PERL_EXPF} src_prepare src_configure" |
25 | PERL_EXPF+=" src_prepare src_configure" |
26 | [[ ${CATEGORY} == "perl-core" ]] && \ |
26 | [[ ${CATEGORY} == "perl-core" ]] && \ |
27 | PERL_EXPF="${PERL_EXPF} pkg_postinst pkg_postrm" |
27 | PERL_EXPF+=" pkg_postinst pkg_postrm" |
28 | |
28 | |
29 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
29 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
30 | yes) |
30 | yes) |
31 | DEPEND="dev-lang/perl[-build]" |
31 | DEPEND="dev-lang/perl[-build]" |
32 | RDEPEND="${DEPEND}" |
32 | RDEPEND="${DEPEND}" |
33 | ;; |
33 | ;; |
34 | esac |
34 | esac |
35 | ;; |
35 | ;; |
|
|
36 | *) |
|
|
37 | die "EAPI=${EAPI} is not supported by perl-module.eclass" |
|
|
38 | ;; |
36 | esac |
39 | esac |
37 | |
40 | |
|
|
41 | case "${PERL_EXPORT_PHASE_FUNCTIONS:-yes}" in |
|
|
42 | yes) |
38 | EXPORT_FUNCTIONS ${PERL_EXPF} |
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 |
39 | |
52 | |
40 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
41 | |
|
|
42 | LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}" |
53 | LICENSE="${LICENSE:-|| ( Artistic GPL-1 GPL-2 GPL-3 )}" |
43 | |
54 | |
44 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz" |
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}" |
45 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
62 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
46 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}" |
63 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION:+${MODULE_SECTION}/}${MODULE_A}" |
47 | [[ -z "${HOMEPAGE}" ]] && \ |
64 | [[ -z "${HOMEPAGE}" ]] && \ |
48 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" |
65 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" |
49 | |
66 | |
50 | SRC_PREP="no" |
67 | SRC_PREP="no" |
51 | SRC_TEST="skip" |
68 | SRC_TEST="skip" |
52 | PREFER_BUILDPL="yes" |
69 | PREFER_BUILDPL="yes" |
53 | |
70 | |
54 | PERL_VERSION="" |
|
|
55 | SITE_ARCH="" |
|
|
56 | SITE_LIB="" |
|
|
57 | ARCH_LIB="" |
|
|
58 | VENDOR_ARCH="" |
|
|
59 | VENDOR_LIB="" |
|
|
60 | |
|
|
61 | pm_echovar="" |
71 | pm_echovar="" |
62 | perlinfo_done=false |
72 | perlinfo_done=false |
63 | |
73 | |
64 | perl-module_src_unpack() { |
74 | perl-module_src_unpack() { |
|
|
75 | debug-print-function $FUNCNAME "$@" |
65 | base_src_unpack unpack |
76 | base_src_unpack |
66 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
77 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
67 | } |
78 | } |
68 | |
79 | |
69 | perl-module_src_prepare() { |
80 | perl-module_src_prepare() { |
70 | if [[ -n ${PATCHES} ]] ; then |
81 | debug-print-function $FUNCNAME "$@" |
71 | base_src_unpack autopatch |
82 | has src_prepare ${PERL_EXPF} && base_src_prepare |
72 | fi |
83 | perl_fix_osx_extra |
73 | esvn_clean |
84 | esvn_clean |
74 | } |
85 | } |
75 | |
86 | |
76 | perl-module_src_configure() { |
87 | perl-module_src_configure() { |
|
|
88 | debug-print-function $FUNCNAME "$@" |
77 | perl-module_src_prep |
89 | perl-module_src_prep |
78 | } |
90 | } |
79 | |
91 | |
80 | perl-module_src_prep() { |
92 | perl-module_src_prep() { |
|
|
93 | debug-print-function $FUNCNAME "$@" |
81 | [[ ${SRC_PREP} = yes ]] && return 0 |
94 | [[ ${SRC_PREP} = yes ]] && return 0 |
82 | SRC_PREP="yes" |
95 | SRC_PREP="yes" |
83 | |
96 | |
84 | ${perlinfo_done} || perlinfo |
97 | perl_set_version |
|
|
98 | perl_set_eprefix |
85 | |
99 | |
86 | export PERL_MM_USE_DEFAULT=1 |
100 | [[ -z ${pm_echovar} ]] && export PERL_MM_USE_DEFAULT=1 |
87 | # Disable ExtUtils::AutoInstall from prompting |
101 | # Disable ExtUtils::AutoInstall from prompting |
88 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
102 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
89 | |
103 | |
|
|
104 | if [[ $(declare -p myconf 2>&-) != "declare -a myconf="* ]]; then |
|
|
105 | local myconf_local=(${myconf}) |
|
|
106 | else |
|
|
107 | local myconf_local=("${myconf[@]}") |
|
|
108 | fi |
|
|
109 | |
90 | if [[ ${PREFER_BUILDPL} == yes && -f Build.PL ]] ; then |
110 | if [[ ( ${PREFER_BUILDPL} == yes || ! -f Makefile.PL ) && -f Build.PL ]] ; then |
91 | einfo "Using Module::Build" |
111 | einfo "Using Module::Build" |
92 | perl Build.PL \ |
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 -- \ |
93 | --installdirs=vendor \ |
121 | --installdirs=vendor \ |
94 | --libdoc= \ |
122 | --libdoc= \ |
95 | --destdir="${D}" \ |
123 | --destdir="${D}" \ |
96 | --create_packlist=0 \ |
124 | --create_packlist=0 \ |
97 | ${myconf} \ |
125 | "${myconf_local[@]}" |
98 | <<< "${pm_echovar}" \ |
126 | einfo "perl Build.PL" "$@" |
99 | || die "Unable to build! (are you using USE=\"build\"?)" |
127 | perl Build.PL "$@" <<< "${pm_echovar}" \ |
|
|
128 | || die "Unable to build!" |
100 | elif [[ -f Makefile.PL ]] ; then |
129 | elif [[ -f Makefile.PL ]] ; then |
101 | einfo "Using ExtUtils::MakeMaker" |
130 | einfo "Using ExtUtils::MakeMaker" |
102 | perl Makefile.PL \ |
131 | set -- \ |
103 | PREFIX=/usr \ |
132 | PREFIX=${EPREFIX}/usr \ |
104 | INSTALLDIRS=vendor \ |
133 | INSTALLDIRS=vendor \ |
105 | INSTALLMAN3DIR='none' \ |
134 | INSTALLMAN3DIR='none' \ |
106 | DESTDIR="${D}" \ |
135 | DESTDIR="${D}" \ |
107 | ${myconf} \ |
136 | "${myconf_local[@]}" |
108 | <<< "${pm_echovar}" \ |
137 | einfo "perl Makefile.PL" "$@" |
109 | || die "Unable to build! (are you using USE=\"build\"?)" |
138 | perl Makefile.PL "$@" <<< "${pm_echovar}" \ |
|
|
139 | || die "Unable to build!" |
110 | fi |
140 | fi |
111 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
141 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
112 | einfo "No Make or Build file detected..." |
142 | einfo "No Make or Build file detected..." |
113 | return |
143 | return |
114 | fi |
144 | fi |
115 | } |
145 | } |
116 | |
146 | |
117 | perl-module_src_compile() { |
147 | perl-module_src_compile() { |
118 | ${perlinfo_done} || perlinfo |
148 | debug-print-function $FUNCNAME "$@" |
|
|
149 | perl_set_version |
119 | |
150 | |
120 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
151 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
|
|
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 |
121 | |
158 | |
122 | if [[ -f Build ]] ; then |
159 | if [[ -f Build ]] ; then |
123 | ./Build build \ |
160 | ./Build build \ |
124 | || die "compilation failed" |
161 | || die "Compilation failed" |
125 | elif [[ -f Makefile ]] ; then |
162 | elif [[ -f Makefile ]] ; then |
126 | emake \ |
163 | set -- \ |
127 | OTHERLDFLAGS="${LDFLAGS}" \ |
164 | OTHERLDFLAGS="${LDFLAGS}" \ |
128 | ${mymake} \ |
165 | "${mymake_local[@]}" |
|
|
166 | einfo "emake" "$@" |
|
|
167 | emake "$@" \ |
129 | || die "compilation failed" |
168 | || die "Compilation failed" |
130 | # OPTIMIZE="${CFLAGS}" \ |
169 | # OPTIMIZE="${CFLAGS}" \ |
131 | fi |
170 | fi |
132 | } |
171 | } |
133 | |
172 | |
134 | # For testers: |
173 | # For testers: |
… | |
… | |
151 | # SRC_TEST="parallel do" |
190 | # SRC_TEST="parallel do" |
152 | # SRC_TEST=parallel |
191 | # SRC_TEST=parallel |
153 | # |
192 | # |
154 | |
193 | |
155 | perl-module_src_test() { |
194 | perl-module_src_test() { |
|
|
195 | debug-print-function $FUNCNAME "$@" |
156 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
196 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
157 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
197 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
158 | export HARNESS_OPTIONS=j$(echo -j1 ${MAKEOPTS} | sed -r "s/.*(-j\s*|--jobs=)([0-9]+).*/\2/" ) |
198 | export HARNESS_OPTIONS=j$(makeopts_jobs) |
159 | einfo "Test::Harness Jobs=${HARNESS_OPTIONS}" |
199 | einfo "Test::Harness Jobs=$(makeopts_jobs)" |
160 | fi |
200 | fi |
161 | ${perlinfo_done} || perlinfo |
201 | ${perlinfo_done} || perl_set_version |
162 | if [[ -f Build ]] ; then |
202 | if [[ -f Build ]] ; then |
163 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
203 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
164 | elif [[ -f Makefile ]] ; then |
204 | elif [[ -f Makefile ]] ; then |
165 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
205 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
166 | fi |
206 | fi |
167 | fi |
207 | fi |
168 | } |
208 | } |
169 | |
209 | |
170 | perl-module_src_install() { |
210 | perl-module_src_install() { |
|
|
211 | debug-print-function $FUNCNAME "$@" |
|
|
212 | |
|
|
213 | perl_set_version |
|
|
214 | perl_set_eprefix |
|
|
215 | |
171 | local f |
216 | local f |
172 | ${perlinfo_done} || perlinfo |
|
|
173 | |
217 | |
174 | if [[ -z ${mytargets} ]] ; then |
218 | if [[ -z ${mytargets} ]] ; then |
175 | case "${CATEGORY}" in |
219 | case "${CATEGORY}" in |
176 | dev-perl|perl-core) mytargets="pure_install" ;; |
220 | dev-perl|perl-core) mytargets="pure_install" ;; |
177 | *) mytargets="install" ;; |
221 | *) mytargets="install" ;; |
178 | esac |
222 | esac |
179 | fi |
223 | fi |
180 | |
224 | |
|
|
225 | if [[ $(declare -p myinst 2>&-) != "declare -a myinst="* ]]; then |
|
|
226 | local myinst_local=(${myinst}) |
|
|
227 | else |
|
|
228 | local myinst_local=("${myinst[@]}") |
|
|
229 | fi |
|
|
230 | |
181 | if [[ -f Build ]] ; then |
231 | if [[ -f Build ]] ; then |
182 | ./Build ${mytargets} \ |
232 | ./Build ${mytargets} \ |
183 | || die "./Build ${mytargets} failed" |
233 | || die "./Build ${mytargets} failed" |
184 | elif [[ -f Makefile ]] ; then |
234 | elif [[ -f Makefile ]] ; then |
185 | emake ${myinst} ${mytargets} \ |
235 | emake "${myinst_local[@]}" ${mytargets} \ |
186 | || die "emake ${myinst} ${mytargets} failed" |
236 | || die "emake ${myinst_local[@]} ${mytargets} failed" |
187 | fi |
237 | fi |
188 | |
238 | |
189 | if [[ -d "${D}"/usr/share/man ]] ; then |
239 | perl_delete_module_manpages |
190 | # einfo "Cleaning out stray man files" |
240 | perl_delete_localpod |
191 | find "${D}"/usr/share/man -type f -name "*.3pm" -delete |
241 | perl_delete_packlist |
192 | find "${D}"/usr/share/man -depth -type d -empty -delete |
242 | perl_remove_temppath |
193 | fi |
|
|
194 | |
243 | |
195 | fixlocalpod |
|
|
196 | |
|
|
197 | for f in Change* CHANGES README* TODO ${mydoc}; do |
244 | for f in Change* CHANGES README* TODO FAQ ${mydoc}; do |
198 | [[ -s ${f} ]] && dodoc ${f} |
245 | [[ -s ${f} ]] && dodoc ${f} |
199 | done |
246 | done |
200 | |
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 |
201 | if [[ -d ${D}/${VENDOR_LIB} ]] ; then |
341 | if [[ -d ${D}/${VENDOR_ARCH} ]] ; then |
202 | find "${D}/${VENDOR_LIB}" -type f -a \( -name .packlist \ |
342 | find "${D}/${VENDOR_ARCH}" -type f -a \( -name .packlist \ |
203 | -o \( -name '*.bs' -a -empty \) \) -delete |
343 | -o \( -name '*.bs' -a -empty \) \) -delete |
204 | find "${D}/${VENDOR_LIB}" -depth -mindepth 1 -type d -empty -delete |
344 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
205 | fi |
345 | fi |
|
|
346 | } |
|
|
347 | |
|
|
348 | perl_remove_temppath() { |
|
|
349 | debug-print-function $FUNCNAME "$@" |
206 | |
350 | |
207 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
351 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
208 | if file "${f}" | grep -q -i " text" ; then |
352 | if file "${f}" | grep -q -i " text" ; then |
209 | grep -q "${D}" "${f}" && ewarn "QA: File contains a temporary path ${f}" |
353 | grep -q "${D}" "${f}" && ewarn "QA: File contains a temporary path ${f}" |
210 | sed -i -e "s:${D}:/:g" "${f}" |
354 | sed -i -e "s:${D}:/:g" "${f}" |
211 | fi |
355 | fi |
212 | done |
356 | done |
213 | |
|
|
214 | linkduallifescripts |
|
|
215 | } |
357 | } |
216 | |
358 | |
217 | perl-module_pkg_setup() { |
|
|
218 | ${perlinfo_done} || perlinfo |
|
|
219 | } |
|
|
220 | |
|
|
221 | perl-module_pkg_preinst() { |
|
|
222 | ${perlinfo_done} || perlinfo |
|
|
223 | } |
|
|
224 | |
|
|
225 | perl-module_pkg_postinst() { |
|
|
226 | linkduallifescripts |
|
|
227 | } |
|
|
228 | |
|
|
229 | perl-module_pkg_prerm() { : ; } |
|
|
230 | |
|
|
231 | perl-module_pkg_postrm() { |
|
|
232 | linkduallifescripts |
|
|
233 | } |
|
|
234 | |
|
|
235 | perlinfo() { |
|
|
236 | perlinfo_done=true |
|
|
237 | |
|
|
238 | local f version install{{site,vendor}{arch,lib},archlib} |
|
|
239 | for f in version install{{site,vendor}{arch,lib},archlib} ; do |
|
|
240 | eval "$(perl -V:${f} )" |
|
|
241 | done |
|
|
242 | PERL_VERSION=${version} |
|
|
243 | SITE_ARCH=${installsitearch} |
|
|
244 | SITE_LIB=${installsitelib} |
|
|
245 | ARCH_LIB=${installarchlib} |
|
|
246 | VENDOR_LIB=${installvendorlib} |
|
|
247 | VENDOR_ARCH=${installvendorarch} |
|
|
248 | } |
|
|
249 | |
|
|
250 | fixlocalpod() { |
|
|
251 | find "${D}" -type f -name perllocal.pod -delete |
|
|
252 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
253 | } |
|
|
254 | |
|
|
255 | linkduallifescripts() { |
359 | perl_link_duallife_scripts() { |
|
|
360 | debug-print-function $FUNCNAME "$@" |
256 | if [[ ${CATEGORY} != perl-core ]] || ! has_version ">=dev-lang/perl-5.8.8-r8" ; then |
361 | if [[ ${CATEGORY} != perl-core ]] || ! has_version ">=dev-lang/perl-5.8.8-r8" ; then |
257 | return 0 |
362 | return 0 |
258 | fi |
363 | fi |
|
|
364 | |
|
|
365 | perl_set_eprefix |
259 | |
366 | |
260 | local i ff |
367 | local i ff |
261 | if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then |
368 | if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then |
262 | for i in "${DUALLIFESCRIPTS[@]}" ; do |
369 | for i in "${DUALLIFESCRIPTS[@]}" ; do |
263 | alternatives_auto_makesym "/usr/bin/${i}" "/usr/bin/${i}-[0-9]*" |
370 | alternatives_auto_makesym "/${i}" "/${i}-[0-9]*" |
|
|
371 | done |
|
|
372 | for i in "${DUALLIFEMAN[@]}" ; do |
264 | ff=`echo "${ROOT}"/usr/share/man/man1/${i}-${PV}-${P}.1*` |
373 | ff=`echo "${EROOT}"/${i%.1}-${PV}-${P}.1*` |
265 | ff=${ff##*.1} |
374 | ff=${ff##*.1} |
266 | alternatives_auto_makesym "/usr/share/man/man1/${i}.1${ff}" "/usr/share/man/man1/${i}-[0-9]*" |
375 | alternatives_auto_makesym "/${i}${ff}" "/${i%.1}-[0-9]*" |
267 | done |
376 | done |
268 | else |
377 | else |
269 | pushd "${D}" > /dev/null |
378 | pushd "${ED}" > /dev/null |
270 | for i in $(find usr/bin -maxdepth 1 -type f 2>/dev/null) ; do |
379 | for i in $(find usr/bin -maxdepth 1 -type f 2>/dev/null) ; do |
271 | mv ${i}{,-${PV}-${P}} || die |
380 | mv ${i}{,-${PV}-${P}} || die |
272 | DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i##*/} |
381 | #DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i##*/} |
273 | if [[ -f usr/share/man/man1/${i##*/}.1 ]] ; then |
382 | DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i} |
274 | mv usr/share/man/man1/${i##*/}{.1,-${PV}-${P}.1} || die |
383 | done |
275 | fi |
384 | for i in $(find usr/share/man/man1 -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
385 | mv ${i} ${i%.1}-${PV}-${P}.1 || die |
|
|
386 | DUALLIFEMAN[${#DUALLIFEMAN[*]}]=${i} |
276 | done |
387 | done |
277 | popd > /dev/null |
388 | popd > /dev/null |
278 | fi |
389 | fi |
279 | } |
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} |
|
|
400 | fi |
|
|
401 | ;; |
|
|
402 | esac |
|
|
403 | } |