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